#!/usr/bin/perl

BEGIN {
my %fatpacked;

$fatpacked{"Algorithm/Dependency.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ALGORITHM_DEPENDENCY';
  package Algorithm::Dependency;
  
  
  use 5.005;
  use strict;
  use Algorithm::Dependency::Item   ();
  use Algorithm::Dependency::Source ();
  use Params::Util qw{_INSTANCE _ARRAY};
  
  use vars qw{$VERSION};
  BEGIN {
  	$VERSION = '1.110';
  }
  
  
  
  
  
  
  
  sub new {
  	my $class  = shift;
  	my %args   = @_;
  	my $source = _INSTANCE($args{source}, 'Algorithm::Dependency::Source')
  		or return undef;
  
  	my $self = bless {
  		source   => $source, 
  		selected => {},
  		}, $class;
  
  	if ( $args{ignore_orphans} ) {
  		$self->{ignore_orphans} = 1;
  	}
  
  	_ARRAY($args{selected}) or return $self;
  
  	my %selected = ();
  	foreach my $id ( @{ $args{selected} } ) {
  		return undef unless $source->item($id);
  
  		return undef if $selected{$id};
  
  		$selected{$id} = 1;
  	}
  
  	$self->{selected} = \%selected;
  	$self;
  }
  
  
  
  
  
  
  
  sub source { $_[0]->{source} }
  
  
  sub selected_list { sort keys %{$_[0]->{selected}} }
  
  
  sub selected { $_[0]->{selected}->{$_[1]} }
  
  
  sub item { $_[0]->{source}->item($_[1]) }
  
  
  
  
  
  
  
  sub depends {
  	my $self    = shift;
  	my @stack   = @_ or return undef;
  	my @depends = ();
  	my %checked = ();
  
  	while ( my $id = shift @stack ) {
  		my $Item = $self->{source}->item($id)
  		or $self->{ignore_orphans} ? next : return undef;
  
  		next if $checked{$id};
  
  		push @stack, $Item->depends;
  		$checked{$id} = 1;
  
  		unless ( scalar grep { $id eq $_ } @_ ) {
  			push @depends, $id;
  		}
  	}
  
  	my $s = $self->{selected};
  	return [ sort grep { ! $s->{$_} } @depends ];
  }
  
  
  sub schedule {
  	my $self  = shift;
  	my @items = @_ or return undef;
  
  	my $depends = $self->depends( @items ) or return undef;
  
  	my $s = $self->{selected};
  	return [ sort grep { ! $s->{$_} } @items, @$depends ];
  }
  
  
  sub schedule_all {
  	my $self = shift;
  	$self->schedule( map { $_->id } $self->source->items );
  }
  
  1;
  
ALGORITHM_DEPENDENCY

$fatpacked{"Algorithm/Dependency/Item.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ALGORITHM_DEPENDENCY_ITEM';
  package Algorithm::Dependency::Item;
  
  
  use 5.005;
  use strict;
  use Algorithm::Dependency ();
  
  use vars qw{$VERSION};
  BEGIN {
  	$VERSION = '1.110';
  }
  
  
  
  
  
  
  
  sub new {
  	my $class = shift;
  	my $id    = (defined $_[0] and ! ref $_[0] and $_[0] ne '') ? shift : return undef;
  	bless { id => $id, depends => [ @_ ] }, $class;
  }
  
  
  sub id { $_[0]->{id} }
  
  
  sub depends { @{$_[0]->{depends}} }
  
  1;
  
ALGORITHM_DEPENDENCY_ITEM

$fatpacked{"Algorithm/Dependency/Ordered.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ALGORITHM_DEPENDENCY_ORDERED';
  package Algorithm::Dependency::Ordered;
  
  
  use 5.005;
  use strict;
  use Algorithm::Dependency ();
  
  use vars qw{$VERSION @ISA};
  BEGIN {
  	$VERSION = '1.110';
  	@ISA     = 'Algorithm::Dependency';
  }
  
  
  
  
  
  sub schedule {
  	my $self   = shift;
  	my $source = $self->{source};
  	my @items  = @_ or return undef;
  	return undef if grep { ! $source->item($_) } @items;
  
  	my $rv    = $self->SUPER::schedule( @items );
  	my @queue = $rv ? @$rv : return undef;
  
  	my %selected = %{ $self->{selected} };
  
  	my $error_marker = '';
  
  	my @schedule = ();
  	while ( my $id = shift @queue ) {
  		return undef if $id eq $error_marker;
  
  		my $Item    = $self->{source}->item($id) or return undef;
  		my @missing = grep { ! $selected{$_} } $Item->depends;
  
  		if ( $self->{ignore_orphans} ) {
  			@missing = grep { $self->{source}->item($_) } @missing;
  		}
  
  		if ( @missing ) {
  			$error_marker = $id unless $error_marker;
  
  			push @queue, $id;
  			next;
  		}
  
  		push @schedule, $id;
  		$selected{$id} = 1;
  		$error_marker  = '';
  	}
  
  	\@schedule;
  }
  
  1;
  
ALGORITHM_DEPENDENCY_ORDERED

$fatpacked{"Algorithm/Dependency/Source.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ALGORITHM_DEPENDENCY_SOURCE';
  package Algorithm::Dependency::Source;
  
  
  use 5.005;
  use strict;
  use Algorithm::Dependency ();
  use Params::Util qw{_SET};
  
  use vars qw{$VERSION};
  BEGIN {
  	$VERSION = '1.110';
  }
  
  
  
  
  
  
  
  sub new {
  	my $class = shift;
  
  	if ( $class eq __PACKAGE__ ) {
  		die "Cannot directly instantiate Algorithm::Dependency::Source."
  			. " You must use a subclass";
  	}
  
  	my $self = bless {
  		loaded      => 0,
  
  		items_hash  => undef,
  		items_array => undef,
  		}, $class;
  
  	$self;
  }
  
  
  sub load {
  	my $self = shift;
  
  	if ( $self->{loaded} ) {
  		$self->{loaded}      = 0;
  		$self->{items_hash}  = undef;
  		$self->{items_array} = undef;
  	}
  
  	my $items = $self->_load_item_list;
  	return $items unless $items;
  	unless ( _SET($items, 'Algorithm::Dependency::Item') ) {
  		die( ref($self) . "::_load_item_list did not return an Algorithm::Dependency::Item set" );
  	}
  
  	foreach my $item ( @$items ) {
  		my $id = $item->id;
  		if ( $self->{items_hash}->{ $id } ) {
  			return undef;
  		}
  
  		push @{ $self->{items_array} }, $item;
  		$self->{items_hash}->{$id} = $item;
  	}
  
  	$self->{loaded} = 1;
  }
  
  
  sub item {
  	my $self = shift;
  	my $id   = (defined $_[0] and ! ref $_[0] and $_[0] ne '') ? shift : return undef;
  	$self->{loaded} or $self->load or return undef;
  
  	$self->{items_hash}->{$id};
  }
  
  
  sub items {
  	my $self = shift;
  	$self->{loaded} or $self->load or return undef;
  	@{ $self->{items_array} };
  }
  
  
  sub missing_dependencies {
  	my $self = shift;
  	$self->{loaded} or $self->load or return undef;
  	
  	my %missing = map  { $_ => 1           }
  	              grep { ! $self->item($_) }
  	              map  { $_->depends       }
  	              $self->items;
  	%missing ? [ sort keys %missing ] : 0;
  }
  
  
  
  
  
  
  sub _load_item_list {
  	die "Class $_[0] failed to define the method _load_item_list";
  }
  
  1;
  
ALGORITHM_DEPENDENCY_SOURCE

$fatpacked{"Algorithm/Dependency/Source/File.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ALGORITHM_DEPENDENCY_SOURCE_FILE';
  package Algorithm::Dependency::Source::File;
  
  
  use 5.005;
  use strict;
  use Algorithm::Dependency::Source ();
  
  use vars qw{$VERSION @ISA};
  BEGIN {
  	$VERSION = '1.110';
  	@ISA     = 'Algorithm::Dependency::Source';
  }
  
  
  
  
  
  
  
  sub new {
  	my $class    = shift;
  	my $filename = shift or return undef;
  	return undef unless -r $filename;
  
  	my $self = $class->SUPER::new() or return undef;
  
  	$self->{filename} = $filename;
  
  	$self;
  }
  
  
  
  
  
  
  sub _load_item_list {
  	my $self = shift;
  
  	local $/ = undef;
  	open( FILE, $self->{filename} ) or return undef;
  	defined(my $source = <FILE>)    or return undef;
  	close( FILE )                   or return undef;
  
  	my @content = grep { ! /^\s*(?:\#|$)/ } 
  		split /\s*[\015\012][\s\015\012]*/, $source;
  
  	my @Items = ();
  	foreach my $line ( @content ) {
  		my @sections = grep { length $_ } split /\W+/, $line;
  		return undef unless scalar @sections;
  
  		my $Item = Algorithm::Dependency::Item->new( @sections ) or return undef;
  		push @Items, $Item;
  	}
  
  	\@Items;
  }
  
  1;
  
ALGORITHM_DEPENDENCY_SOURCE_FILE

$fatpacked{"Algorithm/Dependency/Source/HoA.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ALGORITHM_DEPENDENCY_SOURCE_HOA';
  package Algorithm::Dependency::Source::HoA;
  
  
  use 5.005;
  use strict;
  use Algorithm::Dependency::Source ();
  use Params::Util qw{_HASH _ARRAY0};
  
  use vars qw{$VERSION @ISA};
  BEGIN {
  	$VERSION = '1.110';
  	@ISA     = 'Algorithm::Dependency::Source';
  }
  
  
  
  
  
  
  
  sub new {
  	my $class = shift;
  	my $hash  = _HASH(shift) or return undef;
  	foreach my $deps ( values %$hash ) {
  		_ARRAY0($deps) or return undef;
  	}
  
  	my $self = $class->SUPER::new() or return undef;
  
  	$self->{hash} = $hash;
  
  	$self;
  }
  
  
  
  
  
  
  sub _load_item_list {
  	my $self = shift;
  
  	my $hash  = $self->{hash};
  	my @items = map {
  		Algorithm::Dependency::Item->new( $_, @{$hash->{$_}} )
  		or return undef;
  		} keys %$hash;
  
  	\@items;
  }
  
  1;
  
ALGORITHM_DEPENDENCY_SOURCE_HOA

$fatpacked{"Algorithm/Dependency/Source/Invert.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ALGORITHM_DEPENDENCY_SOURCE_INVERT';
  package Algorithm::Dependency::Source::Invert;
  
  
  use 5.005;
  use strict;
  use Params::Util '_INSTANCE';
  use Algorithm::Dependency::Source::HoA ();
  
  use vars qw{$VERSION @ISA};
  BEGIN {
  	$VERSION = '1.110';
  	@ISA     = 'Algorithm::Dependency::Source::HoA';
  }
  
  
  
  
  
  
  sub new {
  	my $class  = shift;
  	my $source = _INSTANCE(shift, 'Algorithm::Dependency::Source') or return undef;
  
  	my @items = $source->items;
  	my %hoa   = map { $_->id => [ ] } @items;
  	foreach my $item ( @items ) {
  		my $id   = $item->id;
  		my @deps = $item->depends;
  		foreach my $dep ( @deps ) {
  			push @{ $hoa{$dep} }, $id;
  		}
  	}
  
  	$class->SUPER::new( \%hoa );
  }
  
  1;
  
ALGORITHM_DEPENDENCY_SOURCE_INVERT

$fatpacked{"Algorithm/Dependency/Weight.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ALGORITHM_DEPENDENCY_WEIGHT';
  package Algorithm::Dependency::Weight;
  
  
  use 5.005;
  use strict;
  use List::Util            ();
  use Algorithm::Dependency ();
  use Params::Util qw{_INSTANCE _STRING};
  
  use vars qw{$VERSION};
  BEGIN {
  	$VERSION = '1.110';
  }
  
  
  
  
  
  
  
  sub new {
  	my $class = shift;
  	my %args  = @_;
  
  	my $source = _INSTANCE($args{source}, 'Algorithm::Dependency')
  		? $args{source}->source
  		: _INSTANCE($args{source}, 'Algorithm::Dependency::Source')
  		or return undef;
  
  	my $algdep = Algorithm::Dependency->new(
  		source         => $source,
  		ignore_orphans => 1,
  		) or return undef;
  
  	my $self = bless {
  		source => $source,
  		algdep => $algdep,
  		weight => {},
  		}, $class;
  
  	$self;
  }
  
  
  sub source {
  	$_[0]->{source}
  }
  
  
  
  
  
  
  
  sub weight {
  	my $self = shift;
  	my $id   = defined(_STRING($_[0])) ? shift : return undef;
  	$self->{weight}->{$id} or
  	$self->{weight}->{$id} = $self->_weight($id);
  }
  
  sub _weight {
  	my $self  = shift;
  	my $items = $self->{algdep}->schedule($_[0]) or return undef;
  	scalar(@$items);
  }
  
  
  sub weight_merged {
  	my $self  = shift;
  	my $items = $self->{algdep}->schedule(@_) or return undef;
  	scalar(@$items);
  }
  
  
  sub weight_hash {
  	my $self  = shift;
  	my @names = @_;
  
  	my %hash = ();
  	foreach my $name ( @names ) {
  		if ( $self->{weight}->{$name} ) {
  			$hash{$name} = $self->{weight}->{$name};
  			next;
  		}
  		$hash{$name} = $self->weight($name) or return undef;
  	}
  
  	\%hash;
  }
  
  
  sub weight_all {
  	my $self  = shift;
  	my @items = $self->source->items;
  	defined $items[0] or return undef;
  	$self->weight_hash( map { $_->id } @items );
  }
  
  1;
  
ALGORITHM_DEPENDENCY_WEIGHT

$fatpacked{"App/pause/FatPacked.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_PAUSE_FATPACKED';
  package App::pause::FatPacked;
  
  our $DATE = '2016-01-17'; 
  our $VERSION = '0.52'; 
  
  
  1;
  
  __END__
  
APP_PAUSE_FATPACKED

$fatpacked{"Clone/PP.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'CLONE_PP';
  package Clone::PP;
  
  use 5.006;
  use strict;
  use warnings;
  use vars qw($VERSION @EXPORT_OK);
  use Exporter;
  
  $VERSION = 1.06;
  
  @EXPORT_OK = qw( clone );
  sub import { goto &Exporter::import } 
  
  use vars qw( $CloneSelfMethod $CloneInitMethod );
  $CloneSelfMethod ||= 'clone_self';
  $CloneInitMethod ||= 'clone_init';
  
  use vars qw( %CloneCache );
  
  sub clone {
    my $source = shift;
  
    return undef if not defined($source);
    
    my $depth = shift;
    return $source if ( defined $depth and $depth -- < 1 );
    
    local %CloneCache = ( undef => undef ) unless ( exists $CloneCache{undef} );
    
    return $CloneCache{ $source } if ( defined $CloneCache{ $source } );
    
    my $ref_type = ref $source or return $source;
    
    my $class_name;
    if ( "$source" =~ /^\Q$ref_type\E\=([A-Z]+)\(0x[0-9a-f]+\)$/ ) {
      $class_name = $ref_type;
      $ref_type = $1;
      return $CloneCache{ $source } = $source->$CloneSelfMethod() 
  				  if $source->can($CloneSelfMethod);
    }
    
    
    my $copy;
    if ($ref_type eq 'HASH') {
      $CloneCache{ $source } = $copy = {};
      if ( my $tied = tied( %$source ) ) { tie %$copy, ref $tied }
      %$copy = map { ! ref($_) ? $_ : clone($_, $depth) } %$source;
    } elsif ($ref_type eq 'ARRAY') {
      $CloneCache{ $source } = $copy = [];
      if ( my $tied = tied( @$source ) ) { tie @$copy, ref $tied }
      @$copy = map { ! ref($_) ? $_ : clone($_, $depth) } @$source;
    } elsif ($ref_type eq 'REF' or $ref_type eq 'SCALAR') {
      $CloneCache{ $source } = $copy = \( my $var = "" );
      if ( my $tied = tied( $$source ) ) { tie $$copy, ref $tied }
      $$copy = clone($$source, $depth);
    } else {
      $CloneCache{ $source } = $copy = $source;
    }
    
    if ( $class_name ) {
      bless $copy, $class_name;
      $copy->$CloneInitMethod() if $copy->can($CloneInitMethod);
    }
    
    return $copy;
  }
  
  1;
  
  __END__
  
CLONE_PP

$fatpacked{"Color/ANSI/Util.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COLOR_ANSI_UTIL';
  package Color::ANSI::Util;
  
  our $DATE = '2015-01-03'; 
  our $VERSION = '0.14'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(
                         ansi16_to_rgb
                         rgb_to_ansi16
                         rgb_to_ansi16_fg_code
                         ansi16fg
                         rgb_to_ansi16_bg_code
                         ansi16bg
  
                         ansi256_to_rgb
                         rgb_to_ansi256
                         rgb_to_ansi256_fg_code
                         ansi256fg
                         rgb_to_ansi256_bg_code
                         ansi256bg
  
                         rgb_to_ansi24b_fg_code
                         ansi24bfg
                         rgb_to_ansi24b_bg_code
                         ansi24bbg
  
                         rgb_to_ansi_fg_code
                         ansifg
                         rgb_to_ansi_bg_code
                         ansibg
                 );
  
  my %ansi16 = (
      0  => '000000',
      1  => '800000',
      2  => '008000',
      3  => '808000',
      4  => '000080',
      5  => '800080',
      6  => '008080',
      7  => 'c0c0c0',
      8  => '808080',
      9  => 'ff0000',
      10 => '00ff00',
      11 => 'ffff00',
      12 => '0000ff',
      13 => 'ff00ff',
      14 => '00ffff',
      15 => 'ffffff',
  );
  my @revansi16;
  for (sort {$a<=>$b} keys %ansi16) {
      $ansi16{$_} =~ /(..)(..)(..)/;
      push @revansi16, [hex($1), hex($2), hex($3), $_];
  }
  
  my %ansi256 = (
      %ansi16,
  
      16 => '000000',  17 => '00005f',  18 => '000087',  19 => '0000af',  20 => '0000d7',  21 => '0000ff',
      22 => '005f00',  23 => '005f5f',  24 => '005f87',  25 => '005faf',  26 => '005fd7',  27 => '005fff',
      28 => '008700',  29 => '00875f',  30 => '008787',  31 => '0087af',  32 => '0087d7',  33 => '0087ff',
      34 => '00af00',  35 => '00af5f',  36 => '00af87',  37 => '00afaf',  38 => '00afd7',  39 => '00afff',
      40 => '00d700',  41 => '00d75f',  42 => '00d787',  43 => '00d7af',  44 => '00d7d7',  45 => '00d7ff',
      46 => '00ff00',  47 => '00ff5f',  48 => '00ff87',  49 => '00ffaf',  50 => '00ffd7',  51 => '00ffff',
      52 => '5f0000',  53 => '5f005f',  54 => '5f0087',  55 => '5f00af',  56 => '5f00d7',  57 => '5f00ff',
      58 => '5f5f00',  59 => '5f5f5f',  60 => '5f5f87',  61 => '5f5faf',  62 => '5f5fd7',  63 => '5f5fff',
      64 => '5f8700',  65 => '5f875f',  66 => '5f8787',  67 => '5f87af',  68 => '5f87d7',  69 => '5f87ff',
      70 => '5faf00',  71 => '5faf5f',  72 => '5faf87',  73 => '5fafaf',  74 => '5fafd7',  75 => '5fafff',
      76 => '5fd700',  77 => '5fd75f',  78 => '5fd787',  79 => '5fd7af',  80 => '5fd7d7',  81 => '5fd7ff',
      82 => '5fff00',  83 => '5fff5f',  84 => '5fff87',  85 => '5fffaf',  86 => '5fffd7',  87 => '5fffff',
      88 => '870000',  89 => '87005f',  90 => '870087',  91 => '8700af',  92 => '8700d7',  93 => '8700ff',
      94 => '875f00',  95 => '875f5f',  96 => '875f87',  97 => '875faf',  98 => '875fd7',  99 => '875fff',
      100 => '878700', 101 => '87875f', 102 => '878787', 103 => '8787af', 104 => '8787d7', 105 => '8787ff',
      106 => '87af00', 107 => '87af5f', 108 => '87af87', 109 => '87afaf', 110 => '87afd7', 111 => '87afff',
      112 => '87d700', 113 => '87d75f', 114 => '87d787', 115 => '87d7af', 116 => '87d7d7', 117 => '87d7ff',
      118 => '87ff00', 119 => '87ff5f', 120 => '87ff87', 121 => '87ffaf', 122 => '87ffd7', 123 => '87ffff',
      124 => 'af0000', 125 => 'af005f', 126 => 'af0087', 127 => 'af00af', 128 => 'af00d7', 129 => 'af00ff',
      130 => 'af5f00', 131 => 'af5f5f', 132 => 'af5f87', 133 => 'af5faf', 134 => 'af5fd7', 135 => 'af5fff',
      136 => 'af8700', 137 => 'af875f', 138 => 'af8787', 139 => 'af87af', 140 => 'af87d7', 141 => 'af87ff',
      142 => 'afaf00', 143 => 'afaf5f', 144 => 'afaf87', 145 => 'afafaf', 146 => 'afafd7', 147 => 'afafff',
      148 => 'afd700', 149 => 'afd75f', 150 => 'afd787', 151 => 'afd7af', 152 => 'afd7d7', 153 => 'afd7ff',
      154 => 'afff00', 155 => 'afff5f', 156 => 'afff87', 157 => 'afffaf', 158 => 'afffd7', 159 => 'afffff',
      160 => 'd70000', 161 => 'd7005f', 162 => 'd70087', 163 => 'd700af', 164 => 'd700d7', 165 => 'd700ff',
      166 => 'd75f00', 167 => 'd75f5f', 168 => 'd75f87', 169 => 'd75faf', 170 => 'd75fd7', 171 => 'd75fff',
      172 => 'd78700', 173 => 'd7875f', 174 => 'd78787', 175 => 'd787af', 176 => 'd787d7', 177 => 'd787ff',
      178 => 'd7af00', 179 => 'd7af5f', 180 => 'd7af87', 181 => 'd7afaf', 182 => 'd7afd7', 183 => 'd7afff',
      184 => 'd7d700', 185 => 'd7d75f', 186 => 'd7d787', 187 => 'd7d7af', 188 => 'd7d7d7', 189 => 'd7d7ff',
      190 => 'd7ff00', 191 => 'd7ff5f', 192 => 'd7ff87', 193 => 'd7ffaf', 194 => 'd7ffd7', 195 => 'd7ffff',
      196 => 'ff0000', 197 => 'ff005f', 198 => 'ff0087', 199 => 'ff00af', 200 => 'ff00d7', 201 => 'ff00ff',
      202 => 'ff5f00', 203 => 'ff5f5f', 204 => 'ff5f87', 205 => 'ff5faf', 206 => 'ff5fd7', 207 => 'ff5fff',
      208 => 'ff8700', 209 => 'ff875f', 210 => 'ff8787', 211 => 'ff87af', 212 => 'ff87d7', 213 => 'ff87ff',
      214 => 'ffaf00', 215 => 'ffaf5f', 216 => 'ffaf87', 217 => 'ffafaf', 218 => 'ffafd7', 219 => 'ffafff',
      220 => 'ffd700', 221 => 'ffd75f', 222 => 'ffd787', 223 => 'ffd7af', 224 => 'ffd7d7', 225 => 'ffd7ff',
      226 => 'ffff00', 227 => 'ffff5f', 228 => 'ffff87', 229 => 'ffffaf', 230 => 'ffffd7', 231 => 'ffffff',
  
      232 => '080808', 233 => '121212', 234 => '1c1c1c', 235 => '262626', 236 => '303030', 237 => '3a3a3a',
      238 => '444444', 239 => '4e4e4e', 240 => '585858', 241 => '606060', 242 => '666666', 243 => '767676',
      244 => '808080', 245 => '8a8a8a', 246 => '949494', 247 => '9e9e9e', 248 => 'a8a8a8', 249 => 'b2b2b2',
      250 => 'bcbcbc', 251 => 'c6c6c6', 252 => 'd0d0d0', 253 => 'dadada', 254 => 'e4e4e4', 255 => 'eeeeee',
  );
  my @revansi256;
  for (sort {$a<=>$b} keys %ansi256) {
      $ansi256{$_} =~ /(..)(..)(..)/;
      push @revansi256, [hex($1), hex($2), hex($3), $_];
  }
  
  sub ansi16_to_rgb {
      my ($input) = @_;
  
      if ($input =~ /^\d+$/) {
          if ($input >= 0 && $input <= 15) {
              return $ansi16{$input + 0}; 
          } else {
              die "Invalid ANSI 16-color number '$input'";
          }
      } elsif ($input =~ /^(?:(bold|bright) \s )?
                          (black|red|green|yellow|blue|magenta|cyan|white)$/ix) {
          my ($bold, $col) = (lc($1 // ""), lc($2));
          my $i;
          if ($col eq 'black') {
              $i = 0;
          } elsif ($col eq 'red') {
              $i = 1;
          } elsif ($col eq 'green') {
              $i = 2;
          } elsif ($col eq 'yellow') {
              $i = 3;
          } elsif ($col eq 'blue') {
              $i = 4;
          } elsif ($col eq 'magenta') {
              $i = 5;
          } elsif ($col eq 'cyan') {
              $i = 6;
          } elsif ($col eq 'white') {
              $i = 7;
          }
          $i += 8 if $bold;
          return $ansi16{$i};
      } else {
          die "Invalid ANSI 16-color name '$input'";
      }
  }
  
  sub _rgb_to_indexed {
      my ($rgb, $table) = @_;
  
      $rgb =~ /^#?([0-9A-Fa-f]{2})([0-9A-Fa-f]{2})([0-9A-Fa-f]{2})$/
          or die "Invalid RGB input '$rgb'";
      my $r = hex($1);
      my $g = hex($2);
      my $b = hex($3);
  
      my ($minsqdist, $res);
      for my $e (@$table) {
          my $sqdist =
              abs($e->[0]-$r)**2 + abs($e->[1]-$g)**2 + abs($e->[2]-$b)**2;
          return $e->[3] if $sqdist == 0;
          if (!defined($minsqdist) || $minsqdist > $sqdist) {
              $minsqdist = $sqdist;
              $res = $e->[3];
          }
      }
      return $res;
  }
  
  sub ansi256_to_rgb {
      my ($input) = @_;
  
      $input += 0;
      exists($ansi256{$input}) or die "Invalid ANSI 256-color index '$input'";
      $ansi256{$input};
  }
  
  sub rgb_to_ansi16 {
      my ($input) = @_;
      _rgb_to_indexed($input, \@revansi16);
  }
  
  sub rgb_to_ansi256 {
      my ($input) = @_;
      _rgb_to_indexed($input, \@revansi256);
  }
  
  sub rgb_to_ansi16_fg_code {
      my ($input) = @_;
  
      my $res = _rgb_to_indexed($input, \@revansi16);
      return "\e[" . ($res >= 8 ? ($res+30-8) . ";1" : ($res+30)) . "m";
  }
  
  sub ansi16fg  { goto &rgb_to_ansi16_fg_code  }
  
  sub rgb_to_ansi16_bg_code {
      my ($input) = @_;
  
      my $res = _rgb_to_indexed($input, \@revansi16);
      return "\e[" . ($res >= 8 ? ($res+40-8) : ($res+40)) . "m";
  }
  
  sub ansi16bg  { goto &rgb_to_ansi16_bg_code  }
  
  sub rgb_to_ansi256_fg_code {
      my ($input) = @_;
  
      my $res = _rgb_to_indexed($input, \@revansi16);
      return "\e[38;5;${res}m";
  }
  
  sub ansi256fg { goto &rgb_to_ansi256_fg_code }
  
  sub rgb_to_ansi256_bg_code {
      my ($input) = @_;
  
      my $res = _rgb_to_indexed($input, \@revansi16);
      return "\e[48;5;${res}m";
  }
  
  sub ansi256bg { goto &rgb_to_ansi256_bg_code }
  
  sub rgb_to_ansi24b_fg_code {
      my ($rgb) = @_;
  
      return sprintf("\e[38;2;%d;%d;%dm",
                     hex(substr($rgb, 0, 2)),
                     hex(substr($rgb, 2, 2)),
                     hex(substr($rgb, 4, 2)));
  }
  
  sub ansi24bfg { goto &rgb_to_ansi24b_fg_code }
  
  sub rgb_to_ansi24b_bg_code {
      my ($rgb) = @_;
  
      return sprintf("\e[48;2;%d;%d;%dm",
                     hex(substr($rgb, 0, 2)),
                     hex(substr($rgb, 2, 2)),
                     hex(substr($rgb, 4, 2)));
  }
  
  sub ansi24bbg { goto &rgb_to_ansi24b_bg_code }
  
  our $_use_termdetsw = 1;
  our $_color_depth; 
  sub _color_depth {
      unless (defined $_color_depth) {
          {
              if (defined $ENV{COLOR_DEPTH}) {
                  $_color_depth = $ENV{COLOR_DEPTH};
                  last;
              }
              if ($_use_termdetsw) {
                  eval { require Term::Detect::Software };
                  if (!$@) {
                      $_color_depth = Term::Detect::Software::detect_terminal_cached()->{color_depth};
                      last;
                  }
              }
              if ($ENV{KONSOLE_DBUS_SERVICE}) {
                  $_color_depth = 2**24;
                  last;
              }
              $_color_depth = 16;
          }
      };
      $_color_depth;
  }
  
  sub rgb_to_ansi_fg_code {
      my ($rgb) = @_;
      my $cd = _color_depth();
      if ($cd >= 2**24) {
          rgb_to_ansi24b_fg_code($rgb);
      } elsif ($cd >= 256) {
          rgb_to_ansi256_fg_code($rgb);
      } else {
          rgb_to_ansi16_fg_code($rgb);
      }
  }
  
  sub ansifg { goto &rgb_to_ansi_fg_code }
  
  sub rgb_to_ansi_bg_code {
      my ($rgb) = @_;
      my $cd = _color_depth();
      if ($cd >= 2**24) {
          rgb_to_ansi24b_bg_code($rgb);
      } elsif ($cd >= 256) {
          rgb_to_ansi256_bg_code($rgb);
      } else {
          rgb_to_ansi16_bg_code($rgb);
      }
  }
  
  sub ansibg { goto &rgb_to_ansi_bg_code }
  
  1;
  
  __END__
  
COLOR_ANSI_UTIL

$fatpacked{"Complete/Bash.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_BASH';
  package Complete::Bash;
  
  our $DATE = '2015-12-30'; 
  our $VERSION = '0.24'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         parse_cmdline
                         parse_options
                         format_completion
                 );
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Completion module for bash shell',
      links => [
          {url => 'pm:Complete'},
      ],
  };
  
  sub _expand_tilde {
      my ($user, $slash) = @_;
      my @ent;
      if (length $user) {
          @ent = getpwnam($user);
      } else {
          @ent = getpwuid($>);
          $user = $ent[0];
      }
      return $ent[7] . $slash if @ent;
      "~$user$slash"; 
  }
  
  sub _add_unquoted {
      no warnings 'uninitialized';
  
      my ($word, $is_cur_word, $after_ws) = @_;
  
  
      $word =~ s!^(~)(\w*)(/|\z) |  # 1) tilde  2) username  3) optional slash
                 \\(.)           |  # 4) escaped char
                 \$(\w+)            # 5) variable name
                !
                    $1 ? (not($after_ws) || $is_cur_word ? "$1$2$3" : _expand_tilde($2, $3)) :
                        $4 ? $4 :
                            ($is_cur_word ? "\$$5" : $ENV{$5})
                                !egx;
      $word;
  }
  
  sub _add_double_quoted {
      no warnings 'uninitialized';
  
      my ($word, $is_cur_word) = @_;
  
      $word =~ s!\\(.)           |  # 1) escaped char
                 \$(\w+)            # 2) variable name
                !
                    $1 ? $1 :
                        ($is_cur_word ? "\$$2" : $ENV{$2})
                            !egx;
      $word;
  }
  
  sub _add_single_quoted {
      my $word = shift;
      $word =~ s/\\(.)/$1/g;
      $word;
  }
  
  $SPEC{parse_cmdline} = {
      v => 1.1,
      summary => 'Parse shell command-line for processing by completion routines',
      description => <<'_',
  
  This function basically converts COMP_LINE (str) and COMP_POINT (int) into
  something like (but not exactly the same as) COMP_WORDS (array) and COMP_CWORD
  (int) that bash supplies to shell functions.
  
  The differences with bash are (these differences are mostly for parsing
  convenience for programs that use this routine):
  
  1) quotes and backslashes are stripped (bash's COMP_WORDS contains all the
  quotes and backslashes);
  
  2) variables are substituted with their values from environment variables except
  for the current word (COMP_WORDS[COMP_CWORD]) (bash does not perform variable
  substitution for COMP_WORDS). However, note that special shell variables that
  are not environment variables like `$0`, `$_`, `$IFS` will not be replaced
  correctly because bash does not export those variables for us.
  
  3) tildes (~) are expanded with user's home directory except for the current
  word (bash does not perform tilde expansion for COMP_WORDS);
  
  4) no word-breaking characters aside from whitespaces and `=` are currently used
  (bash uses COMP_WORDBREAKS which by default also include `:`, `;`, and so on).
  This is done for convenience of parsing of Getopt::Long-based applications. More
  word-breaking characters might be used in the future, e.g. when we want to
  handle complex bash statements like pipes, redirection, etc.
  
  Caveats:
  
  * Due to the way bash parses the command line, the two below are equivalent:
  
      % cmd --foo=bar
      % cmd --foo = bar
  
  Because they both expand to `['--foo', '=', 'bar']`. But obviously
  `Getopt::Long` does not regard the two as equivalent.
  
  _
      args_as => 'array',
      args => {
          cmdline => {
              summary => 'Command-line, defaults to COMP_LINE environment',
              schema => 'str*',
              pos => 0,
          },
          point => {
              summary => 'Point/position to complete in command-line, '.
                  'defaults to COMP_POINT',
              schema => 'int*',
              pos => 1,
          },
          opts => {
              summary => 'Options',
              description => <<'_',
  
  Optional. Known options:
  
  * `truncate_current_word` (bool). If set to 1, will truncate current word to the
    position of cursor, for example (`^` marks the position of cursor):
    `--vers^oo` to `--vers` instead of `--versoo`. This is more convenient when
    doing tab completion.
  
  _
              schema => 'hash*',
              pos => 2,
          },
      },
      result => {
          schema => ['array*', len=>2],
          description => <<'_',
  
  Return a 2-element array: `[$words, $cword]`. `$words` is array of str,
  equivalent to `COMP_WORDS` provided by bash to shell functions. `$cword` is an
  integer, equivalent to `COMP_CWORD` provided by bash to shell functions. The
  word to be completed is at `$words->[$cword]`.
  
  Note that COMP_LINE includes the command name. If you want the command-line
  arguments only (like in `@ARGV`), you need to strip the first element from
  `$words` and reduce `$cword` by 1.
  
  
  _
      },
      result_naked => 1,
      links => [
      ],
  };
  sub parse_cmdline {
      no warnings 'uninitialized';
      my ($line, $point, $opts) = @_;
  
      $line  //= $ENV{COMP_LINE};
      $point //= $ENV{COMP_POINT} // 0;
  
      die "$0: COMP_LINE not set, make sure this script is run under ".
          "bash completion (e.g. through complete -C)\n" unless defined $line;
  
      my @words;
      my $cword;
      my $pos = 0;
      my $pos_min_ws = 0;
      my $after_ws = 1;
      my $chunk;
      my $add_blank;
      my $is_cur_word;
      $line =~ s!(                                                 # 1) everything
                    (")((?: \\\\|\\"|[^"])*)(?:"|\z)(\s*)       |  # 2) open "  3) content  4) space after
                    (')((?: \\\\|\\'|[^'])*)(?:'|\z)(\s*)       |  # 5) open '  6) content  7) space after
                    ((?: \\\\|\\"|\\'|\\=|\\\s|[^"'=\s])+)(\s*) |  # 8) unquoted word  9) space after
                    = |
                    \s+
                )!
                    $pos += length($1);
                    #say "D:<$1> pos=$pos, point=$point, cword=$cword, after_ws=$after_ws";
  
                    if ($2 || $5 || defined($8)) {
                        # double-quoted/single-quoted/unquoted chunk
  
                        if (not(defined $cword)) {
                            $pos_min_ws = $pos - length($2 ? $4 : $5 ? $7 : $9);
                            #say "D:pos_min_ws=$pos_min_ws";
                            if ($point <= $pos_min_ws) {
                                $cword = @words - ($after_ws ? 0 : 1);
                            } elsif ($point < $pos) {
                                $cword = @words + 1 - ($after_ws ? 0 : 1);
                                $add_blank = 1;
                            }
                        }
  
                        if ($after_ws) {
                            $is_cur_word = defined($cword) && $cword==@words;
                        } else {
                            $is_cur_word = defined($cword) && $cword==@words-1;
                        }
                        #say "D:is_cur_word=$is_cur_word";
                        $chunk =
                            $2 ? _add_double_quoted($3, $is_cur_word) :
                                $5 ? _add_single_quoted($6) :
                                _add_unquoted($8, $is_cur_word, $after_ws);
                        if ($opts && $opts->{truncate_current_word} &&
                                $is_cur_word && $pos > $point) {
                            $chunk = substr(
                                $chunk, 0, length($chunk)-($pos-$point));
                        }
                        if ($after_ws) {
                            push @words, $chunk;
                        } else {
                            $words[-1] .= $chunk;
                        }
                        if ($add_blank) {
                            push @words, '';
                            $add_blank = 0;
                        }
                        $after_ws = ($2 ? $4 : $5 ? $7 : $9) ? 1:0;
  
                    } elsif ($1 eq '=') {
                        # equal sign as word-breaking character
                        push @words, '=';
                        $after_ws = 1;
                    } else {
                        # whitespace
                        $after_ws = 1;
                    }
      !egx;
  
      $cword //= @words;
      $words[$cword] //= '';
  
      [\@words, $cword];
  }
  
  $SPEC{parse_options} = {
      v => 1.1,
      summary => 'Parse command-line for options and arguments, '.
          'more or less like Getopt::Long',
      description => <<'_',
  
  Parse command-line into words using `parse_cmdline()` then separate options and
  arguments. Since this routine does not accept `Getopt::Long` (this routine is
  meant to be a generic option parsing of command-lines), it uses a few simple
  rules to server the common cases:
  
  * After `--`, the rest of the words are arguments (just like Getopt::Long).
  
  * If we get something like `-abc` (a single dash followed by several letters) it
    is assumed to be a bundle of short options.
  
  * If we get something like `-MData::Dump` (a single dash, followed by a letter,
    followed by some letters *and* non-letters/numbers) it is assumed to be an
    option (`-M`) followed by a value.
  
  * If we get something like `--foo` it is a long option. If the next word is an
    option (starts with a `-`) then it is assumed that this option does not have
    argument. Otherwise, the next word is assumed to be this option's value.
  
  * Otherwise, it is an argument (that is, permute is assumed).
  
  _
  
      args => {
          cmdline => {
              summary => 'Command-line, defaults to COMP_LINE environment',
              schema => 'str*',
          },
          point => {
              summary => 'Point/position to complete in command-line, '.
                  'defaults to COMP_POINT',
              schema => 'int*',
          },
          words => {
              summary => 'Alternative to passing `cmdline` and `point`',
              schema => ['array*', of=>'str*'],
              description => <<'_',
  
  If you already did a `parse_cmdline()`, you can pass the words result (the first
  element) here to avoid calling `parse_cmdline()` twice.
  
  _
          },
          cword => {
              summary => 'Alternative to passing `cmdline` and `point`',
              schema => ['array*', of=>'str*'],
              description => <<'_',
  
  If you already did a `parse_cmdline()`, you can pass the cword result (the
  second element) here to avoid calling `parse_cmdline()` twice.
  
  _
          },
      },
      result => {
          schema => 'hash*',
      },
  };
  sub parse_options {
      my %args = @_;
  
      my ($words, $cword) = @_;
      if ($args{words}) {
          ($words, $cword) = ($args{words}, $args{cword});
      } else {
          ($words, $cword) = @{parse_cmdline($args{cmdline}, $args{point})};
      }
  
      my @types;
      my %opts;
      my @argv;
      my $type;
      $types[0] = 'command';
      my $i = 1;
      while ($i < @$words) {
          my $word = $words->[$i];
          if ($word eq '--') {
              if ($i == $cword) {
                  $types[$i] = 'opt_name';
                  $i++; next;
              }
              $types[$i] = 'separator';
              for ($i+1 .. @$words-1) {
                  $types[$_] = 'arg,' . @argv;
                  push @argv, $words->[$_];
              }
              last;
          } elsif ($word =~ /\A-(\w*)\z/) {
              $types[$i] = 'opt_name';
              for (split '', $1) {
                  push @{ $opts{$_} }, undef;
              }
              $i++; next;
          } elsif ($word =~ /\A-([\w?])(.*)/) {
              $types[$i] = 'opt_name';
              push @{ $opts{$1} }, $2;
              $i++; next;
          } elsif ($word =~ /\A--(\w[\w-]*)\z/) {
              $types[$i] = 'opt_name';
              my $opt = $1;
              $i++;
              if ($i < @$words) {
                  if ($words->[$i] eq '=') {
                      $types[$i] = 'separator';
                      $i++;
                  }
                  if ($words->[$i] =~ /\A-/) {
                      push @{ $opts{$opt} }, undef;
                      next;
                  }
                  $types[$i] = 'opt_val';
                  push @{ $opts{$opt} }, $words->[$i];
                  $i++; next;
              }
          } else {
              $types[$i] = 'arg,' . @argv;
              push @argv, $word;
              $i++; next;
          }
      }
  
      return {
          opts      => \%opts,
          argv      => \@argv,
          cword     => $cword,
          words     => $words,
          word_type => $types[$cword],
      };
  }
  
  $SPEC{format_completion} = {
      v => 1.1,
      summary => 'Format completion for output (for shell)',
      description => <<'_',
  
  Bash accepts completion reply in the form of one entry per line to STDOUT. Some
  characters will need to be escaped. This function helps you do the formatting,
  with some options.
  
  This function accepts completion answer structure as described in the `Complete`
  POD. Aside from `words`, this function also recognizes these keys:
  
  * `as` (str): Either `string` (the default) or `array` (to return array of lines
    instead of the lines joined together). Returning array is useful if you are
    doing completion inside `Term::ReadLine`, for example, where the library
    expects an array.
  
  * `esc_mode` (str): Escaping mode for entries. Either `default` (most
    nonalphanumeric characters will be escaped), `shellvar` (like `default`, but
    dollar sign `$` will not be escaped, convenient when completing environment
    variables for example), `filename` (currently equals to `default`), `option`
    (currently equals to `default`), or `none` (no escaping will be done).
  
  * `path_sep` (str): If set, will enable "path mode", useful for
    completing/drilling-down path. Below is the description of "path mode".
  
    In shell, when completing filename (e.g. `foo`) and there is only a single
    possible completion (e.g. `foo` or `foo.txt`), the shell will display the
    completion in the buffer and automatically add a space so the user can move to
    the next argument. This is also true when completing other values like
    variables or program names.
  
    However, when completing directory (e.g. `/et` or `Downloads`) and there is
    solely a single completion possible and it is a directory (e.g. `/etc` or
    `Downloads`), the shell automatically adds the path separator character
    instead (`/etc/` or `Downloads/`). The user can press Tab again to complete
    for files/directories inside that directory, and so on. This is obviously more
    convenient compared to when shell adds a space instead.
  
    The `path_sep` option, when set, will employ a trick to mimic this behaviour.
    The trick is, if you have a completion array of `['foo/']`, it will be changed
    to `['foo/', 'foo/ ']` (the second element is the first element with added
    space at the end) to prevent bash from adding a space automatically.
  
    Path mode is not restricted to completing filesystem paths. Anything path-like
    can use it. For example when you are completing Java or Perl module name (e.g.
    `com.company.product.whatever` or `File::Spec::Unix`) you can use this mode
    (with `path_sep` appropriately set to, e.g. `.` or `::`).
  
  _
      args_as => 'array',
      args => {
          completion => {
              summary => 'Completion answer structure',
              description => <<'_',
  
  Either an array or hash. See function description for more details.
  
  _
              schema=>['any*' => of => ['hash*', 'array*']],
              req=>1,
              pos=>0,
          },
          opts => {
              schema=>'hash*',
              pos=>1,
          },
      },
      result => {
          summary => 'Formatted string (or array, if `as` is set to `array`)',
          schema => ['any*' => of => ['str*', 'array*']],
      },
      result_naked => 1,
  };
  sub format_completion {
      my ($hcomp, $opts) = @_;
  
      $opts //= {};
  
      $hcomp = {words=>$hcomp} unless ref($hcomp) eq 'HASH';
      my $comp     = $hcomp->{words};
      my $as       = $hcomp->{as} // 'string';
      my $esc_mode = $hcomp->{esc_mode} // $hcomp->{escmode} // 'default';
      my $path_sep = $hcomp->{path_sep};
  
      if (defined($path_sep) && @$comp == 1) {
          my $re = qr/\Q$path_sep\E\z/;
          my $word;
          if (ref($comp->[0]) eq 'HASH') {
              $comp = [$comp->[0], {word=>"$comp->[0] "}] if
                  $comp->[0]{word} =~ $re;
          } else {
              $comp = [$comp->[0], "$comp->[0] "]
                  if $comp->[0] =~ $re;
          }
      }
  
      if (defined($opts->{word})) {
          if ($opts->{word} =~ s/(.+:)//) {
              my $prefix = $1;
              for (@$comp) {
                  if (ref($_) eq 'HASH') {
                      $_->{word} =~ s/\A\Q$prefix\E//i;
                  } else {
                      s/\A\Q$prefix\E//i;
                  }
              }
          }
      }
  
      my @res;
      for my $entry (@$comp) {
          my $word = ref($entry) eq 'HASH' ? $entry->{word} : $entry;
          if ($esc_mode eq 'shellvar') {
              $word =~ s!([^A-Za-z0-9,+._/\$~-])!\\$1!g;
          } elsif ($esc_mode eq 'none') {
          } else {
              $word =~ s!([^A-Za-z0-9,+._/:~-])!\\$1!g;
          }
          push @res, $word;
      }
  
      if ($as eq 'array') {
          return \@res;
      } else {
          return join("", map {($_, "\n")} @res);
      }
  }
  
  1;
  
  __END__
  
COMPLETE_BASH

$fatpacked{"Complete/Common.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_COMMON';
  package Complete::Common;
  
  our $DATE = '2016-01-05'; 
  our $VERSION = '0.22'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter qw(import);
  our @EXPORT_OK = qw(
                         %arg_word
                 );
  
  our %EXPORT_TAGS = (
      all => \@EXPORT_OK
  );
  
  our %arg_word = (
      word => {
          summary => 'Word to complete',
          schema => ['str', default=>''],
          pos=>0,
          req=>1,
      },
  );
  
  our $OPT_CI          = ($ENV{COMPLETE_OPT_CI}          // 1) ? 1:0;
  our $OPT_WORD_MODE   = ($ENV{COMPLETE_OPT_WORD_MODE}   // 1) ? 1:0;
  our $OPT_CHAR_MODE   = ($ENV{COMPLETE_OPT_CHAR_MODE}   // 1) ? 1:0;
  our $OPT_FUZZY       = ($ENV{COMPLETE_OPT_FUZZY}       // 1)+0;
  our $OPT_MAP_CASE    = ($ENV{COMPLETE_OPT_MAP_CASE}    // 1) ? 1:0;
  our $OPT_EXP_IM_PATH = ($ENV{COMPLETE_OPT_EXP_IM_PATH} // 1) ? 1:0;
  our $OPT_DIG_LEAF    = ($ENV{COMPLETE_OPT_DIG_LEAF}    // 1) ? 1:0;
  
  1;
  
  __END__
  
COMPLETE_COMMON

$fatpacked{"Complete/Env.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_ENV';
  package Complete::Env;
  
  our $DATE = '2015-11-29'; 
  our $VERSION = '0.38'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Complete::Common qw(:all);
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         complete_env
                 );
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Completion routines related to environment variables',
  };
  
  $SPEC{complete_env} = {
      v => 1.1,
      summary => 'Complete from environment variables',
      description => <<'_',
  
  On Windows, environment variable names are all converted to uppercase. You can
  use case-insensitive option (`ci`) to match against original casing.
  
  _
      args => {
          word     => { schema=>[str=>{default=>''}], pos=>0, req=>1 },
      },
      result_naked => 1,
      result => {
          schema => 'array',
      },
  };
  sub complete_env {
      require Complete::Util;
  
      my %args  = @_;
      my $word     = $args{word} // "";
      if ($word =~ /^\$/) {
          Complete::Util::complete_array_elem(
              word=>$word, array=>[map {"\$$_"} keys %ENV],
          );
      } else {
          Complete::Util::complete_array_elem(
              word=>$word, array=>[keys %ENV],
          );
      }
  }
  1;
  
  __END__
  
COMPLETE_ENV

$fatpacked{"Complete/File.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_FILE';
  package Complete::File;
  
  our $DATE = '2015-11-29'; 
  our $VERSION = '0.39'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Complete::Common qw(:all);
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         complete_file
                         complete_dir
                 );
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Completion routines related to files',
  };
  
  $SPEC{complete_file} = {
      v => 1.1,
      summary => 'Complete file and directory from local filesystem',
      args_rels => {
          choose_one => [qw/filter file_regex_filter/],
      },
      args => {
          %arg_word,
          filter => {
              summary => 'Only return items matching this filter',
              description => <<'_',
  
  Filter can either be a string or a code.
  
  For string filter, you can specify a pipe-separated groups of sequences of these
  characters: f, d, r, w, x. Dash can appear anywhere in the sequence to mean
  not/negate. An example: `f` means to only show regular files, `-f` means only
  show non-regular files, `drwx` means to show only directories which are
  readable, writable, and executable (cd-able). `wf|wd` means writable regular
  files or writable directories.
  
  For code filter, you supply a coderef. The coderef will be called for each item
  with these arguments: `$name`. It should return true if it wants the item to be
  included.
  
  _
              schema  => ['any*' => {of => ['str*', 'code*']}],
          },
          file_regex_filter => {
              summary => 'Filter shortcut for file regex',
              description => <<'_',
  
  This is a shortcut for constructing a filter. So instead of using `filter`, you
  use this option. This will construct a filter of including only directories or
  regular files, and the file must match a regex pattern. This use-case is common.
  
  _
              schema => 're*',
          },
          starting_path => {
              schema  => 'str*',
              default => '.',
          },
          handle_tilde => {
              schema  => 'bool',
              default => 1,
          },
          allow_dot => {
              summary => 'If turned off, will not allow "." or ".." in path',
              description => <<'_',
  
  This is most useful when combined with `starting_path` option to prevent user
  going up/outside the starting path.
  
  _
              schema  => 'bool',
              default => 1,
          },
      },
      result_naked => 1,
      result => {
          schema => 'array',
      },
  };
  sub complete_file {
      require Complete::Path;
      require File::Glob;
  
      my %args   = @_;
      my $word   = $args{word} // "";
      my $handle_tilde = $args{handle_tilde} // 1;
      my $allow_dot   = $args{allow_dot} // 1;
      my $filter = $args{filter};
  
      my $result_prefix;
      my $starting_path = $args{starting_path} // '.';
      if ($handle_tilde && $word =~ s!\A(~[^/]*)/!!) {
          $result_prefix = "$1/";
          my @dir = File::Glob::glob($1); 
          return [] unless @dir;
          $starting_path = $dir[0];
      } elsif ($allow_dot && $word =~ s!\A((?:\.\.?/+)+|/+)!!) {
          $starting_path = $1;
          $result_prefix = $1;
          $starting_path =~ s#/+\z## unless $starting_path =~ m!\A/!;
      }
  
      return [] if !$allow_dot &&
          $word =~ m!(?:\A|/)\.\.?(?:\z|/)!;
  
      my $list = sub {
          my ($path, $intdir, $isint) = @_;
          opendir my($dh), $path or return undef;
          my @res;
          for (sort readdir $dh) {
              next if ($_ eq '.' || $_ eq '..') && $intdir eq '';
              next if $isint && !(-d "$path/$_");
              push @res, $_;
          }
          \@res;
      };
  
      if ($filter && !ref($filter)) {
          my @seqs = split /\s*\|\s*/, $filter;
          $filter = sub {
              my $name = shift;
              my @st = stat($name) or return 0;
              my $mode = $st[2];
              my $pass;
            SEQ:
              for my $seq (@seqs) {
                  my $neg = sub { $_[0] };
                  for my $c (split //, $seq) {
                      if    ($c eq '-') { $neg = sub { $_[0] ? 0 : 1 } }
                      elsif ($c eq 'r') { next SEQ unless $neg->($mode & 0400) }
                      elsif ($c eq 'w') { next SEQ unless $neg->($mode & 0200) }
                      elsif ($c eq 'x') { next SEQ unless $neg->($mode & 0100) }
                      elsif ($c eq 'f') { next SEQ unless $neg->($mode & 0100000)}
                      elsif ($c eq 'd') { next SEQ unless $neg->($mode & 0040000)}
                      else {
                          die "Unknown character in filter: $c (in $seq)";
                      }
                  }
                  $pass = 1; last SEQ;
              }
              $pass;
          };
      } elsif (!$filter && $args{file_regex_filter}) {
          $filter = sub {
              my $name = shift;
              return 1 if -d $name;
              return 0 unless -f _;
              return 1 if $name =~ $args{file_regex_filter};
              0;
          };
      }
  
      if ($args{_dir}) {
          my $orig_filter = $filter;
          $filter = sub {
              my $name = shift;
              return 0 if $orig_filter && !$orig_filter->($name);
              return 0 unless (-d $name);
              1;
          };
      }
  
      Complete::Path::complete_path(
          word => $word,
          list_func => $list,
          is_dir_func => sub { -d $_[0] },
          filter_func => $filter,
          starting_path => $starting_path,
          result_prefix => $result_prefix,
      );
  }
  
  $SPEC{complete_dir} = do {
      my $spec = {%{ $SPEC{complete_file} }}; 
  
      $spec->{summary} = 'Complete directory from local filesystem '.
          '(wrapper for complete_dir() that only picks directories)';
      delete $spec->{args}{file_regex_filter};
  
      $spec;
  };
  sub complete_dir {
      my %args = @_;
  
      complete_file(%args, _dir=>1);
  }
  
  1;
  
  __END__
  
COMPLETE_FILE

$fatpacked{"Complete/Fish.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_FISH';
  package Complete::Fish;
  
  our $DATE = '2015-09-09'; 
  our $VERSION = '0.04'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         format_completion
                 );
  
  require Complete::Bash;
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Completion module for fish shell',
  };
  
  $SPEC{parse_cmdline} = {
      v => 1.1,
      summary => 'Parse shell command-line for processing by completion routines',
      description => <<'_',
  
  This function converts COMMAND_LINE (str) given by tcsh to become something like
  COMP_WORDS (array) and COMP_CWORD (int), like what bash supplies to shell
  functions. Currently implemented using `Complete::Bash`'s `parse_cmdline`.
  
  _
      args_as => 'array',
      args => {
          cmdline => {
              summary => 'Command-line, defaults to COMMAND_LINE environment',
              schema => 'str*',
              pos => 0,
          },
      },
      result => {
          schema => ['array*', len=>2],
          description => <<'_',
  
  Return a 2-element array: `[$words, $cword]`. `$words` is array of str,
  equivalent to `COMP_WORDS` provided by bash to shell functions. `$cword` is an
  integer, equivalent to `COMP_CWORD` provided by bash to shell functions. The
  word to be completed is at `$words->[$cword]`.
  
  Note that COMP_LINE includes the command name. If you want the command-line
  arguments only (like in `@ARGV`), you need to strip the first element from
  `$words` and reduce `$cword` by 1.
  
  _
      },
      result_naked => 1,
  };
  sub parse_cmdline {
      my ($line) = @_;
  
      $line //= $ENV{COMMAND_LINE};
      Complete::Bash::parse_cmdline($line, length($line));
  }
  
  $SPEC{format_completion} = {
      v => 1.1,
      summary => 'Format completion for output (for shell)',
      description => <<'_',
  
  fish accepts completion reply in the form of one entry per line to STDOUT.
  Description can be added to each entry, prefixed by tab character.
  
  _
      args_as => 'array',
      args => {
          completion => {
              summary => 'Completion answer structure',
              description => <<'_',
  
  Either an array or hash, as described in `Complete`.
  
  _
              schema=>['any*' => of => ['hash*', 'array*']],
              req=>1,
              pos=>0,
          },
      },
      result => {
          summary => 'Formatted string (or array, if `as` key is set to `array`)',
          schema => ['any*' => of => ['str*', 'array*']],
      },
      result_naked => 1,
  };
  sub format_completion {
      my $comp = shift;
  
      my $as;
      my $entries;
  
      if (ref($comp) eq 'HASH') {
          $as = $comp->{as} // 'string';
          $entries = Complete::Bash::format_completion({%$comp, as=>'array'});
      } else {
          $as = 'string';
          $entries = Complete::Bash::format_completion({
              words=>$comp, as=>'array',
          });
      }
  
      {
          my $compary = ref($comp) eq 'HASH' ? $comp->{words} : $comp;
          for (my $i=0; $i<@$compary; $i++) {
  
              my $desc = (ref($compary->[$i]) eq 'HASH' ?
                              $compary->[$i]{description} : '' ) // '';
              $desc =~ s/\R/ /g;
              $entries->[$i] .= "\t$desc";
          }
      }
  
      if ($as eq 'string') {
          $entries = join("", map{"$_\n"} @$entries);
      }
      $entries;
  }
  
  1;
  
  __END__
  
COMPLETE_FISH

$fatpacked{"Complete/Getopt/Long.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_GETOPT_LONG';
  package Complete::Getopt::Long;
  
  our $DATE = '2016-01-07'; 
  our $VERSION = '0.39'; 
  
  use 5.010001;
  use strict;
  use warnings;
  use Log::Any::IfLOG '$log';
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         complete_cli_arg
                 );
  
  our %SPEC;
  
  sub _default_completion {
      require Complete::Env;
      require Complete::File;
      require Complete::Util;
  
      my %args = @_;
      my $word = $args{word} // '';
  
      my $fres;
      $log->tracef('[comp][compgl] entering default completion routine');
  
      if ($word =~ /\A\$/) {
          $log->tracef('[comp][compgl] completing shell variable');
          {
              my $compres = Complete::Env::complete_env(
                  word=>$word);
              last unless @$compres;
              $fres = {words=>$compres, esc_mode=>'shellvar'};
              goto RETURN_RES;
          }
      }
  
      if ($word =~ m!\A~([^/]*)\z!) {
          $log->tracef("[comp][compgl] completing userdir, user=%s", $1);
          {
              eval { require Unix::Passwd::File };
              last if $@;
              my $res = Unix::Passwd::File::list_users(detail=>1);
              last unless $res->[0] == 200;
              my $compres = Complete::Util::complete_array_elem(
                  array=>[map {"~" . $_->{user} . ((-d $_->{home}) ? "/":"")}
                              @{ $res->[2] }],
                  word=>$word,
              );
              last unless @$compres;
              $fres = {words=>$compres, path_sep=>'/'};
              goto RETURN_RES;
          }
      }
  
      if ($word =~ m!\A(~[^/]*)/!) {
          $log->tracef("[comp][compgl] completing file, path=<%s>", $word);
          $fres = {words=>Complete::File::complete_file(word=>$word),
                   path_sep=>'/'};
          goto RETURN_RES;
      }
  
      require String::Wildcard::Bash;
      if (String::Wildcard::Bash::contains_wildcard($word)) {
          $log->tracef("[comp][compgl] completing with wildcard glob, glob=<%s>", "$word*");
          {
              my $compres = [glob("$word*")];
              last unless @$compres;
              for (@$compres) {
                  $_ .= "/" if (-d $_);
              }
              $fres = {words=>$compres, path_sep=>'/'};
              goto RETURN_RES;
          }
      }
      $log->tracef("[comp][compgl] completing with file, file=<%s>", $word);
      $fres = {words=>Complete::File::complete_file(word=>$word),
               path_sep=>'/'};
    RETURN_RES:
      $log->tracef("[comp][compgl] leaving default completion routine, result=%s", $fres);
      $fres;
  }
  
  sub _expand1 {
      my ($opt, $opts) = @_;
      my @candidates;
      my $is_hash = ref($opts) eq 'HASH';
      for ($is_hash ? (sort {length($a)<=>length($b)} keys %$opts) : @$opts) {
          next unless index($_, $opt) == 0;
          push @candidates, $is_hash ? $opts->{$_} : $_;
          last if $opt eq $_;
      }
      return @candidates == 1 ? $candidates[0] : undef;
  }
  
  sub _mark_seen {
      my ($seen_opts, $opt, $opts) = @_;
      my $opthash = $opts->{$opt};
      return unless $opthash;
      my $ospec = $opthash->{ospec};
      for (keys %$opts) {
          my $v = $opts->{$_};
          $seen_opts->{$_}++ if $v->{ospec} eq $ospec;
      }
  }
  
  $SPEC{complete_cli_arg} = {
      v => 1.1,
      summary => 'Complete command-line argument using '.
          'Getopt::Long specification',
      description => <<'_',
  
  This routine can complete option names, where the option names are retrieved
  from `Getopt::Long` specification. If you provide completion routine in
  `completion`, you can also complete _option values_ and _arguments_.
  
  Note that this routine does not use `Getopt::Long` (it does its own parsing) and
  currently is not affected by Getopt::Long's configuration. Its behavior mimics
  Getopt::Long under these configuration: `no_ignore_case`, `bundling` (or
  `no_bundling` if the `bundling` option is turned off). Which I think is the
  sensible default. This routine also does not currently support `auto_help` and
  `auto_version`, so you'll need to add those options specifically if you want to
  recognize `--help/-?` and `--version`, respectively.
  
  _
      args => {
          getopt_spec => {
              summary => 'Getopt::Long specification',
              schema  => 'hash*',
              req     => 1,
          },
          completion => {
              summary     =>
                  'Completion routine to complete option value/argument',
              schema      => 'code*',
              description => <<'_',
  
  Completion code will receive a hash of arguments (`%args`) containing these
  keys:
  
  * `type` (str, what is being completed, either `optval`, or `arg`)
  * `word` (str, word to be completed)
  * `cword` (int, position of words in the words array, starts from 0)
  * `opt` (str, option name, e.g. `--str`; undef if we're completing argument)
  * `ospec` (str, Getopt::Long option spec, e.g. `str|S=s`; undef when completing
    argument)
  * `argpos` (int, argument position, zero-based; undef if type='optval')
  * `nth` (int, the number of times this option has seen before, starts from 0
    that means this is the first time this option has been seen; undef when
    type='arg')
  * `seen_opts` (hash, all the options seen in `words`)
  * `parsed_opts` (hash, options parsed the standard/raw way)
  
  as well as all keys from `extras` (but these won't override the above keys).
  
  and is expected to return a completion answer structure as described in
  `Complete` which is either a hash or an array. The simplest form of answer is
  just to return an array of strings. The various `complete_*` function like those
  in `Complete::Util` or the other `Complete::*` modules are suitable to use here.
  
  Completion routine can also return undef to express declination, in which case
  the default completion routine will then be consulted. The default routine
  completes from shell environment variables (`$FOO`), Unix usernames (`~foo`),
  and files/directories.
  
  Example:
  
      use Complete::Unix qw(complete_user);
      use Complete::Util qw(complete_array_elem);
      complete_cli_arg(
          getopt_spec => {
              'help|h'   => sub{...},
              'format=s' => \$format,
              'user=s'   => \$user,
          },
          completion  => sub {
              my %args  = @_;
              my $word  = $args{word};
              my $ospec = $args{ospec};
              if ($ospec && $ospec eq 'format=s') {
                  complete_array_elem(array=>[qw/json text xml yaml/], word=>$word);
              } else {
                  complete_user(word=>$word);
              }
          },
      );
  
  _
          },
          words => {
              summary     => 'Command line arguments, like @ARGV',
              description => <<'_',
  
  See function `parse_cmdline` in `Complete::Bash` on how to produce this (if
  you're using bash).
  
  _
              schema      => 'array*',
              req         => 1,
          },
          cword => {
              summary     =>
                  "Index in words of the word we're trying to complete",
              description => <<'_',
  
  See function `parse_cmdline` in `Complete::Bash` on how to produce this (if
  you're using bash).
  
  _
              schema      => 'int*',
              req         => 1,
          },
          extras => {
              summary => 'Add extra arguments to completion routine',
              schema  => 'hash',
              description => <<'_',
  
  The keys from this `extras` hash will be merged into the final `%args` passed to
  completion routines. Note that standard keys like `type`, `word`, and so on as
  described in the function description will not be overwritten by this.
  
  _
          },
          bundling => {
              schema  => 'bool*',
              default => 1,
              'summary.alt.bool.not' => 'Turn off bundling',
              description => <<'_',
  
  If you turn off bundling, completion of short-letter options won't support
  bundling (e.g. `-b<tab>` won't add more single-letter options), but single-dash
  multiletter options can be recognized. Currently only those specified with a
  single dash will be completed. For example if you have `-foo=s` in your option
  specification, `-f<tab>` can complete it.
  
  This can be used to complete old-style programs, e.g. emacs which has options
  like `-nw`, `-nbc` etc (but also have double-dash options like
  `--no-window-system` or `--no-blinking-cursor`).
  
  _
          },
      },
      result_naked => 1,
      result => {
          schema => ['any*' => of => ['hash*', 'array*']],
          description => <<'_',
  
  You can use `format_completion` function in `Complete::Bash` module to format
  the result of this function for bash.
  
  _
      },
  };
  sub complete_cli_arg {
      require Complete::Util;
      require Getopt::Long::Util;
  
      my %args = @_;
  
      my $fname = __PACKAGE__ . "::complete_cli_arg"; 
      my $fres;
  
      $args{words} or die "Please specify words";
      my @words = @{ $args{words} };
      defined(my $cword = $args{cword}) or die "Please specify cword";
      my $gospec = $args{getopt_spec} or die "Please specify getopt_spec";
      my $comp = $args{completion};
      my $extras = $args{extras} // {};
      my $bundling = $args{bundling} // 1;
      my %parsed_opts;
  
      $log->tracef('[comp][compgl] entering %s(), words=%s, cword=%d, word=<%s>',
                   $fname, \@words, $cword, $words[$cword]);
  
      my %opts;
      for my $ospec (keys %$gospec) {
          my $res = Getopt::Long::Util::parse_getopt_long_opt_spec($ospec)
              or die "Can't parse option spec '$ospec'";
          $res->{min_vals} //= $res->{type} ? 1 : 0;
          $res->{max_vals} //= $res->{type} || $res->{opttype} ? 1:0;
          for my $o0 (@{ $res->{opts} }) {
              my @o = $res->{is_neg} && length($o0) > 1 ?
                  ($o0, "no$o0", "no-$o0") : ($o0);
              for my $o (@o) {
                  my $k = length($o)==1 ||
                      (!$bundling && $res->{dash_prefix} eq '-') ?
                          "-$o" : "--$o";
                  $opts{$k} = {
                      name => $k,
                      ospec => $ospec, 
                      parsed => $res,
                  };
              }
          }
      }
      my @optnames = sort keys %opts;
  
      my %seen_opts;
  
      my @expects;
  
      my $i = -1;
      my $argpos = 0;
  
    WORD:
      while (1) {
          last WORD if ++$i >= @words;
          my $word = $words[$i];
  
          if ($word eq '--' && $i != $cword) {
              $expects[$i] = {separator=>1};
              while (1) {
                  $i++;
                  last WORD if $i >= @words;
                  $expects[$i] = {arg=>1, argpos=>$argpos++};
              }
          }
  
          if ($word =~ /\A-/) {
  
            SPLIT_BUNDLED:
              {
                  last unless $bundling;
                  my $shorts = $word;
                  if ($shorts =~ s/\A-([^-])(.*)/$2/) {
                      my $opt = "-$1";
                      my $opthash = $opts{$opt};
                      if (!$opthash || $opthash->{parsed}{max_vals}) {
                          last SPLIT_BUNDLED;
                      }
                      $words[$i] = $word = "-$1";
                      $expects[$i]{prefix} = $word;
                      $expects[$i]{word} = '';
                      $expects[$i]{short_only} = 1;
                      my $len_before_split = @words;
                      my $j = $i+1;
                    SHORTOPT:
                      while ($shorts =~ s/(.)//) {
                          $opt = "-$1";
                          $opthash = $opts{$opt};
                          if (!$opthash || $opthash->{parsed}{max_vals}) {
                              $expects[$i]{do_complete_optname} = 0;
                              if (length $shorts) {
                                  splice @words, $j, 0, $opt, '=', $shorts;
                                  $j += 3;
                              } else {
                                  splice @words, $j, 0, $opt;
                                  $j++;
                              }
                              last SHORTOPT;
                          } else {
                              splice @words, $j, 0, $opt;
                              $j++;
                          }
                      }
                      $cword += @words-$len_before_split if $cword > $i;
                  }
              }
  
            SPLIT_EQUAL:
              {
                  if ($word =~ /\A(--?[^=]+)(=)(.*)/) {
                      splice @words, $i, 1, $1, $2, $3;
                      $word = $1;
                      $cword += 2 if $cword >= $i;
                  }
              }
  
              my $opt = $word;
              my $opthash = _expand1($opt, \%opts);
  
              if ($opthash) {
                  $opt = $opthash->{name};
                  $expects[$i]{optname} = $opt;
                  my $nth = $seen_opts{$opt} // 0;
                  $expects[$i]{nth} = $nth;
                  _mark_seen(\%seen_opts, $opt, \%opts);
  
                  my $min_vals = $opthash->{parsed}{min_vals};
                  my $max_vals = $opthash->{parsed}{max_vals};
  
                  if ($i+1 < @words && $words[$i+1] eq '=') {
                      $i++;
                      $expects[$i] = {separator=>1, optval=>$opt, word=>'', nth=>$nth};
                      if (!$max_vals) { $min_vals = $max_vals = 1 }
                  }
  
                  push @{ $parsed_opts{$opt} }, $words[$i+1];
                  for (1 .. $min_vals) {
                      $i++;
                      last WORD if $i >= @words;
                      $expects[$i]{optval} = $opt;
                      $expects[$i]{nth} = $nth;
                  }
                  for (1 .. $max_vals-$min_vals) {
                      last if $i+$_ >= @words;
                      last if $words[$i+$_] =~ /\A-/; 
                      $expects[$i+$_]{optval} = $opt; 
                      $expects[$i]{nth} = $nth;
                  }
              } else {
                  $opt = undef;
                  $expects[$i]{optname} = $opt;
  
                  if ($i+1 < @words && $words[$i+1] eq '=') {
                      $i++;
                      $expects[$i] = {separator=>1, optval=>undef, word=>''};
                      if ($i+1 < @words) {
                          $i++;
                          $expects[$i]{optval} = $opt;
                      }
                  }
              }
          } else {
              $expects[$i]{optname} = '';
              $expects[$i]{arg} = 1;
              $expects[$i]{argpos} = $argpos++;
          }
      }
  
  
      my $exp = $expects[$cword];
      my $word = $exp->{word} // $words[$cword];
  
      my @answers;
  
      {
          last if $word =~ /\A[^-]/;
          last unless exists $exp->{optname};
          last if defined($exp->{do_complete_optname}) &&
              !$exp->{do_complete_optname};
          my $opt = $exp->{optname};
          my @o;
          for (@optnames) {
              my $repeatable = 0;
              next if $exp->{short_only} && /\A--/;
              if ($seen_opts{$_}) {
                  my $opthash = $opts{$_};
                  my $ospecval = $gospec->{$opthash->{ospec}};
                  my $parsed = $opthash->{parsed};
                  if (ref($ospecval) eq 'ARRAY') {
                      $repeatable = 1;
                  } elsif ($parsed->{desttype} || $parsed->{is_inc}) {
                      $repeatable = 1;
                  }
              }
              next if $seen_opts{$_} && !$repeatable && (
                  (!$opt || $opt ne $_) ||
                      (defined($exp->{prefix}) &&
                           index($exp->{prefix}, substr($opt, 1, 1)) >= 0));
              if (defined $exp->{prefix}) {
                  my $o = $_; $o =~ s/\A-//;
                  push @o, "$exp->{prefix}$o";
              } else {
                  push @o, $_;
              }
          }
          my $compres = Complete::Util::complete_array_elem(
              array => \@o, word => $word);
          $log->tracef('[comp][compgl] adding result from option names, '.
                           'matching options=%s', $compres);
          push @answers, $compres;
          if (!exists($exp->{optval}) && !exists($exp->{arg})) {
              $fres = {words=>$compres, esc_mode=>'option'};
              goto RETURN_RES;
          }
      }
  
      {
          last unless exists($exp->{optval});
          my $opt = $exp->{optval};
          my $opthash = $opts{$opt} if $opt;
          my %compargs = (
              %$extras,
              type=>'optval', words=>\@words, cword=>$args{cword},
              word=>$word, opt=>$opt, ospec=>$opthash->{ospec},
              argpos=>undef, nth=>$exp->{nth}, seen_opts=>\%seen_opts,
              parsed_opts=>\%parsed_opts,
          );
          my $compres;
          if ($comp) {
              $log->tracef("[comp][compgl] invoking routine supplied from 'completion' argument to complete option value, option=<%s>", $opt);
              $compres = $comp->(%compargs);
              $log->tracef('[comp][compgl] adding result from routine: %s', $compres);
          }
          if (!$compres || !$comp) {
              $compres = _default_completion(%compargs);
              $log->tracef('[comp][compgl] adding result from default '.
                               'completion routine');
          }
          push @answers, $compres;
      }
  
      {
          last unless exists($exp->{arg});
          my %compargs = (
              %$extras,
              type=>'arg', words=>\@words, cword=>$args{cword},
              word=>$word, opt=>undef, ospec=>undef,
              argpos=>$exp->{argpos}, seen_opts=>\%seen_opts,
              parsed_opts=>\%parsed_opts,
          );
          $log->tracef('[comp][compgl] invoking \'completion\' routine '.
                           'to complete argument');
          my $compres = $comp->(%compargs);
          if (!defined $compres) {
              $compres = _default_completion(%compargs);
              $log->tracef('[comp][compgl] adding result from default '.
                               'completion routine: %s', $compres);
          }
          push @answers, $compres;
      }
  
      $log->tracef("[comp][compgl] combining result from %d source(s)", ~~@answers);
      $fres = Complete::Util::combine_answers(@answers) // [];
  
    RETURN_RES:
      $log->tracef("[comp][compgl] leaving %s(), result=%s", $fname, $fres);
      $fres;
  }
  
  1;
  
  __END__
  
COMPLETE_GETOPT_LONG

$fatpacked{"Complete/Path.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_PATH';
  package Complete::Path;
  
  our $DATE = '2016-01-14'; 
  our $VERSION = '0.21'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Complete::Common qw(:all);
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         complete_path
                 );
  
  sub _dig_leaf {
      my ($p, $list_func, $is_dir_func, $filter_func, $path_sep) = @_;
      my $num_dirs;
      my $listres = $list_func->($p, '', 0);
      return $p unless ref($listres) eq 'ARRAY' && @$listres;
      my @candidates;
    L1:
      for my $e (@$listres) {
          my $p2 = $p =~ m!\Q$path_sep\E\z! ? "$p$e" : "$p$path_sep$e";
          {
              local $_ = $p2; 
              next L1 if $filter_func && !$filter_func->($p2);
          }
          push @candidates, $p2;
      }
      return $p unless @candidates == 1;
      my $p2 = $candidates[0];
      my $is_dir;
      if ($p2 =~ m!\Q$path_sep\E\z!) {
          $is_dir++;
      } else {
          $is_dir = $is_dir_func && $is_dir_func->($p2);
      }
      return _dig_leaf($p2, $list_func, $is_dir_func, $filter_func, $path_sep)
          if $is_dir;
      $p2;
  }
  
  our %SPEC;
  
  $SPEC{complete_path} = {
      v => 1.1,
      summary => 'Complete path',
      description => <<'_',
  
  Complete path, for anything path-like. Meant to be used as backend for other
  functions like `Complete::File::complete_file` or
  `Complete::Module::complete_module`. Provides features like case-insensitive
  matching, expanding intermediate paths, and case mapping.
  
  Algorithm is to split path into path elements, then list items (using the
  supplied `list_func`) and perform filtering (using the supplied `filter_func`)
  at every level.
  
  _
      args => {
          %arg_word,
          list_func => {
              summary => 'Function to list the content of intermediate "dirs"',
              schema => 'code*',
              req => 1,
              description => <<'_',
  
  Code will be called with arguments: ($path, $cur_path_elem, $is_intermediate).
  Code should return an arrayref containing list of elements. "Directories" can be
  marked by ending the name with the path separator (see `path_sep`). Or, you can
  also provide an `is_dir_func` function that will be consulted after filtering.
  If an item is a "directory" then its name will be suffixed with a path
  separator by `complete_path()`.
  
  _
          },
          is_dir_func => {
              summary => 'Function to check whether a path is a "dir"',
              schema  => 'code*',
              description => <<'_',
  
  Optional. You can provide this function to determine if an item is a "directory"
  (so its name can be suffixed with path separator). You do not need to do this if
  you already suffix names of "directories" with path separator in `list_func`.
  
  One reason you might want to provide this and not mark "directories" in
  `list_func` is when you want to do extra filtering with `filter_func`. Sometimes
  you do not want to suffix the names first (example: see `complete_file` in
  `Complete::File`).
  
  _
          },
          starting_path => {
              schema => 'str*',
              req => 1,
              default => '',
          },
          filter_func => {
              schema  => 'code*',
              description => <<'_',
  
  Provide extra filtering. Code will be given path and should return 1 if the item
  should be included in the final result or 0 if the item should be excluded.
  
  _
          },
          path_sep => {
              schema  => 'str*',
              default => '/',
          },
      },
      result_naked => 1,
      result => {
          schema => 'array',
      },
  };
  sub complete_path {
      require Complete::Util;
  
      my %args   = @_;
      my $word   = $args{word} // "";
      my $path_sep = $args{path_sep} // '/';
      my $list_func   = $args{list_func};
      my $is_dir_func = $args{is_dir_func};
      my $filter_func = $args{filter_func};
      my $result_prefix = $args{result_prefix};
      my $starting_path = $args{starting_path} // '';
  
      my $ci          = $Complete::Common::OPT_CI;
      my $word_mode   = $Complete::Common::OPT_WORD_MODE;
      my $fuzzy       = $Complete::Common::OPT_FUZZY;
      my $map_case    = $Complete::Common::OPT_MAP_CASE;
      my $exp_im_path = $Complete::Common::OPT_EXP_IM_PATH;
      my $dig_leaf    = $Complete::Common::OPT_DIG_LEAF;
  
      my $re_ends_with_path_sep = qr!\A\z|\Q$path_sep\E\z!;
  
      my @intermediate_dirs;
      {
          @intermediate_dirs = split qr/\Q$path_sep/, $word;
          @intermediate_dirs = ('') if !@intermediate_dirs;
          push @intermediate_dirs, '' if $word =~ $re_ends_with_path_sep;
      }
  
      my $leaf = pop @intermediate_dirs;
      @intermediate_dirs = ('') if !@intermediate_dirs;
  
  
      my @candidate_paths;
  
      for my $i (0..$#intermediate_dirs) {
          my $intdir = $intermediate_dirs[$i];
          my $intdir_with_path_sep = "$intdir$path_sep";
          my @dirs;
          if ($i == 0) {
              @dirs = ($starting_path);
          } else {
              @dirs = @candidate_paths;
          }
  
          if ($i == $#intermediate_dirs && $intdir eq '') {
              @candidate_paths = @dirs;
              last;
          }
  
          my @new_candidate_paths;
          for my $dir (@dirs) {
              my $listres = $list_func->($dir, $intdir, 1);
              next unless $listres && @$listres;
              my $matches = Complete::Util::complete_array_elem(
                  word => $intdir, array => $listres,
              );
              my $exact_matches = [grep {
                  length($intdir)+length($path_sep) eq length($_)
              } @$matches];
  
              if ($exp_im_path && @$exact_matches == 1) {
                  $matches = $exact_matches;
              }
  
              for (@$matches) {
                  my $p = $dir =~ $re_ends_with_path_sep ?
                      "$dir$_" : "$dir$path_sep$_";
                  push @new_candidate_paths, $p;
              }
  
          }
          return [] unless @new_candidate_paths;
          @candidate_paths = @new_candidate_paths;
      }
  
      my $cut_chars = 0;
      if (length($starting_path)) {
          $cut_chars += length($starting_path);
          unless ($starting_path =~ /\Q$path_sep\E\z/) {
              $cut_chars += length($path_sep);
          }
      }
  
      my @res;
      for my $dir (@candidate_paths) {
          my $listres = $list_func->($dir, $leaf, 0);
          next unless $listres && @$listres;
          my $matches = Complete::Util::complete_array_elem(
              word => $leaf, array => $listres,
          );
  
        L1:
          for my $e (@$matches) {
              my $p = $dir =~ $re_ends_with_path_sep ?
                  "$dir$e" : "$dir$path_sep$e";
              {
                  local $_ = $p; 
                  next L1 if $filter_func && !$filter_func->($p);
              }
  
              my $is_dir;
              if ($e =~ $re_ends_with_path_sep) {
                  $is_dir = 1;
              } else {
                  local $_ = $p; 
                  $is_dir = $is_dir_func->($p);
              }
  
              if ($is_dir && $dig_leaf) {
                  {
                      my $p2 = _dig_leaf($p, $list_func, $is_dir_func, $filter_func, $path_sep);
                      last if $p2 eq $p;
                      $p = $p2;
  
                      if ($p =~ $re_ends_with_path_sep) {
                          $is_dir = 1;
                      } else {
                          local $_ = $p; 
                          $is_dir = $is_dir_func->($p);
                      }
                  }
              }
  
              my $p0 = $p;
              substr($p, 0, $cut_chars) = '' if $cut_chars;
              $p = "$result_prefix$p" if length($result_prefix);
              unless ($p =~ /\Q$path_sep\E\z/) {
                  $p .= $path_sep if $is_dir;
              }
              push @res, $p;
          }
      }
  
      \@res;
  }
  1;
  
  __END__
  
COMPLETE_PATH

$fatpacked{"Complete/Tcsh.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_TCSH';
  package Complete::Tcsh;
  
  our $DATE = '2015-09-09'; 
  our $VERSION = '0.02'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         parse_cmdline
                         format_completion
                 );
  
  require Complete::Bash;
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Completion module for tcsh shell',
  };
  
  $SPEC{parse_cmdline} = {
      v => 1.1,
      summary => 'Parse shell command-line for processing by completion routines',
      description => <<'_',
  
  This function converts COMMAND_LINE (str) given by tcsh to become something like
  COMP_WORDS (array) and COMP_CWORD (int), like what bash supplies to shell
  functions. Currently implemented using `Complete::Bash`'s `parse_cmdline`.
  
  _
      args_as => 'array',
      args => {
          cmdline => {
              summary => 'Command-line, defaults to COMMAND_LINE environment',
              schema => 'str*',
              pos => 0,
          },
      },
      result => {
          schema => ['array*', len=>2],
          description => <<'_',
  
  Return a 2-element array: `[$words, $cword]`. `$words` is array of str,
  equivalent to `COMP_WORDS` provided by bash to shell functions. `$cword` is an
  integer, equivalent to `COMP_CWORD` provided by bash to shell functions. The
  word to be completed is at `$words->[$cword]`.
  
  Note that COMP_LINE includes the command name. If you want the command-line
  arguments only (like in `@ARGV`), you need to strip the first element from
  `$words` and reduce `$cword` by 1.
  
  _
      },
      result_naked => 1,
  };
  sub parse_cmdline {
      my ($line) = @_;
  
      $line //= $ENV{COMMAND_LINE};
      Complete::Bash::parse_cmdline($line, length($line));
  }
  
  $SPEC{format_completion} = {
      v => 1.1,
      summary => 'Format completion for output (for shell)',
      description => <<'_',
  
  tcsh accepts completion reply in the form of one entry per line to STDOUT.
  Currently the formatting is done using `Complete::Bash`'s `format_completion`
  because escaping rule and so on are not yet well defined in tcsh.
  
  _
      args_as => 'array',
      args => {
          completion => {
              summary => 'Completion answer structure',
              description => <<'_',
  
  Either an array or hash, as described in `Complete`.
  
  _
              schema=>['any*' => of => ['hash*', 'array*']],
              req=>1,
              pos=>0,
          },
      },
      result => {
          summary => 'Formatted string (or array, if `as` is set to `array`)',
          schema => ['any*' => of => ['str*', 'array*']],
      },
      result_naked => 1,
  };
  sub format_completion {
      Complete::Bash::format_completion(@_);
  }
  
  1;
  
  __END__
  
COMPLETE_TCSH

$fatpacked{"Complete/Util.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_UTIL';
  package Complete::Util;
  
  our $DATE = '2016-01-05'; 
  our $VERSION = '0.45'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Complete::Common qw(:all);
  
  use Exporter qw(import);
  our @EXPORT_OK = qw(
                         hashify_answer
                         arrayify_answer
                         combine_answers
                         complete_array_elem
                         complete_hash_key
                 );
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'General completion routine',
  };
  
  $SPEC{hashify_answer} = {
      v => 1.1,
      summary => 'Make sure we return completion answer in hash form',
      description => <<'_',
  
  This function accepts a hash or an array. If it receives an array, will convert
  the array into `{words=>$ary}' first to make sure the completion answer is in
  hash form.
  
  Then will add keys from `meta` to the hash.
  
  _
      args => {
          arg => {
              summary => '',
              schema  => ['any*' => of => ['array*','hash*']],
              req => 1,
              pos => 0,
          },
          meta => {
              summary => 'Metadata (extra keys) for the hash',
              schema  => 'hash*',
              pos => 1,
          },
      },
      result_naked => 1,
      result => {
          schema => 'hash*',
      },
  };
  sub hashify_answer {
      my $ans = shift;
      if (ref($ans) ne 'HASH') {
          $ans = {words=>$ans};
      }
      if (@_) {
          my $meta = shift;
          for (keys %$meta) {
              $ans->{$_} = $meta->{$_};
          }
      }
      $ans;
  }
  
  $SPEC{arrayify_answer} = {
      v => 1.1,
      summary => 'Make sure we return completion answer in array form',
      description => <<'_',
  
  This is the reverse of `hashify_answer`. It accepts a hash or an array. If it
  receives a hash, will return its `words` key.
  
  _
      args => {
          arg => {
              summary => '',
              schema  => ['any*' => of => ['array*','hash*']],
              req => 1,
              pos => 0,
          },
      },
      result_naked => 1,
      result => {
          schema => 'array*',
      },
  };
  sub arrayify_answer {
      my $ans = shift;
      if (ref($ans) eq 'HASH') {
          $ans = $ans->{words};
      }
      $ans;
  }
  
  sub __min(@) {
      my $m = $_[0];
      for (@_) {
          $m = $_ if $_ < $m;
      }
      $m;
  }
  
  our $code_editdist;
  
  sub __editdist {
      my @a = split //, shift;
      my @b = split //, shift;
  
      my @d;
      $d[$_][0] = $_ for 0 .. @a;
      $d[0][$_] = $_ for 0 .. @b;
  
      for my $i (1 .. @a) {
          for my $j (1 .. @b) {
              $d[$i][$j] = (
                  $a[$i-1] eq $b[$j-1]
                      ? $d[$i-1][$j-1]
                      : 1 + __min(
                          $d[$i-1][$j],
                          $d[$i][$j-1],
                          $d[$i-1][$j-1]
                      )
                  );
          }
      }
  
      $d[@a][@b];
  }
  
  $SPEC{complete_array_elem} = {
      v => 1.1,
      summary => 'Complete from array',
      description => <<'_',
  
  Try to find completion from an array of strings. Will attempt several methods,
  from the cheapest and most discriminating to the most expensive and least
  discriminating: normal string prefix matching, word-mode matching (see
  `Complete::Common::OPT_WORD_MODE` for more details), char-mode matching (see
  `Complete::Common::OPT_CHAR_MODE` for more details), and fuzzy matching (see
  `Complete::Common::OPT_FUZZY` for more details).
  
  Will sort the resulting completion list, so you don't have to presort the array.
  
  _
      args => {
          %arg_word,
          array       => {
              schema => ['array*'=>{of=>'str*'}],
              req => 1,
          },
          exclude     => {
              schema => ['array*'],
          },
          replace_map => {
              schema => ['hash*', each_value=>['array*', of=>'str*']],
              description => <<'_',
  
  You can supply correction entries in this option. An example is when array if
  `['mount','unmount']` and `umount` is a popular "typo" for `unmount`. When
  someone already types `um` it cannot be completed into anything (even the
  current fuzzy mode will return *both* so it cannot complete immediately).
  
  One solution is to add replace_map `{'unmount'=>['umount']}`. This way, `umount`
  will be regarded the same as `unmount` and when user types `um` it can be
  completed unambiguously into `unmount`.
  
  _
              tags => ['experimental'],
          },
      },
      result_naked => 1,
      result => {
          schema => 'array',
      },
  };
  sub complete_array_elem {
      my %args  = @_;
  
      my $array     = $args{array} or die "Please specify array";
      my $word      = $args{word} // "";
  
      my $ci          = $Complete::Common::OPT_CI;
      my $map_case    = $Complete::Common::OPT_MAP_CASE;
      my $word_mode   = $Complete::Common::OPT_WORD_MODE;
      my $char_mode   = $Complete::Common::OPT_CHAR_MODE;
      my $fuzzy       = $Complete::Common::OPT_FUZZY;
  
      return [] unless @$array;
  
      my $wordn = $ci ? uc($word) : $word; $wordn =~ s/_/-/g if $map_case;
  
      my $excluden;
      if ($args{exclude}) {
          $excluden = {};
          for my $el (@{$args{exclude}}) {
              my $eln = $ci ? uc($el) : $el; $eln =~ s/_/-/g if $map_case;
              $excluden->{$eln} //= 1;
          }
      }
  
      my $rmapn;
      my $rev_rmapn; 
      if (my $rmap = $args{replace_map}) {
          $rmapn = {};
          $rev_rmapn = {};
          for my $k (keys %$rmap) {
              my $kn = $ci ? uc($k) : $k; $kn =~ s/_/-/g if $map_case;
              my @vn;
              for my $v (@{ $rmap->{$k} }) {
                  my $vn = $ci ? uc($v) : $v; $vn =~ s/_/-/g if $map_case;
                  push @vn, $vn;
                  $rev_rmapn->{$vn} //= $k;
              }
              $rmapn->{$kn} = \@vn;
          }
      }
  
      my @words; 
      my @arrayn; 
  
      for my $el (@$array) {
          my $eln = $ci ? uc($el) : $el; $eln =~ s/_/-/g if $map_case;
          next if $excluden && $excluden->{$eln};
          push @arrayn, $eln;
          push @words, $el if 0==index($eln, $wordn);
          if ($rmapn && $rmapn->{$eln}) {
              for my $vn (@{ $rmapn->{$eln} }) {
                  push @arrayn, $vn;
                  push @words, $vn if 0==index($vn, $wordn);
              }
          }
      }
  
      {
          last unless $word_mode && !@words;
          my @split_wordn = $wordn =~ /(\w+)/g;
          unshift @split_wordn, '' if $wordn =~ /\A\W/;
          last unless @split_wordn > 1;
          my $re = '\A';
          for my $i (0..$#split_wordn) {
              $re .= '(?:\W+\w+)*\W+' if $i;
              $re .= quotemeta($split_wordn[$i]).'\w*';
          }
          $re = qr/$re/;
  
          for my $i (0..$#{$array}) {
              my $match;
              {
                  if ($arrayn[$i] =~ $re) {
                      $match++;
                      last;
                  }
                  my $tmp = $array->[$i];
                  if ($tmp =~ s/([a-z0-9_])([A-Z])/$1-$2/g) {
                      $tmp = uc($tmp) if $ci; $tmp =~ s/_/-/g if $map_case; 
                      if ($tmp =~ $re) {
                          $match++;
                          last;
                      }
                  }
              }
              next unless $match;
              push @words, $array->[$i];
          }
      }
  
      if ($char_mode && !@words && length($wordn) && length($wordn) <= 7) {
          my $re = join(".*", map {quotemeta} split(//, $wordn));
          $re = qr/$re/;
          for my $i (0..$#arrayn) {
              push @words, $array->[$i] if $arrayn[$i] =~ $re;
          }
      }
  
      if ($fuzzy && !@words) {
          $code_editdist //= do {
              if (($ENV{COMPLETE_UTIL_LEVENSHTEIN} // '') eq 'xs') {
                  require Text::Levenshtein::XS;
                  \&Text::Levenshtein::XS::distance;
              } elsif (($ENV{COMPLETE_UTIL_LEVENSHTEIN} // '') eq 'pp') {
                  \&__editdist;
              } elsif (eval { require Text::Levenshtein::XS; 1 }) {
                  \&Text::Levenshtein::XS::distance;
              } else {
                  \&__editdist;
              }
          };
  
          my $factor = 1.3;
          my $x = -1;
          my $y = 1;
  
          my %editdists;
        ELEM:
          for my $i (0..$#{$array}) {
              my $eln = $arrayn[$i];
  
              for my $l (length($wordn)-$y .. length($wordn)+$y) {
                  next if $l <= 0;
                  my $chopped = substr($eln, 0, $l);
                  my $d;
                  unless (defined $editdists{$chopped}) {
                      $d = $code_editdist->($wordn, $chopped);
                      $editdists{$chopped} = $d;
                  } else {
                      $d = $editdists{$chopped};
                  }
                  my $maxd = __min(
                      __min(length($chopped), length($word))/$factor,
                      $fuzzy,
                  );
                  next unless $d <= $maxd;
                  push @words, $array->[$i];
                  next ELEM;
              }
          }
      }
  
      if ($rmapn && @words) {
          my @wordsn;
          for my $el (@words) {
              my $eln = $ci ? uc($el) : $el; $eln =~ s/_/-/g if $map_case;
              push @wordsn, $eln;
          }
          for my $i (0..$#words) {
              if (my $w = $rev_rmapn->{$wordsn[$i]}) {
                  $words[$i] = $w;
              }
          }
      }
  
      return $ci ? [sort {lc($a) cmp lc($b)} @words] : [sort @words];
  }
  
  $SPEC{complete_hash_key} = {
      v => 1.1,
      summary => 'Complete from hash keys',
      args => {
          %arg_word,
          hash      => { schema=>['hash*'=>{}], req=>1 },
      },
      result_naked => 1,
      result => {
          schema => 'array',
      },
  };
  sub complete_hash_key {
      my %args  = @_;
      my $hash      = $args{hash} or die "Please specify hash";
      my $word      = $args{word} // "";
  
      complete_array_elem(
          word=>$word, array=>[sort keys %$hash],
      );
  }
  
  $SPEC{combine_answers} = {
      v => 1.1,
      summary => 'Given two or more answers, combine them into one',
      description => <<'_',
  
  This function is useful if you want to provide a completion answer that is
  gathered from multiple sources. For example, say you are providing completion
  for the Perl tool `cpanm`, which accepts a filename (a tarball like `*.tar.gz`),
  a directory, or a module name. You can do something like this:
  
      combine_answers(
          complete_file(word=>$word, ci=>1),
          complete_module(word=>$word, ci=>1),
      );
  
  If a completion answer has a metadata `final` set to true, then that answer is
  used as the final answer without any combining with the other answers.
  
  _
      args => {
          answers => {
              schema => [
                  'array*' => {
                      of => ['any*', of=>['hash*','array*']], 
                      min_len => 1,
                  },
              ],
              req => 1,
              pos => 0,
              greedy => 1,
          },
      },
      args_as => 'array',
      result_naked => 1,
      result => {
          schema => 'hash*',
          description => <<'_',
  
  Return a combined completion answer. Words from each input answer will be
  combined, order preserved and duplicates removed. The other keys from each
  answer will be merged.
  
  _
      },
  };
  sub combine_answers {
      require List::Util;
  
      return undef unless @_;
      return $_[0] if @_ < 2;
  
      my $final = {words=>[]};
      my $encounter_hash;
      my $add_words = sub {
          my $words = shift;
          for my $entry (@$words) {
              push @{ $final->{words} }, $entry
                  unless List::Util::first(
                      sub {
                          (ref($entry) ? $entry->{word} : $entry)
                              eq
                                  (ref($_) ? $_->{word} : $_)
                              }, @{ $final->{words} }
                          );
          }
      };
  
    ANSWER:
      for my $ans (@_) {
          if (ref($ans) eq 'ARRAY') {
              $add_words->($ans);
          } elsif (ref($ans) eq 'HASH') {
              $encounter_hash++;
  
              if ($ans->{final}) {
                  $final = $ans;
                  last ANSWER;
              }
  
              $add_words->($ans->{words} // []);
              for (keys %$ans) {
                  if ($_ eq 'words') {
                      next;
                  } elsif ($_ eq 'static') {
                      if (exists $final->{$_}) {
                          $final->{$_} &&= $ans->{$_};
                      } else {
                          $final->{$_} = $ans->{$_};
                      }
                  } else {
                      $final->{$_} = $ans->{$_};
                  }
              }
          }
      }
  
      if ($final->{words}) {
          $final->{words} = [
              sort {
                  (ref($a) ? $a->{word} : $a) cmp
                      (ref($b) ? $b->{word} : $b);
              }
                  @{ $final->{words} }];
      }
  
      $encounter_hash ? $final : $final->{words};
  }
  
  1;
  
  __END__
  
COMPLETE_UTIL

$fatpacked{"Complete/Zsh.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'COMPLETE_ZSH';
  package Complete::Zsh;
  
  our $DATE = '2015-09-09'; 
  our $VERSION = '0.02'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         parse_cmdline
                         format_completion
                 );
  
  require Complete::Bash;
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Completion module for zsh shell',
  };
  
  $SPEC{parse_cmdline} = {
      v => 1.1,
      summary => 'Parse shell command-line for processing by completion routines',
      description => <<'_',
  
  This function converts COMP_LINE (str) (which can be supplied by zsh from `read
  -l`) and COMP_POINT (int) (which can be supplied by zsh from `read -ln`) into
  COMP_WORDS (array) and COMP_CWORD (int), like what bash supplies to shell
  functions. Currently implemented using `Complete::Bash`'s `parse_cmdline`.
  
  _
      args_as => 'array',
      args => {
          cmdline => {
              summary => 'Command-line, defaults to COMP_LINE environment',
              schema => 'str*',
              pos => 0,
          },
      },
      result => {
          schema => ['array*', len=>2],
          description => <<'_',
  
  Return a 2-element array: `[$words, $cword]`. `$words` is array of str,
  equivalent to `COMP_WORDS` provided by bash to shell functions. `$cword` is an
  integer, equivalent to `COMP_CWORD` provided by bash to shell functions. The
  word to be completed is at `$words->[$cword]`.
  
  Note that COMP_LINE includes the command name. If you want the command-line
  arguments only (like in `@ARGV`), you need to strip the first element from
  `$words` and reduce `$cword` by 1.
  
  _
      },
      result_naked => 1,
  };
  sub parse_cmdline {
      my ($line) = @_;
  
      $line //= $ENV{COMP_LINE};
      Complete::Bash::parse_cmdline($line, length($line));
  }
  
  $SPEC{format_completion} = {
      v => 1.1,
      summary => 'Format completion for output (for shell)',
      description => <<'_',
  
  zsh accepts completion reply in the form of one entry per line to STDOUT.
  Currently the formatting is done using `Complete::Bash`'s `format_completion`.
  
  _
      args_as => 'array',
      args => {
          completion => {
              summary => 'Completion answer structure',
              description => <<'_',
  
  Either an array or hash, as described in `Complete`.
  
  _
              schema=>['any*' => of => ['hash*', 'array*']],
              req=>1,
              pos=>0,
          },
      },
      result => {
          summary => 'Formatted string (or array, if `as` key is set to `array`)',
          schema => ['any*' => of => ['str*', 'array*']],
      },
      result_naked => 1,
  };
  sub format_completion {
      Complete::Bash::format_completion(@_);
  }
  
  1;
  
  __END__
  
COMPLETE_ZSH

$fatpacked{"Config/IOD/Base.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'CONFIG_IOD_BASE';
  package Config::IOD::Base;
  
  our $DATE = '2015-09-08'; 
  our $VERSION = '0.19'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use constant +{
      COL_V_ENCODING => 0, 
      COL_V_WS1 => 1,
      COL_V_VALUE => 2,
      COL_V_WS2 => 3,
      COL_V_COMMENT_CHAR => 4,
      COL_V_COMMENT => 5,
  };
  
  sub new {
      my ($class, %attrs) = @_;
      $attrs{default_section} //= 'GLOBAL';
      $attrs{allow_bang_only} //= 1;
      $attrs{allow_duplicate_key} //= 1;
      $attrs{enable_encoding} //= 1;
      $attrs{enable_quoting}  //= 1;
      $attrs{enable_bracket}  //= 1;
      $attrs{enable_brace}    //= 1;
      $attrs{enable_expr}     //= 0;
      $attrs{ignore_unknown_directive} //= 0;
      bless \%attrs, $class;
  }
  
  sub _parse_command_line {
      my ($self, $str) = @_;
  
      $str =~ s/\A\s+//ms;
      $str =~ s/\s+\z//ms;
  
      my @argv;
      my $buf;
      my $escaped;
      my $double_quoted;
      my $single_quoted;
  
      for my $char (split //, $str) {
          if ($escaped) {
              $buf .= $char;
              $escaped = undef;
              next;
          }
  
          if ($char eq '\\') {
              if ($single_quoted) {
                  $buf .= $char;
              }
              else {
                  $escaped = 1;
              }
              next;
          }
  
          if ($char =~ /\s/) {
              if ($single_quoted || $double_quoted) {
                  $buf .= $char;
              }
              else {
                  push @argv, $buf if defined $buf;
                  undef $buf;
              }
              next;
          }
  
          if ($char eq '"') {
              if ($single_quoted) {
                  $buf .= $char;
                  next;
              }
              $double_quoted = !$double_quoted;
              next;
          }
  
          if ($char eq "'") {
              if ($double_quoted) {
                  $buf .= $char;
                  next;
              }
              $single_quoted = !$single_quoted;
              next;
          }
  
          $buf .= $char;
      }
      push @argv, $buf if defined $buf;
  
      if ($escaped || $single_quoted || $double_quoted) {
          return undef;
      }
  
      \@argv;
  }
  
  sub _parse_raw_value {
      no warnings; 
  
      my ($self, $val, $needs_res) = @_;
  
      if ($val =~ /\A!/ && $self->{enable_encoding}) {
  
          $val =~ s/!(\w+)(\s+)// or return ("Invalid syntax in encoded value");
          my ($enc, $ws1) = ($1, $2);
  
          $enc = "json" if $enc eq 'j';
          $enc = "hex"  if $enc eq 'h';
          $enc = "expr" if $enc eq 'e';
  
          if ($self->{allow_encodings}) {
              return ("Encoding '$enc' is not in ".
                          "allow_encodings list")
                  unless $enc ~~ @{$self->{allow_encodings}};
          }
          if ($self->{disallow_encodings}) {
              return ("Encoding '$enc' is in ".
                          "disallow_encodings list")
                  if $enc ~~ @{$self->{disallow_encodings}};
          }
  
          if ($enc eq 'json') {
              $val =~ /\A
                       (".*"|\[.*\]|\{.*\}|\S+)
                       (\s*)
                       (?: ([;#])(.*) )?
                       \z/x or return ("Invalid syntax in JSON-encoded value");
              my $res = [
                  "!$enc", 
                  $ws1, 
                  $1, 
                  $2, 
                  $3, 
                  $4, 
              ] if $needs_res;
              my $decode_res = $self->_decode_json($val);
              return ($decode_res->[1]) unless $decode_res->[0] == 200;
              return (undef, $res, $decode_res->[2]);
          } elsif ($enc eq 'hex') {
              $val =~ /\A
                       ([0-9A-Fa-f]*)
                       (\s*)
                       (?: ([;#])(.*) )?
                       \z/x or return ("Invalid syntax in hex-encoded value");
              my $res = [
                  "!$enc", 
                  $ws1, 
                  $1, 
                  $2, 
                  $3, 
                  $4, 
              ] if $needs_res;
              my $decode_res = $self->_decode_hex($1);
              return ($decode_res->[1]) unless $decode_res->[0] == 200;
              return (undef, $res, $decode_res->[2]);
          } elsif ($enc eq 'base64') {
              $val =~ m!\A
                        ([A-Za-z0-9+/]*=*)
                        (\s*)
                        (?: ([;#])(.*) )?
                        \z!x or return ("Invalid syntax in base64-encoded value");
              my $res = [
                  "!$enc", 
                  $ws1, 
                  $1, 
                  $2, 
                  $3, 
                  $4, 
              ] if $needs_res;
              my $decode_res = $self->_decode_base64($1);
              return ($decode_res->[1]) unless $decode_res->[0] == 200;
              return (undef, $res, $decode_res->[2]);
          } elsif ($enc eq 'expr') {
              return ("expr is not allowed (enable_expr=0)")
                  unless $self->{enable_expr};
              $val =~ m!\A
                        ((?:[^#;])+?)
                        (\s*)
                        (?: ([;#])(.*) )?
                        \z!x or return ("Invalid syntax in expr-encoded value");
              my $res = [
                  "!$enc", 
                  $ws1, 
                  $1, 
                  $2, 
                  $3, 
                  $4, 
              ] if $needs_res;
              my $decode_res = $self->_decode_expr($1);
              return ($decode_res->[1]) unless $decode_res->[0] == 200;
              return (undef, $res, $decode_res->[2]);
          } else {
              return ("unknown encoding '$enc'");
          }
  
      } elsif ($val =~ /\A"/ && $self->{enable_quoting}) {
  
          $val =~ /\A
                   "( (?:
                           \\\\ | # backslash
                           \\.  | # escaped something
                           [^"\\]+ # non-doublequote or non-backslash
                       )* )"
                   (\s*)
                   (?: ([;#])(.*) )?
                   \z/x or return ("Invalid syntax in quoted string value");
          my $res = [
              '"', 
              '', 
              $1, 
              $2, 
              $3, 
              $4, 
          ] if $needs_res;
          my $decode_res = $self->_decode_json(qq("$1"));
          return ($decode_res->[1]) unless $decode_res->[0] == 200;
          return (undef, $res, $decode_res->[2]);
  
      } elsif ($val =~ /\A\[/ && $self->{enable_bracket}) {
  
          $val =~ /\A
                   \[(.*)\]
                   (?:
                       (\s*)
                       ([#;])(.*)
                   )?
                   \z/x or return ("Invalid syntax in bracketed array value");
          my $res = [
              '[', 
              '', 
              $1, 
              $2, 
              $3, 
              $4, 
          ] if $needs_res;
          my $decode_res = $self->_decode_json("[$1]");
          return ($decode_res->[1]) unless $decode_res->[0] == 200;
          return (undef, $res, $decode_res->[2]);
  
      } elsif ($val =~ /\A\{/ && $self->{enable_brace}) {
  
          $val =~ /\A
                   \{(.*)\}
                   (?:
                       (\s*)
                       ([#;])(.*)
                   )?
                   \z/x or return ("Invalid syntax in braced hash value");
          my $res = [
              '{', 
              '', 
              $1, 
              $2, 
              $3, 
              $4, 
          ] if $needs_res;
          my $decode_res = $self->_decode_json("{$1}");
          return ($decode_res->[1]) unless $decode_res->[0] == 200;
          return (undef, $res, $decode_res->[2]);
  
      } else {
  
          $val =~ /\A
                   (.*?)
                   (\s*)
                   (?: ([#;])(.*) )?
                   \z/x or return ("Invalid syntax in value"); 
          my $res = [
              '', 
              '', 
              $1, 
              $2, 
              $3, 
              $4, 
          ] if $needs_res;
          return (undef, $res, $1);
  
      }
  }
  
  sub _decode_json {
      my ($self, $val) = @_;
      state $json = do {
          require JSON;
          JSON->new->allow_nonref;
      };
      my $res;
      eval { $res = $json->decode($val) };
      if ($@) {
          return [500, "Invalid JSON: $@"];
      } else {
          return [200, "OK", $res];
      }
  }
  
  sub _decode_hex {
      my ($self, $val) = @_;
      [200, "OK", pack("H*", $val)];
  }
  
  sub _decode_base64 {
      my ($self, $val) = @_;
      require MIME::Base64;
      [200, "OK", MIME::Base64::decode_base64($val)];
  }
  
  sub _decode_expr {
      require Config::IOD::Expr;
  
      my ($self, $val) = @_;
      no strict 'refs';
      local *{"Config::IOD::Expr::val"} = sub {
          my $arg = shift;
          if ($arg =~ /(.+)\.(.+)/) {
              return $self->{_res}{$1}{$2};
          } else {
              return $self->{_res}{ $self->{_cur_section} }{$arg};
          }
      };
      Config::IOD::Expr::_parse_expr($val);
  }
  
  sub _err {
      my ($self, $msg) = @_;
      die join(
          "",
          @{ $self->{_include_stack} } ? "$self->{_include_stack}[0] " : "",
          "line $self->{_linum}: ",
          $msg
      );
  }
  
  sub _push_include_stack {
      require Cwd;
  
      my ($self, $path) = @_;
  
      if (@{ $self->{_include_stack} }) {
          require File::Spec;
          my ($vol, $dir, $file) =
              File::Spec->splitpath($self->{_include_stack}[-1]);
          $path = File::Spec->rel2abs($path, File::Spec->catpath($vol, $dir));
      }
  
      my $abs_path = Cwd::abs_path($path) or return [400, "Invalid path name"];
      return [409, "Recursive", $abs_path]
          if grep { $_ eq $abs_path } @{ $self->{_include_stack} };
      push @{ $self->{_include_stack} }, $abs_path;
      return [200, "OK", $abs_path];
  }
  
  sub _pop_include_stack {
      my $self = shift;
  
      die "BUG: Overpopped _pop_include_stack"
          unless @{$self->{_include_stack}};
      pop @{ $self->{_include_stack} };
  }
  
  sub _init_read {
      my $self = shift;
  
      $self->{_include_stack} = [];
  }
  
  sub _read_file {
      my ($self, $filename) = @_;
      open my $fh, "<", $filename
          or die "Can't open file '$filename': $!";
      binmode($fh, ":utf8");
      local $/;
      return ~~<$fh>;
  }
  
  sub read_file {
      my ($self, $filename) = @_;
      $self->_init_read;
      my $res = $self->_push_include_stack($filename);
      die "Can't read '$filename': $res->[1]" unless $res->[0] == 200;
      $res =
          $self->_read_string($self->_read_file($filename));
      $self->_pop_include_stack;
      $res;
  }
  
  sub read_string {
      my ($self, $str) = @_;
      $self->_init_read;
      $self->_read_string($str);
  }
  
  1;
  
  __END__
  
CONFIG_IOD_BASE

$fatpacked{"Config/IOD/Expr.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'CONFIG_IOD_EXPR';
  package Config::IOD::Expr;
  
  our $DATE = '2015-09-08'; 
  our $VERSION = '0.19'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  my $EXPR_RE = qr{
  
  (?&ANSWER)
  
  (?(DEFINE)
  
  (?<ANSWER>    (?&ADD))
  (?<ADD>       (?&MULT)   | (?&MULT)  (?: \s* ([+.-]) \s* (?&MULT)  )+)
  (?<MULT>      (?&UNARY)  | (?&UNARY) (?: \s* ([*/x%]) \s* (?&UNARY))+)
  (?<UNARY>     (?&POWER)  | [!~+-] (?&POWER))
  (?<POWER>     (?&TERM)   | (?&TERM) (?: \s* \*\* \s* (?&TERM))+)
  
  (?<TERM>
      (?&NUM)
    | (?&STR_SINGLE)
    | (?&STR_DOUBLE)
    | undef
    | (?&FUNC)
    | \( \s* ((?&ANSWER)) \s* \)
  )
  
  (?<FUNC> val \s* \( (?&TERM) \))
  
  (?<NUM>
      (
       -?
       (?: 0 | [1-9]\d* )
       (?: \. \d+ )?
       (?: [eE] [-+]? \d+ )?
      )
  )
  
  (?<STR_SINGLE>
      (
       '
       (?:
           [^\\']+
         |
           \\ ['\\]
         |
           \\
       )*
       '
      )
  )
  
  (?<STR_DOUBLE>
      (
       "
       (?:
           [^\\"]+
         |
           \\ ["'\\\$tnrfbae]
  # octal, hex, wide hex
       )*
       "
      )
  )
  
  ) # DEFINE
  
  }msx;
  
  sub _parse_expr {
      my $str = shift;
  
      return [400, 'Not a valid expr'] unless $str =~ m{\A$EXPR_RE\z}o;
      my $res = eval $str;
      return [500, "Died when evaluating expr: $@"] if $@;
      [200, "OK", $res];
  }
  
  1;
  
  __END__
  
CONFIG_IOD_EXPR

$fatpacked{"Config/IOD/Reader.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'CONFIG_IOD_READER';
  package Config::IOD::Reader;
  
  our $DATE = '2015-09-08'; 
  our $VERSION = '0.19'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use parent qw(Config::IOD::Base);
  
  sub _merge {
      my ($self, $section) = @_;
  
      my $res = $self->{_res};
      for my $msect (@{ $self->{_merge} }) {
          if ($msect eq $section) {
              next;
          }
          if (!exists($res->{$msect})) {
              local $self->{_linum} = $self->{_linum}-1;
              $self->_err("Can't merge section '$msect' to '$section': ".
                              "Section '$msect' not seen yet");
          }
          for my $k (keys %{ $res->{$msect} }) {
              $res->{$section}{$k} //= $res->{$msect}{$k};
          }
      }
  }
  
  sub _init_read {
      my $self = shift;
  
      $self->SUPER::_init_read;
      $self->{_res} = {};
      $self->{_merge} = undef;
      $self->{_num_seen_section_lines} = 0;
      $self->{_cur_section} = $self->{default_section};
      $self->{_arrayified} = {};
  }
  
  sub _read_string {
      my ($self, $str) = @_;
  
      my $res = $self->{_res};
      my $cur_section = $self->{_cur_section};
  
      my $directive_re = $self->{allow_bang_only} ?
          qr/^;?\s*!\s*(\w+)\s*/ :
          qr/^;\s*!\s*(\w+)\s*/;
  
      my @lines = split /^/, $str;
      local $self->{_linum} = 0;
    LINE:
      for my $line (@lines) {
          $self->{_linum}++;
  
          if ($line !~ /\S/) {
              next LINE;
          }
  
          if ($line =~ s/$directive_re//) {
              my $directive = $1;
              if ($self->{allow_directives}) {
                  $self->_err("Directive '$directive' is not in ".
                                  "allow_directives list")
                      unless grep { $_ eq $directive }
                          @{$self->{allow_directives}};
              }
              if ($self->{disallow_directives}) {
                  $self->_err("Directive '$directive' is in ".
                                  "disallow_directives list")
                      if grep { $_ eq $directive }
                          @{$self->{disallow_directives}};
              }
              my $args = $self->_parse_command_line($line);
              if (!defined($args)) {
                  $self->_err("Invalid arguments syntax '$line'");
              }
              if ($directive eq 'include') {
                  my $path;
                  if (! @$args) {
                      $self->_err("Missing filename to include");
                  } elsif (@$args > 1) {
                      $self->_err("Extraneous arguments");
                  } else {
                      $path = $args->[0];
                  }
                  my $res = $self->_push_include_stack($path);
                  if ($res->[0] != 200) {
                      $self->_err("Can't include '$path': $res->[1]");
                  }
                  $path = $res->[2];
                  $self->_read_string($self->_read_file($path));
                  $self->_pop_include_stack;
              } elsif ($directive eq 'merge') {
                  $self->{_merge} = @$args ? $args : undef;
              } elsif ($directive eq 'noop') {
              } else {
                  if ($self->{ignore_unknown_directive}) {
                      next LINE;
                  } else {
                      $self->_err("Unknown directive '$directive'");
                  }
              }
              next LINE;
          }
  
          if ($line =~ /^\s*[;#]/) {
              next LINE;
          }
  
          if ($line =~ /^\s*\[\s*(.+?)\s*\](?: \s*[;#].*)?/) {
              my $prev_section = $self->{_cur_section};
              $self->{_cur_section} = $cur_section = $1;
              $res->{$cur_section} //= {};
              $self->{_num_seen_section_lines}++;
  
              if ($self->{_merge} && $self->{_num_seen_section_lines} > 1) {
                  $self->_merge($prev_section);
              }
  
              next LINE;
          }
  
          if ($line =~ /^\s*([^=]+?)\s*=\s*(.*)/) {
              my $key = $1;
              my $val = $2;
  
              if ($val =~ /\A["!\\[\{]/) {
                  my ($err, $parse_res, $decoded_val) = $self->_parse_raw_value($val);
                  $self->_err("Invalid value: " . $err) if $err;
                  $val = $decoded_val;
              } else {
                  $val =~ s/\s*[#;].*//; 
              }
  
              if (exists $res->{$cur_section}{$key}) {
                  if (!$self->{allow_duplicate_key}) {
                      $self->_err("Duplicate key: $key (section $cur_section)");
                  } elsif ($self->{_arrayified}{$cur_section}{$key}++) {
                      push @{ $res->{$cur_section}{$key} }, $val;
                  } else {
                      $res->{$cur_section}{$key} = [
                          $res->{$cur_section}{$key}, $val];
                  }
              } else {
                  $res->{$cur_section}{$key} = $val;
              }
  
              next LINE;
          }
  
          $self->_err("Invalid syntax");
      }
  
      if ($self->{_merge} && $self->{_num_seen_section_lines} > 1) {
          $self->_merge($cur_section);
      }
  
      $res;
  }
  
  1;
  
  __END__
  
CONFIG_IOD_READER

$fatpacked{"Data/Check/Structure.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_CHECK_STRUCTURE';
  package Data::Check::Structure;
  
  our $DATE = '2014-07-14'; 
  our $VERSION = '0.03'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         is_aoa
                         is_aoaos
                         is_aoh
                         is_aohos
                         is_aos
                         is_hoa
                         is_hoaos
                         is_hoh
                         is_hohos
                         is_hos
                 );
  
  sub is_aos {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'ARRAY';
      for my $i (0..@$data-1) {
          last if defined($max) && $i >= $max;
          return 0 if ref($data->[$i]);
      }
      1;
  }
  
  sub is_aoa {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'ARRAY';
      for my $i (0..@$data-1) {
          last if defined($max) && $i >= $max;
          return 0 unless ref($data->[$i]) eq 'ARRAY';
      }
      1;
  }
  
  sub is_aoaos {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'ARRAY';
      my $aos_opts = {max=>$max};
      for my $i (0..@$data-1) {
          last if defined($max) && $i >= $max;
          return 0 unless is_aos($data->[$i], $aos_opts);
      }
      1;
  }
  
  sub is_aoh {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'ARRAY';
      for my $i (0..@$data-1) {
          last if defined($max) && $i >= $max;
          return 0 unless ref($data->[$i]) eq 'HASH';
      }
      1;
  }
  
  sub is_aohos {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'ARRAY';
      my $hos_opts = {max=>$max};
      for my $i (0..@$data-1) {
          last if defined($max) && $i >= $max;
          return 0 unless is_hos($data->[$i], $hos_opts);
      }
      1;
  }
  
  sub is_hos {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'HASH';
      my $i = 0;
      for my $k (keys %$data) {
          last if defined($max) && ++$i >= $max;
          return 0 if ref($data->{$k});
      }
      1;
  }
  
  sub is_hoa {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'HASH';
      my $i = 0;
      for my $k (keys %$data) {
          last if defined($max) && ++$i >= $max;
          return 0 unless ref($data->{$k}) eq 'ARRAY';
      }
      1;
  }
  
  sub is_hoaos {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'HASH';
      my $i = 0;
      for my $k (keys %$data) {
          last if defined($max) && ++$i >= $max;
          return 0 unless is_aos($data->{$k});
      }
      1;
  }
  
  sub is_hoh {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'HASH';
      my $i = 0;
      for my $k (keys %$data) {
          last if defined($max) && ++$i >= $max;
          return 0 unless ref($data->{$k}) eq 'HASH';
      }
      1;
  }
  
  sub is_hohos {
      my ($data, $opts) = @_;
      $opts //= {};
      my $max = $opts->{max};
  
      return 0 unless ref($data) eq 'HASH';
      my $i = 0;
      for my $k (keys %$data) {
          last if defined($max) && ++$i >= $max;
          return 0 unless is_hos($data->{$k});
      }
      1;
  }
  
  1;
  
  __END__
  
DATA_CHECK_STRUCTURE

$fatpacked{"Data/Clean/Base.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_CLEAN_BASE';
  package Data::Clean::Base;
  
  our $DATE = '2015-06-10'; 
  our $VERSION = '0.28'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Log::Any::IfLOG '$log';
  
  use Function::Fallback::CoreOrPP qw(clone);
  use Scalar::Util qw();
  
  sub new {
      my ($class, %opts) = @_;
      my $self = bless {opts=>\%opts}, $class;
      $log->tracef("Cleanser options: %s", \%opts);
      $self->_generate_cleanser_code;
      $self;
  }
  
  sub command_call_method {
      my ($self, $args) = @_;
      my $mn = $args->[0];
      die "Invalid method name syntax" unless $mn =~ /\A\w+\z/;
      return "{{var}} = {{var}}->$mn; \$ref = ref({{var}})";
  }
  
  sub command_call_func {
      my ($self, $args) = @_;
      my $fn = $args->[0];
      die "Invalid func name syntax" unless $fn =~ /\A\w+(::\w+)*\z/;
      return "{{var}} = $fn({{var}}); \$ref = ref({{var}})";
  }
  
  sub command_one_or_zero {
      my ($self, $args) = @_;
      return "{{var}} = {{var}} ? 1:0; \$ref = ''";
  }
  
  sub command_deref_scalar {
      my ($self, $args) = @_;
      return '{{var}} = ${ {{var}} }; $ref = ref({{var}})';
  }
  
  sub command_stringify {
      my ($self, $args) = @_;
      return '{{var}} = "{{var}}"';
  }
  
  sub command_replace_with_ref {
      my ($self, $args) = @_;
      return '{{var}} = $ref; $ref = ""';
  }
  
  sub command_replace_with_str {
      require String::PerlQuote;
  
      my ($self, $args) = @_;
      return "{{var}} = ".String::PerlQuote::double_quote($args->[0]).'; $ref=""';
  }
  
  sub command_unbless {
      my ($self, $args) = @_;
  
  
      my $acme_damn_available = eval { require Acme::Damn; 1 } ? 1:0;
      return join(
          "",
          "if (!\$Data::Clean::Base::_clone && $acme_damn_available) { ",
          "{{var}} = Acme::Damn::damn({{var}}) ",
          "} else { ",
          "{{var}} = Function::Fallback::CoreOrPP::_unbless_fallback({{var}}) } ",
          "\$ref = ref({{var}})",
      );
  }
  
  sub command_clone {
      my $clone_func;
      eval { require Data::Clone };
      if ($@) {
          require Clone::PP;
          $clone_func = "Clone::PP::clone";
      } else {
          $clone_func = "Data::Clone::clone";
      }
  
      my ($self, $args) = @_;
      my $limit = $args->[0] // 1;
      return join(
          "",
          "if (++\$ctr_circ <= $limit) { ",
          "{{var}} = $clone_func({{var}}); redo ",
          "} else { ",
          "{{var}} = 'CIRCULAR' } ",
          "\$ref = ref({{var}})",
      );
  }
  
  sub command_die {
      my ($self, $args) = @_;
      return "die";
  }
  
  sub _generate_cleanser_code {
      my $self = shift;
      my $opts = $self->{opts};
  
      my (@code, @stmts_ary, @stmts_hash, @stmts_main);
  
      my $n = 0;
      my $add_stmt = sub {
          my $which = shift;
          if ($which eq 'if' || $which eq 'new_if') {
              my ($cond0, $act0) = @_;
              for ([\@stmts_ary, '$e', 'ary'],
                   [\@stmts_hash, '$h->{$k}', 'hash'],
                   [\@stmts_main, '$_', 'main']) {
                  my $act  = $act0 ; $act  =~ s/\Q{{var}}\E/$_->[1]/g;
                  my $cond = $cond0; $cond =~ s/\Q{{var}}\E/$_->[1]/g;
                  push @{ $_->[0] }, "    ".($n && $which ne 'new_if' ? "els":"")."if ($cond) { $act }\n";
              }
              $n++;
          } else {
              my ($stmt0) = @_;
              for ([\@stmts_ary, '$e', 'ary'],
                   [\@stmts_hash, '$h->{$k}', 'hash'],
                   [\@stmts_main, '$_', 'main']) {
                  my $stmt = $stmt0; $stmt =~ s/\Q{{var}}\E/$_->[1]/g;
                  push @{ $_->[0] }, "    $stmt;\n";
              }
          }
      };
      my $add_if = sub {
          $add_stmt->('if', @_);
      };
      my $add_new_if = sub {
          $add_stmt->('new_if', @_);
      };
      my $add_if_ref = sub {
          my ($ref, $act0) = @_;
          $add_if->("\$ref eq '$ref'", $act0);
      };
      my $add_new_if_ref = sub {
          my ($ref, $act0) = @_;
          $add_new_if->("\$ref eq '$ref'", $act0);
      };
  
      for my $on (grep {/\A\w*(::\w+)*\z/} sort keys %$opts) {
          my $o = $opts->{$on};
          next unless $o;
          my $meth = "command_$o->[0]";
          die "Can't handle command $o->[0] for option '$on'" unless $self->can($meth);
          my @args = @$o; shift @args;
          my $act = $self->$meth(\@args);
          $add_if_ref->($on, $act);
      }
  
      for my $p ([-obj => 'Scalar::Util::blessed({{var}})']) {
          my $o = $opts->{$p->[0]};
          next unless $o;
          my $meth = "command_$o->[0]";
          die "Can't handle command $o->[0] for option '$p->[0]'" unless $self->can($meth);
          my @args = @$o; shift @args;
          $add_if->($p->[1], $self->$meth(\@args));
      }
  
      my $circ = $opts->{-circular};
      if ($circ) {
          my $meth = "command_$circ->[0]";
          die "Can't handle command $circ->[0] for option '-circular'" unless $self->can($meth);
          my @args = @$circ; shift @args;
          my $act = $self->$meth(\@args);
          $add_new_if->('$ref && $refs{ {{var}} }++', $act);
      }
  
      $add_new_if_ref->("ARRAY", '$process_array->({{var}})');
      $add_if_ref->("HASH" , '$process_hash->({{var}})');
  
      for my $p ([-ref => '$ref']) {
          my $o = $opts->{$p->[0]};
          next unless $o;
          my $meth = "command_$o->[0]";
          die "Can't handle command $o->[0] for option '$p->[0]'" unless $self->can($meth);
          my @args = @$o; shift @args;
          $add_if->($p->[1], $self->$meth(\@args));
      }
  
      push @code, 'sub {'."\n";
      push @code, 'my $data = shift;'."\n";
      push @code, 'state %refs;'."\n" if $circ;
      push @code, 'state $ctr_circ;'."\n" if $circ;
      push @code, 'state $process_array;'."\n";
      push @code, 'state $process_hash;'."\n";
      push @code, 'if (!$process_array) { $process_array = sub { my $a = shift; for my $e (@$a) { my $ref=ref($e);'."\n".join("", @stmts_ary).'} } }'."\n";
      push @code, 'if (!$process_hash) { $process_hash = sub { my $h = shift; for my $k (keys %$h) { my $ref=ref($h->{$k});'."\n".join("", @stmts_hash).'} } }'."\n";
      push @code, '%refs = (); $ctr_circ=0;'."\n" if $circ;
      push @code, 'for ($data) { my $ref=ref($_);'."\n".join("", @stmts_main).'}'."\n";
      push @code, '$data'."\n";
      push @code, '}'."\n";
  
      my $code = join("", @code).";";
  
      if ($ENV{LOG_CLEANSER_CODE} && $log->is_trace) {
          require String::LineNumber;
          $log->tracef("Cleanser code:\n%s",
                       $ENV{LINENUM} // 1 ?
                           String::LineNumber::linenum($code) : $code);
      }
      eval "\$self->{code} = $code";
      die "Can't generate code: $@" if $@;
      $self->{src} = $code;
  }
  
  sub clean_in_place {
      my ($self, $data) = @_;
  
      $self->{code}->($data);
  }
  
  sub clone_and_clean {
      my ($self, $data) = @_;
      my $clone = clone($data);
      local $Data::Clean::Base::_clone = 1;
      $self->clean_in_place($clone);
  }
  
  1;
  
  __END__
  
DATA_CLEAN_BASE

$fatpacked{"Data/Clean/FromJSON.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_CLEAN_FROMJSON';
  package Data::Clean::FromJSON;
  
  our $DATE = '2015-06-10'; 
  our $VERSION = '0.28'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use parent qw(Data::Clean::Base);
  
  sub new {
      my ($class, %opts) = @_;
      $opts{"JSON::XS::Boolean"} //= ['one_or_zero'];
      $opts{"JSON::PP::Boolean"} //= ['one_or_zero'];
      $class->SUPER::new(%opts);
  }
  
  sub get_cleanser {
      my $class = shift;
      state $singleton = $class->new;
      $singleton;
  }
  
  1;
  
  __END__
  
DATA_CLEAN_FROMJSON

$fatpacked{"Data/Clean/JSON.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_CLEAN_JSON';
  package Data::Clean::JSON;
  
  our $DATE = '2015-06-10'; 
  our $VERSION = '0.28'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use parent qw(Data::Clean::Base);
  
  sub new {
      my ($class, %opts) = @_;
      $opts{DateTime}  //= [call_method => 'epoch'];
      $opts{'Time::Moment'} //= [call_method => 'epoch'];
      $opts{Regexp}    //= ['stringify'];
      $opts{SCALAR}    //= ['deref_scalar'];
      $opts{-ref}      //= ['replace_with_ref'];
      $opts{-circular} //= ['clone'];
      $opts{-obj}      //= ['unbless'];
      $class->SUPER::new(%opts);
  }
  
  sub get_cleanser {
      my $class = shift;
      state $singleton = $class->new;
      $singleton;
  }
  
  1;
  
  __END__
  
DATA_CLEAN_JSON

$fatpacked{"Data/Dmp.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_DMP';
  package Data::Dmp;
  
  our $DATE = '2015-12-27'; 
  our $VERSION = '0.14'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Scalar::Util qw(looks_like_number blessed reftype refaddr);
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT = qw(dd dmp);
  
  our %_seen_refaddrs;
  our %_subscripts;
  our @_fixups;
  
  our $OPT_PERL_VERSION = "5.010";
  our $OPT_REMOVE_PRAGMAS = 0;
  
  my %esc = (
      "\a" => "\\a",
      "\b" => "\\b",
      "\t" => "\\t",
      "\n" => "\\n",
      "\f" => "\\f",
      "\r" => "\\r",
      "\e" => "\\e",
  );
  
  sub _double_quote {
      local($_) = $_[0];
  
      s/([\\\"\@\$])/\\$1/g;
      return qq("$_") unless /[^\040-\176]/;  
  
      s/([\a\b\t\n\f\r\e])/$esc{$1}/g;
  
      s/([\0-\037])(?!\d)/sprintf('\\%o',ord($1))/eg;
  
      s/([\0-\037\177-\377])/sprintf('\\x%02X',ord($1))/eg;
      s/([^\040-\176])/sprintf('\\x{%X}',ord($1))/eg;
  
      return qq("$_");
  }
  
  sub _dump_code {
      my $code = shift;
  
      state $deparse = do {
          require B::Deparse;
          B::Deparse->new("-l"); 
      };
  
      my $res = $deparse->coderef2text($code);
  
      my ($res_before_first_line, $res_after_first_line) =
          $res =~ /(.+?)^(#line .+)/ms;
  
      if ($OPT_REMOVE_PRAGMAS) {
          $res_before_first_line = "{";
      } elsif ($OPT_PERL_VERSION < 5.016) {
          $res_before_first_line =~ s/no feature ':all';/no feature;/m;
      }
      $res_after_first_line =~ s/^#line .+//gm;
  
      $res = "sub" . $res_before_first_line . $res_after_first_line;
      $res =~ s/^\s+//gm;
      $res =~ s/\n+//g;
      $res =~ s/;\}\z/}/;
      $res;
  }
  
  sub _dump {
      my ($val, $subscript) = @_;
  
      my $ref = ref($val);
      if ($ref eq '') {
          if (!defined($val)) {
              return "undef";
          } elsif (looks_like_number($val)) {
              return $val;
          } else {
              return _double_quote($val);
          }
      }
      my $refaddr = refaddr($val);
      $_subscripts{$refaddr} //= $subscript;
      if ($_seen_refaddrs{$refaddr}++) {
          push @_fixups, "\$a->$subscript=\$a",
              ($_subscripts{$refaddr} ? "->$_subscripts{$refaddr}" : ""), ";";
          return "'fix'";
      }
  
      my $class;
  
      if ($ref eq 'Regexp' || $ref eq 'REGEXP') {
          require Regexp::Stringify;
          return Regexp::Stringify::stringify_regexp(
              regexp=>$val, with_qr=>1, plver=>$OPT_PERL_VERSION);
      }
  
      if (blessed $val) {
          $class = $ref;
          $ref = reftype($val);
      }
  
      my $res;
      if ($ref eq 'ARRAY') {
          $res = "[";
          my $i = 0;
          for (@$val) {
              $res .= "," if $i;
              $res .= _dump($_, "$subscript\[$i]");
              $i++;
          }
          $res .= "]";
      } elsif ($ref eq 'HASH') {
          $res = "{";
          my $i = 0;
          for (sort keys %$val) {
              $res .= "," if $i++;
              my $k = /\W/ ? _double_quote($_) : $_;
              my $v = _dump($val->{$_}, "$subscript\{$k}");
              $res .= "$k=>$v";
          }
          $res .= "}";
      } elsif ($ref eq 'SCALAR') {
          $res = "\\"._dump($$val, $subscript);
      } elsif ($ref eq 'REF') {
          $res = "\\"._dump($$val, $subscript);
      } elsif ($ref eq 'CODE') {
          $res = _dump_code($val);
      } else {
          die "Sorry, I can't dump $val (ref=$ref) yet";
      }
  
      $res = "bless($res,"._double_quote($class).")" if defined($class);
      $res;
  }
  
  our $_is_dd;
  sub _dd_or_dmp {
      local %_seen_refaddrs;
      local %_subscripts;
      local @_fixups;
  
      my $res;
      if (@_ > 1) {
          $res = "(" . join(",", map {_dump($_, '')} @_) . ")";
      } else {
          $res = _dump($_[0], '');
      }
      if (@_fixups) {
          $res = "do{my\$a=$res;" . join("", @_fixups) . "\$a}";
      }
  
      if ($_is_dd) {
          say $res;
          return @_;
      } else {
          return $res;
      }
  }
  
  sub dd { local $_is_dd=1; _dd_or_dmp(@_) } 
  sub dmp { goto &_dd_or_dmp }
  
  1;
  
  __END__
  
DATA_DMP

$fatpacked{"Data/Dump.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_DUMP';
  package Data::Dump;
  
  use strict;
  use vars qw(@EXPORT @EXPORT_OK $VERSION $DEBUG);
  use subs qq(dump);
  
  require Exporter;
  *import = \&Exporter::import;
  @EXPORT = qw(dd ddx);
  @EXPORT_OK = qw(dump pp dumpf quote);
  
  $VERSION = "1.23";
  $DEBUG = 0;
  
  use overload ();
  use vars qw(%seen %refcnt @dump @fixup %require $TRY_BASE64 @FILTERS $INDENT);
  
  $TRY_BASE64 = 50 unless defined $TRY_BASE64;
  $INDENT = "  " unless defined $INDENT;
  
  sub dump
  {
      local %seen;
      local %refcnt;
      local %require;
      local @fixup;
  
      require Data::Dump::FilterContext if @FILTERS;
  
      my $name = "a";
      my @dump;
  
      for my $v (@_) {
  	my $val = _dump($v, $name, [], tied($v));
  	push(@dump, [$name, $val]);
      } continue {
  	$name++;
      }
  
      my $out = "";
      if (%require) {
  	for (sort keys %require) {
  	    $out .= "require $_;\n";
  	}
      }
      if (%refcnt) {
  	for (@dump) {
  	    my $name = $_->[0];
  	    if ($refcnt{$name}) {
  		$out .= "my \$$name = $_->[1];\n";
  		undef $_->[1];
  	    }
  	}
  	for (@fixup) {
  	    $out .= "$_;\n";
  	}
      }
  
      my $paren = (@dump != 1);
      $out .= "(" if $paren;
      $out .= format_list($paren, undef,
  			map {defined($_->[1]) ? $_->[1] : "\$".$_->[0]}
  			    @dump
  		       );
      $out .= ")" if $paren;
  
      if (%refcnt || %require) {
  	$out .= ";\n";
  	$out =~ s/^/$INDENT/gm;
  	$out = "do {\n$out}";
      }
  
      print STDERR "$out\n" unless defined wantarray;
      $out;
  }
  
  *pp = \&dump;
  
  sub dd {
      print dump(@_), "\n";
  }
  
  sub ddx {
      my(undef, $file, $line) = caller;
      $file =~ s,.*[\\/],,;
      my $out = "$file:$line: " . dump(@_) . "\n";
      $out =~ s/^/# /gm;
      print $out;
  }
  
  sub dumpf {
      require Data::Dump::Filtered;
      goto &Data::Dump::Filtered::dump_filtered;
  }
  
  sub _dump
  {
      my $ref  = ref $_[0];
      my $rval = $ref ? $_[0] : \$_[0];
      shift;
  
      my($name, $idx, $dont_remember, $pclass, $pidx) = @_;
  
      my($class, $type, $id);
      my $strval = overload::StrVal($rval);
      if ((my $i = rindex($strval, "=")) >= 0) {
  	$class = substr($strval, 0, $i);
  	$strval = substr($strval, $i+1);
      }
      if ((my $i = index($strval, "(0x")) >= 0) {
  	$type = substr($strval, 0, $i);
  	$id = substr($strval, $i + 2, -1);
      }
      else {
  	die "Can't parse " . overload::StrVal($rval);
      }
      if ($] < 5.008 && $type eq "SCALAR") {
  	$type = "REF" if $ref eq "REF";
      }
      warn "\$$name(@$idx) $class $type $id ($ref)" if $DEBUG;
  
      my $out;
      my $comment;
      my $hide_keys;
      if (@FILTERS) {
  	my $pself = "";
  	$pself = fullname("self", [@$idx[$pidx..(@$idx - 1)]]) if $pclass;
  	my $ctx = Data::Dump::FilterContext->new($rval, $class, $type, $ref, $pclass, $pidx, $idx);
  	my @bless;
  	for my $filter (@FILTERS) {
  	    if (my $f = $filter->($ctx, $rval)) {
  		if (my $v = $f->{object}) {
  		    local @FILTERS;
  		    $out = _dump($v, $name, $idx, 1);
  		    $dont_remember++;
  		}
  		if (defined(my $c = $f->{bless})) {
  		    push(@bless, $c);
  		}
  		if (my $c = $f->{comment}) {
  		    $comment = $c;
  		}
  		if (defined(my $c = $f->{dump})) {
  		    $out = $c;
  		    $dont_remember++;
  		}
  		if (my $h = $f->{hide_keys}) {
  		    if (ref($h) eq "ARRAY") {
  			$hide_keys = sub {
  			    for my $k (@$h) {
  				return 1 if $k eq $_[0];
  			    }
  			    return 0;
  			};
  		    }
  		}
  	    }
  	}
  	push(@bless, "") if defined($out) && !@bless;
  	if (@bless) {
  	    $class = shift(@bless);
  	    warn "More than one filter callback tried to bless object" if @bless;
  	}
      }
  
      unless ($dont_remember) {
  	if (my $s = $seen{$id}) {
  	    my($sname, $sidx) = @$s;
  	    $refcnt{$sname}++;
  	    my $sref = fullname($sname, $sidx,
  				($ref && $type eq "SCALAR"));
  	    warn "SEEN: [\$$name(@$idx)] => [\$$sname(@$sidx)] ($ref,$sref)" if $DEBUG;
  	    return $sref unless $sname eq $name;
  	    $refcnt{$name}++;
  	    push(@fixup, fullname($name,$idx)." = $sref");
  	    return "do{my \$fix}" if @$idx && $idx->[-1] eq '$';
  	    return "'fix'";
  	}
  	$seen{$id} = [$name, $idx];
      }
  
      if ($class) {
  	$pclass = $class;
  	$pidx = @$idx;
      }
  
      if (defined $out) {
      }
      elsif ($type eq "SCALAR" || $type eq "REF" || $type eq "REGEXP") {
  	if ($ref) {
  	    if ($class && $class eq "Regexp") {
  		my $v = "$rval";
  
  		my $mod = "";
  		if ($v =~ /^\(\?\^?([msix-]*):([\x00-\xFF]*)\)\z/) {
  		    $mod = $1;
  		    $v = $2;
  		    $mod =~ s/-.*//;
  		}
  
  		my $sep = '/';
  		my $sep_count = ($v =~ tr/\///);
  		if ($sep_count) {
  		    for ('|', ',', ':', '#') {
  			my $c = eval "\$v =~ tr/\Q$_\E//";
  			if ($c < $sep_count) {
  			    $sep = $_;
  			    $sep_count = $c;
  			    last if $sep_count == 0;
  			}
  		    }
  		}
  		$v =~ s/\Q$sep\E/\\$sep/g;
  
  		$out = "qr$sep$v$sep$mod";
  		undef($class);
  	    }
  	    else {
  		delete $seen{$id} if $type eq "SCALAR";  
  		my $val = _dump($$rval, $name, [@$idx, "\$"], 0, $pclass, $pidx);
  		$out = $class ? "do{\\(my \$o = $val)}" : "\\$val";
  	    }
  	} else {
  	    if (!defined $$rval) {
  		$out = "undef";
  	    }
  	    elsif (do {no warnings 'numeric'; $$rval + 0 eq $$rval}) {
  		$out = $$rval;
  	    }
  	    else {
  		$out = str($$rval);
  	    }
  	    if ($class && !@$idx) {
  		$refcnt{$name}++;
  		my $obj = fullname($name, $idx);
  		my $cl  = quote($class);
  		push(@fixup, "bless \\$obj, $cl");
  	    }
  	}
      }
      elsif ($type eq "GLOB") {
  	if ($ref) {
  	    delete $seen{$id};
  	    my $val = _dump($$rval, $name, [@$idx, "*"], 0, $pclass, $pidx);
  	    $out = "\\$val";
  	    if ($out =~ /^\\\*Symbol::/) {
  		$require{Symbol}++;
  		$out = "Symbol::gensym()";
  	    }
  	} else {
  	    my $val = "$$rval";
  	    $out = "$$rval";
  
  	    for my $k (qw(SCALAR ARRAY HASH)) {
  		my $gval = *$$rval{$k};
  		next unless defined $gval;
  		next if $k eq "SCALAR" && ! defined $$gval;  
  		my $f = scalar @fixup;
  		push(@fixup, "RESERVED");  
  		$gval = _dump($gval, $name, [@$idx, "*{$k}"], 0, $pclass, $pidx);
  		$refcnt{$name}++;
  		my $gname = fullname($name, $idx);
  		$fixup[$f] = "$gname = $gval";  
  	    }
  	}
      }
      elsif ($type eq "ARRAY") {
  	my @vals;
  	my $tied = tied_str(tied(@$rval));
  	my $i = 0;
  	for my $v (@$rval) {
  	    push(@vals, _dump($v, $name, [@$idx, "[$i]"], $tied, $pclass, $pidx));
  	    $i++;
  	}
  	$out = "[" . format_list(1, $tied, @vals) . "]";
      }
      elsif ($type eq "HASH") {
  	my(@keys, @vals);
  	my $tied = tied_str(tied(%$rval));
  
  	my $kstat_max = 0;
  	my $kstat_sum = 0;
  	my $kstat_sum2 = 0;
  
  	my @orig_keys = keys %$rval;
  	if ($hide_keys) {
  	    @orig_keys = grep !$hide_keys->($_), @orig_keys;
  	}
  	my $text_keys = 0;
  	for (@orig_keys) {
  	    $text_keys++, last unless /^[-+]?(?:0|[1-9]\d*)(?:\.\d+)?\z/;
  	}
  
  	if ($text_keys) {
  	    @orig_keys = sort { lc($a) cmp lc($b) } @orig_keys;
  	}
  	else {
  	    @orig_keys = sort { $a <=> $b } @orig_keys;
  	}
  
  	my $quote;
  	for my $key (@orig_keys) {
  	    next if $key =~ /^-?[a-zA-Z_]\w*\z/;
  	    next if $key =~ /^-?[1-9]\d{0,8}\z/;
  	    $quote++;
  	    last;
  	}
  
  	for my $key (@orig_keys) {
  	    my $val = \$rval->{$key};  
  	    $key = quote($key) if $quote;
  	    $kstat_max = length($key) if length($key) > $kstat_max;
  	    $kstat_sum += length($key);
  	    $kstat_sum2 += length($key)*length($key);
  
  	    push(@keys, $key);
  	    push(@vals, _dump($$val, $name, [@$idx, "{$key}"], $tied, $pclass, $pidx));
  	}
  	my $nl = "";
  	my $klen_pad = 0;
  	my $tmp = "@keys @vals";
  	if (length($tmp) > 60 || $tmp =~ /\n/ || $tied) {
  	    $nl = "\n";
  
  	    if ($kstat_max < 4) {
  		$klen_pad = $kstat_max;
  	    }
  	    elsif (@keys >= 2) {
  		my $n = @keys;
  		my $avg = $kstat_sum/$n;
  		my $stddev = sqrt(($kstat_sum2 - $n * $avg * $avg) / ($n - 1));
  
  		if ($stddev / $kstat_max < 0.25) {
  		    $klen_pad = $kstat_max;
  		}
  		if ($DEBUG) {
  		    push(@keys, "__S");
  		    push(@vals, sprintf("%.2f (%d/%.1f/%.1f)",
  					$stddev / $kstat_max,
  					$kstat_max, $avg, $stddev));
  		}
  	    }
  	}
  	$out = "{$nl";
  	$out .= "$INDENT# $tied$nl" if $tied;
  	while (@keys) {
  	    my $key = shift @keys;
  	    my $val = shift @vals;
  	    my $vpad = $INDENT . (" " x ($klen_pad ? $klen_pad + 4 : 0));
  	    $val =~ s/\n/\n$vpad/gm;
  	    my $kpad = $nl ? $INDENT : " ";
  	    $key .= " " x ($klen_pad - length($key)) if $nl && $klen_pad > length($key);
  	    $out .= "$kpad$key => $val,$nl";
  	}
  	$out =~ s/,$/ / unless $nl;
  	$out .= "}";
      }
      elsif ($type eq "CODE") {
  	$out = 'sub { ... }';
      }
      elsif ($type eq "VSTRING") {
          $out = sprintf +($ref ? '\v%vd' : 'v%vd'), $$rval;
      }
      else {
  	warn "Can't handle $type data";
  	$out = "'#$type#'";
      }
  
      if ($class && $ref) {
  	$out = "bless($out, " . quote($class) . ")";
      }
      if ($comment) {
  	$comment =~ s/^/# /gm;
  	$comment .= "\n" unless $comment =~ /\n\z/;
  	$comment =~ s/^#[ \t]+\n/\n/;
  	$out = "$comment$out";
      }
      return $out;
  }
  
  sub tied_str {
      my $tied = shift;
      if ($tied) {
  	if (my $tied_ref = ref($tied)) {
  	    $tied = "tied $tied_ref";
  	}
  	else {
  	    $tied = "tied";
  	}
      }
      return $tied;
  }
  
  sub fullname
  {
      my($name, $idx, $ref) = @_;
      substr($name, 0, 0) = "\$";
  
      my @i = @$idx;  
      if ($ref && @i && $i[0] eq "\$") {
  	shift(@i);  
  	$ref = 0;
      }
      while (@i && $i[0] eq "\$") {
  	shift @i;
  	$name = "\$$name";
      }
  
      my $last_was_index;
      for my $i (@i) {
  	if ($i eq "*" || $i eq "\$") {
  	    $last_was_index = 0;
  	    $name = "$i\{$name}";
  	} elsif ($i =~ s/^\*//) {
  	    $name .= $i;
  	    $last_was_index++;
  	} else {
  	    $name .= "->" unless $last_was_index++;
  	    $name .= $i;
  	}
      }
      $name = "\\$name" if $ref;
      $name;
  }
  
  sub format_list
  {
      my $paren = shift;
      my $comment = shift;
      my $indent_lim = $paren ? 0 : 1;
      if (@_ > 3) {
  	my $i = 0;
  	while ($i < @_) {
  	    my $j = $i + 1;
  	    my $v = $_[$i];
  	    while ($j < @_) {
  		if ($v eq "0" || $v =~ /^-?[1-9]\d{0,9}\z/) {
  		    $v++;
  		}
  		elsif ($v =~ /^"([A-Za-z]{1,3}\d*)"\z/) {
  		    $v = $1;
  		    $v++;
  		    $v = qq("$v");
  		}
  		else {
  		    last;
  		}
  		last if $_[$j] ne $v;
  		$j++;
  	    }
  	    if ($j - $i > 3) {
  		splice(@_, $i, $j - $i, "$_[$i] .. $_[$j-1]");
  	    }
  	    $i++;
  	}
      }
      my $tmp = "@_";
      if ($comment || (@_ > $indent_lim && (length($tmp) > 60 || $tmp =~ /\n/))) {
  	my @elem = @_;
  	for (@elem) { s/^/$INDENT/gm; }
  	return "\n" . ($comment ? "$INDENT# $comment\n" : "") .
                 join(",\n", @elem, "");
      } else {
  	return join(", ", @_);
      }
  }
  
  sub str {
    if (length($_[0]) > 20) {
        for ($_[0]) {
        if (/^(.)\1\1\1/s) {
            unless (/[^\Q$1\E]/) {
                my $base = quote($1);
                my $repeat = length;
                return "($base x $repeat)"
            }
        }
        if (length($_) < 16 * 1024 && /^(.{2,5}?)\1*\z/s) {
  	  my $base   = quote($1);
  	  my $repeat = length($_)/length($1);
  	  return "($base x $repeat)";
        }
        }
    }
  
    local $_ = &quote;
  
    if (length($_) > 40  && !/\\x\{/ && length($_) > (length($_[0]) * 2)) {
  
        if ($TRY_BASE64 && length($_[0]) > $TRY_BASE64 &&
  	  (defined &utf8::is_utf8 && !utf8::is_utf8($_[0])) &&
  	  eval { require MIME::Base64 })
        {
  	  $require{"MIME::Base64"}++;
  	  return "MIME::Base64::decode(\"" .
  	             MIME::Base64::encode($_[0],"") .
  		 "\")";
        }
        return "pack(\"H*\",\"" . unpack("H*", $_[0]) . "\")";
    }
  
    return $_;
  }
  
  my %esc = (
      "\a" => "\\a",
      "\b" => "\\b",
      "\t" => "\\t",
      "\n" => "\\n",
      "\f" => "\\f",
      "\r" => "\\r",
      "\e" => "\\e",
  );
  
  sub quote {
    local($_) = $_[0];
    s/([\\\"\@\$])/\\$1/g;
    return qq("$_") unless /[^\040-\176]/;  
  
    s/([\a\b\t\n\f\r\e])/$esc{$1}/g;
  
    s/([\0-\037])(?!\d)/sprintf('\\%o',ord($1))/eg;
  
    s/([\0-\037\177-\377])/sprintf('\\x%02X',ord($1))/eg;
    s/([^\040-\176])/sprintf('\\x{%X}',ord($1))/eg;
  
    return qq("$_");
  }
  
  1;
  
  __END__
  
DATA_DUMP

$fatpacked{"Data/Dump/FilterContext.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_DUMP_FILTERCONTEXT';
  package Data::Dump::FilterContext;
  
  sub new {
      my($class, $obj, $oclass, $type, $ref, $pclass, $pidx, $idx) = @_;
      return bless {
  	object => $obj,
  	class => $ref && $oclass,
  	reftype => $type,
  	is_ref => $ref,
  	pclass => $pclass,
  	pidx => $pidx,
  	idx => $idx,
      }, $class;
  }
  
  sub object_ref {
      my $self = shift;
      return $self->{object};
  }
  
  sub class {
      my $self = shift;
      return $self->{class} || "";
  }
  
  *is_blessed = \&class;
  
  sub reftype {
      my $self = shift;
      return $self->{reftype};
  }
  
  sub is_scalar {
      my $self = shift;
      return $self->{reftype} eq "SCALAR";
  }
  
  sub is_array {
      my $self = shift;
      return $self->{reftype} eq "ARRAY";
  }
  
  sub is_hash {
      my $self = shift;
      return $self->{reftype} eq "HASH";
  }
  
  sub is_code {
      my $self = shift;
      return $self->{reftype} eq "CODE";
  }
  
  sub is_ref {
      my $self = shift;
      return $self->{is_ref};
  }
  
  sub container_class {
      my $self = shift;
      return $self->{pclass} || "";
  }
  
  sub container_self {
      my $self = shift;
      return "" unless $self->{pclass};
      my $idx = $self->{idx};
      my $pidx = $self->{pidx};
      return Data::Dump::fullname("self", [@$idx[$pidx..(@$idx - 1)]]);
  }
  
  sub expr {
      my $self = shift;
      my $top = shift || "var";
      $top =~ s/^\$//; 
      my $idx = $self->{idx};
      return Data::Dump::fullname($top, $idx);
  }
  
  sub object_isa {
      my($self, $class) = @_;
      return $self->{class} && $self->{class}->isa($class);
  }
  
  sub container_isa {
      my($self, $class) = @_;
      return $self->{pclass} && $self->{pclass}->isa($class);
  }
  
  sub depth {
      my $self = shift;
      return scalar @{$self->{idx}};
  }
  
  1;
DATA_DUMP_FILTERCONTEXT

$fatpacked{"Data/Dump/Filtered.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_DUMP_FILTERED';
  package Data::Dump::Filtered;
  
  use Data::Dump ();
  use Carp ();
  
  use base 'Exporter';
  our @EXPORT_OK = qw(add_dump_filter remove_dump_filter dump_filtered);
  
  sub add_dump_filter {
      my $filter = shift;
      unless (ref($filter) eq "CODE") {
  	Carp::croak("add_dump_filter argument must be a code reference");
      }
      push(@Data::Dump::FILTERS, $filter);
      return $filter;
  }
  
  sub remove_dump_filter {
      my $filter = shift;
      @Data::Dump::FILTERS = grep $_ ne $filter, @Data::Dump::FILTERS;
  }
  
  sub dump_filtered {
      my $filter = pop;
      if (defined($filter) && ref($filter) ne "CODE") {
  	Carp::croak("Last argument to dump_filtered must be undef or a code reference");
      }
      local @Data::Dump::FILTERS = ($filter ? $filter : ());
      return &Data::Dump::dump;
  }
  
  1;
  
DATA_DUMP_FILTERED

$fatpacked{"Data/Dump/Trace.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_DUMP_TRACE';
  package Data::Dump::Trace;
  
  $VERSION = "0.02";
  
  
  use strict;
  
  use base 'Exporter';
  our @EXPORT_OK = qw(call mcall wrap autowrap trace);
  
  use Carp qw(croak);
  use overload ();
  
  my %obj_name;
  my %autowrap_class;
  my %name_count;
  
  sub autowrap {
      while (@_) {
          my $class = shift;
          my $info = shift;
          $info = { prefix => $info } unless ref($info);
          for ($info->{prefix}) {
              unless ($_) {
                  $_ = lc($class);
                  s/.*:://;
              }
              $_ = '$' . $_ unless /^\$/;
          }
          $autowrap_class{$class} = $info;
      }
  }
  
  sub wrap {
      my %arg = @_;
      my $name = $arg{name} || "func";
      my $func = $arg{func};
      my $proto = $arg{proto};
  
      return sub {
          call($name, $func, $proto, @_);
      } if $func;
  
      if (my $obj = $arg{obj}) {
          $name = '$' . $name unless $name =~ /^\$/;
          $obj_name{overload::StrVal($obj)} = $name;
          return bless {
              name => $name,
              obj => $obj,
              proto => $arg{proto},
          }, "Data::Dump::Trace::Wrapper";
      }
  
      croak("Either the 'func' or 'obj' option must be given");
  }
  
  sub trace {
      my($symbol, $prototype) = @_;
      no strict 'refs';
      no warnings 'redefine';
      *{$symbol} = wrap(name => $symbol, func => \&{$symbol}, proto => $prototype);
  }
  
  sub call {
      my $name = shift;
      my $func = shift;
      my $proto = shift;
      my $fmt = Data::Dump::Trace::Call->new($name, $proto, \@_);
      if (!defined wantarray) {
          $func->(@_);
          return $fmt->return_void(\@_);
      }
      elsif (wantarray) {
          return $fmt->return_list(\@_, $func->(@_));
      }
      else {
          return $fmt->return_scalar(\@_, scalar $func->(@_));
      }
  }
  
  sub mcall {
      my $o = shift;
      my $method = shift;
      my $proto = shift;
      return if $method eq "DESTROY" && !$o->can("DESTROY");
      my $oname = ref($o) ? $obj_name{overload::StrVal($o)} || "\$o" : $o;
      my $fmt = Data::Dump::Trace::Call->new("$oname->$method", $proto, \@_);
      if (!defined wantarray) {
          $o->$method(@_);
          return $fmt->return_void(\@_);
      }
      elsif (wantarray) {
          return $fmt->return_list(\@_, $o->$method(@_));
      }
      else {
          return $fmt->return_scalar(\@_, scalar $o->$method(@_));
      }
  }
  
  package Data::Dump::Trace::Wrapper;
  
  sub AUTOLOAD {
      my $self = shift;
      our $AUTOLOAD;
      my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
      Data::Dump::Trace::mcall($self->{obj}, $method, $self->{proto}{$method}, @_);
  }
  
  package Data::Dump::Trace::Call;
  
  use Term::ANSIColor ();
  use Data::Dump ();
  
  *_dump = \&Data::Dump::dump;
  
  our %COLOR = (
      name => "yellow",
      output => "cyan",
      error => "red",
      debug => "red",
  );
  
  %COLOR = () unless -t STDOUT;
  
  sub _dumpav {
      return "(" . _dump(@_) . ")" if @_ == 1;
      return _dump(@_);
  }
  
  sub _dumpkv {
      return _dumpav(@_) if @_ % 2;
      my %h = @_;
      my $str = _dump(\%h);
      $str =~ s/^\{/(/ && $str =~ s/\}\z/)/;
      return $str;
  }
  
  sub new {
      my($class, $name, $proto, $input_args) = @_;
      my $self = bless {
          name => $name,
          proto => $proto,
      }, $class;
      my $proto_arg = $self->proto_arg;
      if ($proto_arg =~ /o/) {
          for (@$input_args) {
              push(@{$self->{input_av}}, _dump($_));
          }
      }
      else {
          $self->{input} = $proto_arg eq "%" ? _dumpkv(@$input_args) : _dumpav(@$input_args);
      }
      return $self;
  }
  
  sub proto_arg {
      my $self = shift;
      my($arg, $ret) = split(/\s*=\s*/, $self->{proto} || "");
      $arg ||= '@';
      return $arg;
  }
  
  sub proto_ret {
      my $self = shift;
      my($arg, $ret) = split(/\s*=\s*/, $self->{proto} || "");
      $ret ||= '@';
      return $ret;
  }
  
  sub color {
      my($self, $category, $text) = @_;
      return $text unless $COLOR{$category};
      return Term::ANSIColor::colored($text, $COLOR{$category});
  }
  
  sub print_call {
      my $self = shift;
      my $outarg = shift;
      print $self->color("name", "$self->{name}");
      if (my $input = $self->{input}) {
          $input = "" if $input eq "()" && $self->{name} =~ /->/;
          print $self->color("input", $input);
      }
      else {
          my $proto_arg = $self->proto_arg;
          print "(";
          my $i = 0;
          for (@{$self->{input_av}}) {
              print ", " if $i;
              my $proto = substr($proto_arg, 0, 1, "");
              if ($proto ne "o") {
                  print $self->color("input", $_);
              }
              if ($proto eq "o" || $proto eq "O") {
                  print " = " if $proto eq "O";
                  print $self->color("output", _dump($outarg->[$i]));
              }
          }
          continue {
              $i++;
          }
          print ")";
      }
  }
  
  sub return_void {
      my $self = shift;
      my $arg = shift;
      $self->print_call($arg);
      print "\n";
      return;
  }
  
  sub return_scalar {
      my $self = shift;
      my $arg = shift;
      $self->print_call($arg);
      my $s = shift;
      my $name;
      my $proto_ret = $self->proto_ret;
      my $wrap = $autowrap_class{ref($s)};
      if ($proto_ret =~ /^\$\w+\z/ && ref($s) && ref($s) !~ /^(?:ARRAY|HASH|CODE|GLOB)\z/) {
          $name = $proto_ret;
      }
      else {
          $name = $wrap->{prefix} if $wrap;
      }
      if ($name) {
          $name .= $name_count{$name} if $name_count{$name}++;
          print " = ", $self->color("output", $name), "\n";
          $s = Data::Dump::Trace::wrap(name => $name, obj => $s, proto => $wrap->{proto});
      }
      else {
          print " = ", $self->color("output", _dump($s));
          if (!$s && $proto_ret =~ /!/ && $!) {
              print " ", $self->color("error", errno($!));
          }
          print "\n";
      }
      return $s;
  }
  
  sub return_list {
      my $self = shift;
      my $arg = shift;
      $self->print_call($arg);
      print " = ", $self->color("output", $self->proto_ret eq "%" ? _dumpkv(@_) : _dumpav(@_)), "\n";
      return @_;
  }
  
  sub errno {
      my $t = "";
      for (keys %!) {
          if ($!{$_}) {
              $t = $_;
              last;
          }
      }
      my $n = int($!);
      return "$t($n) $!";
  }
  
  1;
  
  __END__
  
DATA_DUMP_TRACE

$fatpacked{"Data/ModeMerge.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_MODEMERGE';
  package Data::ModeMerge;
  
  our $DATE = '2015-02-21'; 
  our $VERSION = '0.32'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT = qw(mode_merge);
  
  sub mode_merge {
      my ($l, $r, $config_vars) = @_;
      my $mm = __PACKAGE__->new(config => $config_vars);
      $mm->merge($l, $r);
  }
  
  has config => (is => "rw");
  
  has modes => (is => 'rw', default => sub { {} });
  
  has combine_rules => (is => 'rw');
  
  has path => (is => "rw", default => sub { [] });
  has errors => (is => "rw", default => sub { [] });
  has mem => (is => "rw", default => sub { {} }); 
  has cur_mem_key => (is => "rw"); 
  
  sub _dump {
      require Data::Dumper;
  
      my ($self, $var) = @_;
      Data::Dumper->new([$var])->Indent(0)->Terse(1)->Sortkeys(1)->Dump;
  }
  
  sub _in($$) {
      my ($self, $needle, $haystack) = @_;
      return 0 unless defined($needle);
      my $r1 = ref($needle);
      my $f1 = $r1 ? $self->_dump($needle) : undef;
      for (@$haystack) {
          my $r2 = ref($_);
          next if $r1 xor $r2;
          return 1 if  $r2 && $f1 eq $self->_dump($_);
          return 1 if !$r2 && $needle eq $_;
      }
      0;
  }
  
  sub BUILD {
      require Data::ModeMerge::Config;
  
      my ($self, $args) = @_;
  
      if ($self->config) {
          my $is_hashref = ref($self->config) eq 'HASH';
          die "config must be a hashref or a Data::ModeMerge::Config" unless
              $is_hashref || UNIVERSAL::isa($self->config, "Data::ModeMerge::Config");
          $self->config(Data::ModeMerge::Config->new(%{ $self->config })) if $is_hashref;
      } else {
          $self->config(Data::ModeMerge::Config->new);
      }
  
      for (qw(NORMAL KEEP ADD CONCAT SUBTRACT DELETE)) {
  	$self->register_mode($_);
      }
  
      if (!$self->combine_rules) {
          $self->combine_rules({
              'ADD+ADD'            => ['ADD'     , 'ADD'   ],
              'ADD+DELETE'         => ['DELETE'  , 'DELETE'],
              'ADD+NORMAL'         => ['NORMAL'  , 'NORMAL'],
              'ADD+SUBTRACT'       => ['SUBTRACT', 'ADD'   ],
  
              'CONCAT+CONCAT'      => ['CONCAT'  , 'CONCAT'],
              'CONCAT+DELETE'      => ['DELETE'  , 'DELETE'],
              'CONCAT+NORMAL'      => ['NORMAL'  , 'NORMAL'],
  
              'DELETE+ADD'         => ['NORMAL'  , 'ADD'     ],
              'DELETE+CONCAT'      => ['NORMAL'  , 'CONCAT'  ],
              'DELETE+DELETE'      => ['DELETE'  , 'DELETE'  ],
              'DELETE+KEEP'        => ['NORMAL'  , 'KEEP'    ],
              'DELETE+NORMAL'      => ['NORMAL'  , 'NORMAL'  ],
              'DELETE+SUBTRACT'    => ['NORMAL'  , 'SUBTRACT'],
  
              'KEEP+ADD'          => ['KEEP', 'KEEP'],
              'KEEP+CONCAT'       => ['KEEP', 'KEEP'],
              'KEEP+DELETE'       => ['KEEP', 'KEEP'],
              'KEEP+KEEP'         => ['KEEP', 'KEEP'],
              'KEEP+NORMAL'       => ['KEEP', 'KEEP'],
              'KEEP+SUBTRACT'     => ['KEEP', 'KEEP'],
  
              'NORMAL+ADD'        => ['ADD'     , 'NORMAL'],
              'NORMAL+CONCAT'     => ['CONCAT'  , 'NORMAL'],
              'NORMAL+DELETE'     => ['DELETE'  , 'NORMAL'],
              'NORMAL+KEEP'       => ['NORMAL'  , 'KEEP'  ],
              'NORMAL+NORMAL'     => ['NORMAL'  , 'NORMAL'],
              'NORMAL+SUBTRACT'   => ['SUBTRACT', 'NORMAL'],
  
              'SUBTRACT+ADD'      => ['SUBTRACT', 'SUBTRACT'],
              'SUBTRACT+DELETE'   => ['DELETE'  , 'DELETE'  ],
              'SUBTRACT+NORMAL'   => ['NORMAL'  , 'NORMAL'  ],
              'SUBTRACT+SUBTRACT' => ['ADD'     , 'SUBTRACT'],
          });
      }
  }
  
  sub push_error {
      my ($self, $errmsg) = @_;
      push @{ $self->errors }, [[@{ $self->path }], $errmsg];
      return;
  }
  
  sub register_mode {
      my ($self, $name0) = @_;
      my $obj;
      if (ref($name0)) {
          my $obj = $name0;
      } elsif ($name0 =~ /^\w+(::\w+)+$/) {
          eval "require $name0; \$obj = $name0->new";
          die "Can't load module $name0: $@" if $@;
      } elsif ($name0 =~ /^\w+$/) {
          my $modname = "Data::ModeMerge::Mode::$name0";
          eval "require $modname; \$obj = $modname->new";
          die "Can't load module $modname: $@" if $@;
      } else {
          die "Invalid mode name $name0";
      }
      my $name = $obj->name;
      die "Mode $name already registered" if $self->modes->{$name};
      $obj->merger($self);
      $self->modes->{$name} = $obj;
  }
  
  sub check_prefix {
      my ($self, $hash_key) = @_;
      die "Hash key not a string" if ref($hash_key);
      my $dis = $self->config->disable_modes;
      if (defined($dis) && ref($dis) ne 'ARRAY') {
          $self->push_error("Invalid config value `disable_modes`: must be an array");
          return;
      }
      for my $mh (sort { $b->precedence_level <=> $a->precedence_level }
                  grep { !$dis || !$self->_in($_->name, $dis) }
                  values %{ $self->modes }) {
          if ($mh->check_prefix($hash_key)) {
              return $mh->name;
          }
      }
      return;
  }
  
  sub check_prefix_on_hash {
      my ($self, $hash) = @_;
      die "Not a hash" unless ref($hash) eq 'HASH';
      my $res = 0;
      for (keys %$hash) {
  	do { $res++; last } if $self->check_prefix($_);
      }
      $res;
  }
  
  sub add_prefix {
      my ($self, $hash_key, $mode) = @_;
      die "Hash key not a string" if ref($hash_key);
      my $dis = $self->config->disable_modes;
      if (defined($dis) && ref($dis) ne 'ARRAY') {
          die "Invalid config value `disable_modes`: must be an array";
      }
      if ($dis && $self->_in($mode, $dis)) {
          $self->push_error("Can't add prefix for currently disabled mode `$mode`");
          return $hash_key;
      }
      my $mh = $self->modes->{$mode} or die "Unknown mode: $mode";
      $mh->add_prefix($hash_key);
  }
  
  sub remove_prefix {
      my ($self, $hash_key) = @_;
      die "Hash key not a string" if ref($hash_key);
      my $dis = $self->config->disable_modes;
      if (defined($dis) && ref($dis) ne 'ARRAY') {
          die "Invalid config value `disable_modes`: must be an array";
      }
      for my $mh (sort { $b->precedence_level <=> $a->precedence_level }
                  grep { !$dis || !$self->_in($_->name, $dis) }
                  values %{ $self->modes }) {
          if ($mh->check_prefix($hash_key)) {
              my $r = $mh->remove_prefix($hash_key);
              if (wantarray) { return ($r, $mh->name) }
              else           { return $r }
          }
      }
      if (wantarray) { return ($hash_key, $self->config->default_mode) }
      else           { return $hash_key }
  }
  
  sub remove_prefix_on_hash {
      my ($self, $hash) = @_;
      die "Not a hash" unless ref($hash) eq 'HASH';
      for (keys %$hash) {
  	my $old = $_;
  	$_ = $self->remove_prefix($_);
  	next unless $old ne $_;
  	die "Conflict when removing prefix on hash: $old -> $_ but $_ already exists"
  	    if exists $hash->{$_};
  	$hash->{$_} = $hash->{$old};
  	delete $hash->{$old};
      }
      $hash;
  }
  
  sub merge {
      my ($self, $l, $r) = @_;
      $self->path([]);
      $self->errors([]);
      $self->mem({});
      $self->cur_mem_key(undef);
      my ($key, $res, $backup) = $self->_merge(undef, $l, $r);
      {
          success => !@{ $self->errors },
          error   => (@{ $self->errors } ?
                      join(", ",
                           map { sprintf("/%s: %s", join("/", @{ $_->[0] }), $_->[1]) }
                               @{ $self->errors }) : ''),
          result  => $res,
          backup  => $backup,
      };
  }
  
  sub _process_todo {
      my ($self) = @_;
      if ($self->cur_mem_key) {
          for my $mk (keys %{ $self->mem }) {
              my $res = $self->mem->{$mk}{res};
              if (defined($res) && @{ $self->mem->{$mk}{todo} }) {
                  for (@{  $self->mem->{$mk}{todo} }) {
                      $_->(@$res);
                      return if @{ $self->errors };
                  }
                  $self->mem->{$mk}{todo} = [];
              }
          }
      }
  }
  
  sub _merge {
      my ($self, $key, $l, $r, $mode) = @_;
      my $c = $self->config;
      $mode //= $c->default_mode;
  
      my $mh = $self->modes->{$mode};
      die "Can't find handler for mode $mode" unless $mh;
  
      my $rl = ref($l);
      my $rr = ref($r);
      my $tl = $rl eq 'HASH' ? 'HASH' : $rl eq 'ARRAY' ? 'ARRAY' : $rl eq 'CODE' ? 'CODE' : !$rl ? 'SCALAR' : '';
      my $tr = $rr eq 'HASH' ? 'HASH' : $rr eq 'ARRAY' ? 'ARRAY' : $rr eq 'CODE' ? 'CODE' : !$rr ? 'SCALAR' : '';
      if (!$tl) { $self->push_error("Unknown type in left side: $rl"); return }
      if (!$tr) { $self->push_error("Unknown type in right side: $rr"); return }
      if (!$c->allow_create_array && $tl ne 'ARRAY' && $tr eq 'ARRAY') {
          $self->push_error("Not allowed to create array"); return;
      }
      if (!$c->allow_create_hash && $tl ne 'HASH' && $tr eq 'HASH') {
          $self->push_error("Not allowed to create hash"); return;
      }
      if (!$c->allow_destroy_array && $tl eq 'ARRAY' && $tr ne 'ARRAY') {
          $self->push_error("Not allowed to destroy array"); return;
      }
      if (!$c->allow_destroy_hash && $tl eq 'HASH' && $tr ne 'HASH') {
          $self->push_error("Not allowed to destroy hash"); return;
      }
      my $meth = "merge_${tl}_${tr}";
      if (!$mh->can($meth)) { $self->push_error("No merge method found for $tl + $tr (mode $mode)"); return }
  
      my $memkey;
      if ($rl || $rr) {
          $memkey = sprintf "%s%s %s%s %s %s",
              (defined($l) ? ($rl ? 2 : 1) : 0),
              (defined($l) ? "$l" : ''),
              (defined($r) ? ($rr ? 2 : 1) : 0),
              (defined($r) ? "$r" : ''),
              $mode,
              $self->config;
      }
      if ($memkey) {
          if (exists $self->mem->{$memkey}) {
              $self->_process_todo;
              if (defined $self->mem->{$memkey}{res}) {
                  return @{ $self->mem->{$memkey}{res} };
              } else {
                  return ($key, undef, undef, 1);
              }
          } else {
              $self->mem->{$memkey} = {res=>undef, todo=>[]};
              $self->cur_mem_key($memkey);
              my ($newkey, $res, $backup) = $mh->$meth($key, $l, $r);
              $self->mem->{$memkey}{res} = [$newkey, $res, $backup];
              $self->_process_todo;
              return ($newkey, $res, $backup);
          }
      } else {
          $self->_process_todo;
          return $mh->$meth($key, $l, $r);
      }
  }
  
  sub _path_is_included {
      my ($self, $p1, $p2) = @_;
      my $res = 1;
      for my $i (0..@$p1-1) {
          do { $res = 0; last } if !defined($p2->[$i]) || $p1->[$i] ne $p2->[$i];
      }
      $res;
  }
  
  1;
  
  __END__
  
DATA_MODEMERGE

$fatpacked{"Data/ModeMerge/Config.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_MODEMERGE_CONFIG';
  package Data::ModeMerge::Config;
  
  our $DATE = '2015-02-21'; 
  our $VERSION = '0.32'; 
  
  use 5.010;
  use Mo qw(build default);
  
  has recurse_hash          => (is => 'rw', default => sub{1});
  has recurse_array         => (is => 'rw', default => sub{0});
  has parse_prefix          => (is => 'rw', default => sub{1});
  has wanted_path           => (is => 'rw');
  has default_mode          => (is => 'rw', default => sub{'NORMAL'});
  has disable_modes         => (is => 'rw');
  has allow_create_array    => (is => 'rw', default => sub{1});
  has allow_create_hash     => (is => 'rw', default => sub{1});
  has allow_destroy_array   => (is => 'rw', default => sub{1});
  has allow_destroy_hash    => (is => 'rw', default => sub{1});
  has exclude_parse         => (is => 'rw');
  has exclude_parse_regex   => (is => 'rw');
  has include_parse         => (is => 'rw');
  has include_parse_regex   => (is => 'rw');
  has exclude_merge         => (is => 'rw');
  has exclude_merge_regex   => (is => 'rw');
  has include_merge         => (is => 'rw');
  has include_merge_regex   => (is => 'rw');
  has set_prefix            => (is => 'rw');
  has readd_prefix          => (is => 'rw', default => sub{1});
  has premerge_pair_filter  => (is => 'rw');
  has options_key           => (is => 'rw', default => sub{''});
  has allow_override        => (is => 'rw');
  has disallow_override     => (is => 'rw');
  
  sub _config_config {
      state $a = [qw/
          wanted_path
          options_key
          allow_override
          disallow_override
                    /];
  }
  
  sub _config_ok {
      state $a = [qw/
          recurse_hash
          recurse_array
          parse_prefix
          default_mode
          disable_modes
          allow_create_array
          allow_create_hash
          allow_destroy_array
          allow_destroy_hash
          exclude_parse
          exclude_parse_regex
          include_parse
          include_parse_regex
          exclude_merge
          exclude_merge_regex
          include_merge
          include_merge_regex
          set_prefix
          readd_prefix
          premerge_pair_filter
                    /];
  }
  
  1;
  
  __END__
  
DATA_MODEMERGE_CONFIG

$fatpacked{"Data/ModeMerge/Mode/ADD.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_MODEMERGE_MODE_ADD';
  package Data::ModeMerge::Mode::ADD;
  
  our $DATE = '2015-02-21'; 
  our $VERSION = '0.32'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Mo qw(build default);
  extends 'Data::ModeMerge::Mode::NORMAL';
  
  sub name { 'ADD' }
  
  sub precedence_level { 3 }
  
  sub default_prefix { '+' }
  
  sub default_prefix_re { qr/^\+/ }
  
  sub merge_SCALAR_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, ( $l // 0 ) + $r);
  }
  
  sub merge_SCALAR_ARRAY {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't add scalar and array");
      return;
  }
  
  sub merge_SCALAR_HASH {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't add scalar and hash");
      return;
  }
  
  sub merge_ARRAY_SCALAR {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't add array and scalar");
      return;
  }
  
  sub merge_ARRAY_ARRAY {
      my ($self, $key, $l, $r) = @_;
      ($key, [ @$l, @$r ]);
  }
  
  sub merge_ARRAY_HASH {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't add array and hash");
      return;
  }
  
  sub merge_HASH_SCALAR {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't add hash and scalar");
      return;
  }
  
  sub merge_HASH_ARRAY {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't add hash and array");
      return;
  }
  
  1;
  
  __END__
  
DATA_MODEMERGE_MODE_ADD

$fatpacked{"Data/ModeMerge/Mode/Base.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_MODEMERGE_MODE_BASE';
  package Data::ModeMerge::Mode::Base;
  
  our $DATE = '2015-02-21'; 
  our $VERSION = '0.32'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  
  
  has merger => (is => 'rw');
  has prefix => (is => 'rw');
  has prefix_re => (is => 'rw');
  has check_prefix_sub => (is => 'rw');
  has add_prefix_sub => (is => 'rw');
  has remove_prefix_sub => (is => 'rw');
  
  sub name {
      die "Subclass must provide name()";
  }
  
  sub precedence_level {
      die "Subclass must provide precedence_level()";
  }
  
  sub default_prefix {
      die "Subclass must provide default_prefix()";
  }
  
  sub default_prefix_re {
      die "Subclass must provide default_prefix_re()";
  }
  
  sub BUILD {
      my ($self) = @_;
      $self->prefix($self->default_prefix);
      $self->prefix_re($self->default_prefix_re);
  }
  
  sub check_prefix {
      my ($self, $hash_key) = @_;
      if ($self->check_prefix_sub) {
          $self->check_prefix_sub->($hash_key);
      } else {
          $hash_key =~ $self->prefix_re;
      }
  }
  
  sub add_prefix {
      my ($self, $hash_key) = @_;
      if ($self->add_prefix_sub) {
          $self->add_prefix_sub->($hash_key);
      } else {
          $self->prefix . $hash_key;
      }
  }
  
  sub remove_prefix {
      my ($self, $hash_key) = @_;
      if ($self->remove_prefix_sub) {
          $self->remove_prefix_sub->($hash_key);
      } else {
          my $re = $self->prefix_re;
          $hash_key =~ s/$re//;
          $hash_key;
      }
  }
  
  sub merge_ARRAY_ARRAY {
      my ($self, $key, $l, $r) = @_;
      my $mm = $self->merger;
      my $c = $mm->config;
      return $self->merge_SCALAR_SCALAR($key, $l, $r) unless $c->recurse_array;
      return if $c->wanted_path && !$mm->_path_is_included($mm->path, $c->wanted_path);
  
      my @res;
      my @backup;
      my $la = @$l;
      my $lb = @$r;
      push @{ $mm->path }, -1;
      for my $i (0..($la > $lb ? $la : $lb)-1) {
          $mm->path->[-1] = $i;
          if ($i < $la && $i < $lb) {
              push @backup, $l->[$i];
              my ($subnewkey, $subres, $subbackup, $is_circular) = $mm->_merge($i, $l->[$i], $r->[$i], $c->default_mode);
              last if @{ $mm->errors };
              if ($is_circular) {
                  push @res, undef;
                  push @{ $mm->mem->{ $mm->cur_mem_key }{todo} }, sub {
                      my ($subnewkey, $subres, $subbackup) = @_;
                      $res[$i] = $subres;
                  }
              } else {
                  push @res, $subres;
              }
          } elsif ($i < $la) {
              push @res, $l->[$i];
          } else {
              push @res, $r->[$i];
          }
      }
      pop @{ $mm->path };
      ($key, \@res, \@backup);
  }
  
  sub _prefilter_hash {
      my ($self, $h, $desc, $sub) = @_;
      my $mm = $self->merger;
  
      if (ref($sub) ne 'CODE') {
          $mm->push_error("$desc failed: filter must be a coderef");
          return;
      }
  
      my $res = {};
      for (keys %$h) {
          my @r = $sub->($_, $h->{$_});
          while (my ($k, $v) = splice @r, 0, 2) {
              next unless defined $k;
              if (exists $res->{$k}) {
                  $mm->push_error("$desc failed; key conflict: ".
                                  "$_ -> $k, but key $k already exists");
                  return;
              }
              $res->{$k} = $v;
          }
      }
  
      $res;
  }
  
  sub _gen_left {
      my ($self, $l, $mode, $esub, $ep, $ip, $epr, $ipr) = @_;
      my $mm = $self->merger;
      my $c = $mm->config;
  
  
      if ($c->premerge_pair_filter) {
          $l = $self->_prefilter_hash($l, "premerge filter left hash",
                                      $c->premerge_pair_filter);
          return if @{ $mm->errors };
      }
  
      my $hl = {};
      if ($c->parse_prefix) {
          for (keys %$l) {
              my $do_parse = 1;
              $do_parse = 0 if $do_parse && $ep  &&  $mm->_in($_, $ep);
              $do_parse = 0 if $do_parse && $ip  && !$mm->_in($_, $ip);
              $do_parse = 0 if $do_parse && $epr &&  /$epr/;
              $do_parse = 0 if $do_parse && $ipr && !/$ipr/;
  
              if ($do_parse) {
                  my $old = $_;
                  my $m2;
                  ($_, $m2) = $mm->remove_prefix($_);
                  next if $esub && !$esub->($_);
                  if ($old ne $_ && exists($l->{$_})) {
                      $mm->push_error("Conflict when removing prefix on left-side ".
                                      "hash key: $old -> $_ but $_ already exists");
                      return;
                  }
                  $hl->{$_} = [$m2, $l->{$old}];
              } else {
                  next if $esub && !$esub->($_);
                  $hl->{$_} = [$mode, $l->{$_}];
              }
          }
      } else {
          for (keys %$l) {
              next if $esub && !$esub->($_);
              $hl->{$_} = [$mode, $l->{$_}];
          }
      }
  
      $hl;
  }
  
  sub _gen_right {
      my ($self, $r, $mode, $esub, $ep, $ip, $epr, $ipr) = @_;
      my $mm = $self->merger;
      my $c = $mm->config;
  
  
      if ($c->premerge_pair_filter) {
          $r = $self->_prefilter_hash($r, "premerge filter right hash",
                                      $c->premerge_pair_filter);
          return if @{ $mm->errors };
      }
  
      my $hr = {};
      if ($c->parse_prefix) {
          for (keys %$r) {
              my $do_parse = 1;
              $do_parse = 0 if $do_parse && $ep  &&  $mm->_in($_, $ep);
              $do_parse = 0 if $do_parse && $ip  && !$mm->_in($_, $ip);
              $do_parse = 0 if $do_parse && $epr &&  /$epr/;
              $do_parse = 0 if $do_parse && $ipr && !/$ipr/;
  
              if ($do_parse) {
                  my $old = $_;
                  my $m2;
                  ($_, $m2) = $mm->remove_prefix($_);
                  next if $esub && !$esub->($_);
                  if (exists $hr->{$_}{$m2}) {
                      $mm->push_error("Conflict when removing prefix on right-side ".
                                      "hash key: $old($m2) -> $_ ($m2) but $_ ($m2) ".
                                      "already exists");
                      return;
                  }
                  $hr->{$_}{$m2} = $r->{$old};
              } else {
                  next if $esub && !$esub->($_);
                  $hr->{$_} = {$mode => $r->{$_}};
              }
          }
      } else {
          for (keys %$r) {
              next if $esub && !$esub->($_);
              $hr->{$_} = {$mode => $r->{$_}}
          }
      }
      $hr;
  }
  
  sub _merge_gen {
      my ($self, $hl, $hr, $mode, $em, $im, $emr, $imr) = @_;
      my $mm = $self->merger;
      my $c = $mm->config;
  
  
      my $res = {};
      my $backup = {};
  
      my %k = map {$_=>1} keys(%$hl), keys(%$hr);
      push @{ $mm->path }, "";
    K:
      for my $k (keys %k) {
          my @o;
          $mm->path->[-1] = $k;
          my $do_merge = 1;
          $do_merge = 0 if $do_merge && $em  &&  $mm->_in($k, $em);
          $do_merge = 0 if $do_merge && $im  && !$mm->_in($k, $im);
          $do_merge = 0 if $do_merge && $emr && $k =~ /$emr/;
          $do_merge = 0 if $do_merge && $imr && $k !~ /$imr/;
  
          if (!$do_merge) {
              $res->{$k} = $hl->{$k} if $hl->{$k};
              next K;
          }
  
          $backup->{$k} = $hl->{$k}[1] if $hl->{$k} && $hr->{$k};
          if ($hl->{$k}) {
              push @o, $hl->{$k};
          }
          if ($hr->{$k}) {
              my %m = map {$_=>$mm->modes->{$_}->precedence_level} keys %{ $hr->{$k} };
              push @o, map { [$_, $hr->{$k}{$_}] } sort { $m{$b} <=> $m{$a} } keys %m;
          }
          my $final_mode;
          my $is_circular;
          my $v;
          for my $i (0..$#o) {
              if ($i == 0) {
                  my $mh = $mm->modes->{$o[$i][0]};
                  if (@o == 1 &&
                          (($hl->{$k} && $mh->can("merge_left_only")) ||
                           ($hr->{$k} && $mh->can("merge_right_only")))) {
                      my $meth = $hl->{$k} ? "merge_left_only" : "merge_right_only";
                      my ($subnewkey, $v, $subbackup, $is_circular, $newmode) = $mh->$meth($k, $o[$i][1]); 
                      next K unless defined($subnewkey);
                      $final_mode = $newmode;
                      $v = $res;
                  } else {
                      $final_mode = $o[$i][0];
                      $v = $o[$i][1];
                  }
              } else {
                  my $m = $mm->combine_rules->{"$final_mode+$o[$i][0]"}
                      or do {
                          $mm->push_error("Can't merge $final_mode + $o[$i][0]");
                          return;
                      };
                  my ($subnewkey, $subbackup);
                  ($subnewkey, $v, $subbackup, $is_circular) = $mm->_merge($k, $v, $o[$i][1], $m->[0]);
                  return if @{ $mm->errors };
                  if ($is_circular) {
                      if ($i < $#o) {
                          $mm->push_error("Can't handle circular at $i of $#o merges (mode $m->[0]): not the last merge");
                          return;
                      }
                      push @{ $mm->mem->{ $mm->cur_mem_key }{todo} }, sub {
                          my ($subnewkey, $subres, $subbackup) = @_;
                          my $final_mode = $m->[1];
                          $res->{$k} = [$m->[1], $subres];
                          if ($c->readd_prefix) {
                              $self->_readd_prefix($res, $k, $c->default_mode);
                          } else {
                              $res->{$k} = $res->{$k}[1];
                          }
                      };
                      delete $res->{$k};
                  }
                  next K unless defined $subnewkey;
                  $final_mode = $m->[1];
              }
          }
          $res->{$k} = [$final_mode, $v] unless $is_circular;
      }
      pop @{ $mm->path };
      ($res, $backup);
  }
  
  sub _readd_prefix {
      my ($self, $hh, $k, $defmode) = @_;
      my $mm = $self->merger;
      my $c = $mm->config;
  
      my $m = $hh->{$k}[0];
      if ($m eq $defmode) {
          $hh->{$k} = $hh->{$k}[1];
      } else {
          my $kp = $mm->modes->{$m}->add_prefix($k);
          if (exists $hh->{$kp}) {
              $mm->push_error("BUG: conflict when re-adding prefix after merge: $kp");
              return;
          }
          $hh->{$kp} = $hh->{$k}[1];
          delete $hh->{$k};
      }
  }
  
  sub merge_HASH_HASH {
      my ($self, $key, $l, $r, $mode) = @_;
      my $mm = $self->merger;
      my $c = $mm->config;
      $mode //= $c->default_mode;
  
      return $self->merge_SCALAR_SCALAR($key, $l, $r) unless $c->recurse_hash;
      return if $c->wanted_path && !$mm->_path_is_included($mm->path, $c->wanted_path);
  
      my $config_replaced;
      my $orig_c = $c;
      my $ok = $c->options_key;
      {
          last unless defined $ok;
  
          my $okl = $self->_gen_left ($l, $mode, sub {$_[0] eq $ok});
          return if @{ $mm->errors };
  
          my $okr = $self->_gen_right($r, $mode, sub {$_[0] eq $ok});
          return if @{ $mm->errors };
  
          push @{ $mm->path }, $ok;
          my ($res, $backup);
          {
              local $c->{readd_prefix} = 0;
              ($res, $backup) = $self->_merge_gen($okl, $okr, $mode);
          }
          pop @{ $mm->path };
          return if @{ $mm->errors };
  
  
          $res = $res->{$ok} ? $res->{$ok}[1] : undef;
          if (defined($res) && ref($res) ne 'HASH') {
              $mm->push_error("Invalid options key after merge: value must be hash");
              return;
          }
          last unless keys %$res;
          my $c2 = bless({ %$c }, ref($c));
  
          for (keys %$res) {
              if ($c->allow_override) {
                  my $re = $c->allow_override;
                  if (!/$re/) {
                      $mm->push_error("Configuration in options key `$_` not allowed by allow_override $re");
                      return;
                  }
              }
              if ($c->disallow_override) {
                  my $re = $c->disallow_override;
                  if (/$re/) {
                      $mm->push_error("Configuration in options key `$_` not allowed by disallow_override $re");
                      return;
                  }
              }
              if ($mm->_in($_, $c->_config_config)) {
                  $mm->push_error("Configuration not allowed in options key: $_");
                  return;
              }
              if ($_ ne $ok && !$mm->_in($_, $c->_config_ok)) {
                  $mm->push_error("Unknown configuration in options key: $_");
                  return;
              }
              $c2->$_($res->{$_}) unless $_ eq $ok;
          }
          $mm->config($c2);
          $config_replaced++;
          $c = $c2;
      }
  
      my $sp = $c->set_prefix;
      my $saved_prefixes;
      if (defined($sp)) {
          if (ref($sp) ne 'HASH') {
              $mm->push_error("Invalid config value `set_prefix`: must be a hash");
              return;
          }
          $saved_prefixes = {};
          for my $mh (values %{ $mm->modes }) {
              my $n = $mh->name;
              if ($sp->{$n}) {
                  $saved_prefixes->{$n} = {
                      prefix => $mh->prefix,
                      prefix_re => $mh->prefix_re,
                      check_prefix_sub => $mh->check_prefix_sub,
                      add_prefix_sub => $mh->add_prefix_sub,
                      remove_prefix_sub => $mh->remove_prefix_sub,
                  };
                  $mh->prefix($sp->{$n});
                  my $re = quotemeta($sp->{$n});
                  $mh->prefix_re(qr/^$re/);
                  $mh->check_prefix_sub(undef);
                  $mh->add_prefix_sub(undef);
                  $mh->remove_prefix_sub(undef);
              }
          }
      }
  
      my $ep = $c->exclude_parse;
      my $ip = $c->include_parse;
      if (defined($ep) && ref($ep) ne 'ARRAY') {
          $mm->push_error("Invalid config value `exclude_parse`: must be an array");
          return;
      }
      if (defined($ip) && ref($ip) ne 'ARRAY') {
          $mm->push_error("Invalid config value `include_parse`: must be an array");
          return;
      }
  
      my $epr = $c->exclude_parse_regex;
      my $ipr = $c->include_parse_regex;
      if (defined($epr)) {
          eval { $epr = qr/$epr/ };
          if ($@) {
              $mm->push_error("Invalid config value `exclude_parse_regex`: invalid regex: $@");
              return;
          }
      }
      if (defined($ipr)) {
          eval { $ipr = qr/$ipr/ };
          if ($@) {
              $mm->push_error("Invalid config value `include_parse_regex`: invalid regex: $@");
              return;
          }
      }
  
      my $hl = $self->_gen_left ($l, $mode, sub {defined($ok) ? $_[0] ne $ok : 1}, $ep, $ip, $epr, $ipr);
      return if @{ $mm->errors };
  
      my $hr = $self->_gen_right($r, $mode, sub {defined($ok) ? $_[0] ne $ok : 1}, $ep, $ip, $epr, $ipr);
      return if @{ $mm->errors };
  
  
      my $em = $c->exclude_merge;
      my $im = $c->include_merge;
      if (defined($em) && ref($em) ne 'ARRAY') {
          $mm->push_error("Invalid config value `exclude_marge`: must be an array");
          return;
      }
      if (defined($im) && ref($im) ne 'ARRAY') {
          $mm->push_error("Invalid config value `include_merge`: must be an array");
          return;
      }
  
      my $emr = $c->exclude_merge_regex;
      my $imr = $c->include_merge_regex;
      if (defined($emr)) {
          eval { $emr = qr/$emr/ };
          if ($@) {
              $mm->push_error("Invalid config value `exclude_merge_regex`: invalid regex: $@");
              return;
          }
      }
      if (defined($imr)) {
          eval { $imr = qr/$imr/ };
          if ($@) {
              $mm->push_error("Invalid config value `include_merge_regex`: invalid regex: $@");
              return;
          }
      }
  
      my ($res, $backup) = $self->_merge_gen($hl, $hr, $mode, $em, $im, $emr, $imr);
      return if @{ $mm->errors };
  
  
      if ($c->readd_prefix) {
          for my $k (keys %$res) {
              $self->_readd_prefix($res, $k, $c->default_mode);
          }
      } else {
          $res->{$_} = $res->{$_}[1] for keys %$res;
      }
  
      if ($saved_prefixes) {
          for (keys %$saved_prefixes) {
              my $mh = $mm->modes->{$_};
              my $s = $saved_prefixes->{$_};
              $mh->prefix($s->{prefix});
              $mh->prefix_re($s->{prefix_re});
              $mh->check_prefix_sub($s->{check_prefix_sub});
              $mh->add_prefix_sub($s->{add_prefix_sub});
              $mh->remove_prefix_sub($s->{remove_prefix_sub});
          }
      }
  
      if ($config_replaced) {
          $mm->config($orig_c);
      }
  
      ($key, $res, $backup);
  }
  
  1;
  
  __END__
  
DATA_MODEMERGE_MODE_BASE

$fatpacked{"Data/ModeMerge/Mode/CONCAT.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_MODEMERGE_MODE_CONCAT';
  package Data::ModeMerge::Mode::CONCAT;
  
  our $DATE = '2015-02-21'; 
  our $VERSION = '0.32'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Mo qw(build default);
  extends 'Data::ModeMerge::Mode::ADD';
  
  sub name { 'CONCAT' }
  
  sub precedence_level { 2 }
  
  sub default_prefix { '.' }
  
  sub default_prefix_re { qr/^\./ }
  
  sub merge_SCALAR_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, ($l // "") . $r);
  }
  
  1;
  
  __END__
  
DATA_MODEMERGE_MODE_CONCAT

$fatpacked{"Data/ModeMerge/Mode/DELETE.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_MODEMERGE_MODE_DELETE';
  package Data::ModeMerge::Mode::DELETE;
  
  our $DATE = '2015-02-21'; 
  our $VERSION = '0.32'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Mo qw(build default);
  extends 'Data::ModeMerge::Mode::Base';
  
  sub name { 'DELETE' }
  
  sub precedence_level { 1 }
  
  sub default_prefix { '!' }
  
  sub default_prefix_re { qr/^!/ }
  
  sub merge_left_only {
      my ($self, $key, $l) = @_;
      return;
  }
  
  sub merge_right_only {
      my ($self, $key, $r) = @_;
      return;
  }
  
  sub merge_SCALAR_SCALAR {
      return;
  }
  
  sub merge_SCALAR_ARRAY {
      return;
  }
  
  sub merge_SCALAR_HASH {
      return;
  }
  
  sub merge_ARRAY_SCALAR {
      return;
  }
  
  sub merge_ARRAY_ARRAY {
      my ($self, $key, $l, $r) = @_;
      $self->merger->config->allow_destroy_array or
          $self->merger->push_error("Now allowed to destroy array via DELETE mode");
      return;
  }
  
  sub merge_ARRAY_HASH {
      return;
  }
  
  sub merge_HASH_SCALAR {
      return;
  }
  
  sub merge_HASH_ARRAY {
      return;
  }
  
  sub merge_HASH_HASH {
      my ($self, $key, $l, $r) = @_;
      $self->merger->config->allow_destroy_hash or
          $self->merger->push_error("Now allowed to destroy hash via DELETE mode");
      return;
  }
  
  1;
  
  __END__
  
DATA_MODEMERGE_MODE_DELETE

$fatpacked{"Data/ModeMerge/Mode/KEEP.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_MODEMERGE_MODE_KEEP';
  package Data::ModeMerge::Mode::KEEP;
  
  our $DATE = '2015-02-21'; 
  our $VERSION = '0.32'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Mo qw(build default);
  extends 'Data::ModeMerge::Mode::Base';
  
  sub name { 'KEEP' }
  
  sub precedence_level { 6 }
  
  sub default_prefix { '^' }
  
  sub default_prefix_re { qr/^\^/ }
  
  sub merge_SCALAR_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, $l);
  }
  
  sub merge_SCALAR_ARRAY {
      my ($self, $key, $l, $r) = @_;
      ($key, $l);
  }
  
  sub merge_SCALAR_HASH {
      my ($self, $key, $l, $r) = @_;
      ($key, $l);
  }
  
  sub merge_ARRAY_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, $l);
  }
  
  sub merge_ARRAY_ARRAY {
      my ($self, $key, $l, $r) = @_;
      $self->SUPER::merge_ARRAY_ARRAY($key, $l, $r, 'KEEP');
  };
  
  sub merge_ARRAY_HASH {
      my ($self, $key, $l, $r) = @_;
      ($key, $l);
  }
  
  sub merge_HASH_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, $l);
  }
  
  sub merge_HASH_ARRAY {
      my ($self, $key, $l, $r) = @_;
      ($key, $l);
  }
  
  sub merge_HASH_HASH {
      my ($self, $key, $l, $r) = @_;
      $self->SUPER::merge_HASH_HASH($key, $l, $r, 'KEEP');
  };
  
  1;
  
  __END__
  
DATA_MODEMERGE_MODE_KEEP

$fatpacked{"Data/ModeMerge/Mode/NORMAL.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_MODEMERGE_MODE_NORMAL';
  package Data::ModeMerge::Mode::NORMAL;
  
  our $DATE = '2015-02-21'; 
  our $VERSION = '0.32'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Mo qw(build default);
  extends 'Data::ModeMerge::Mode::Base';
  
  sub name { 'NORMAL' }
  
  sub precedence_level { 5 }
  
  sub default_prefix { '*' }
  
  sub default_prefix_re { qr/^\*/ }
  
  sub merge_SCALAR_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_SCALAR_ARRAY {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_SCALAR_HASH {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_SCALAR_CODE {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_ARRAY_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_ARRAY_HASH {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_ARRAY_CODE {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_HASH_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_HASH_ARRAY {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_HASH_CODE {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_CODE_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_CODE_ARRAY {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_CODE_HASH {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  sub merge_CODE_CODE {
      my ($self, $key, $l, $r) = @_;
      ($key, $r);
  }
  
  1;
  
  __END__
  
DATA_MODEMERGE_MODE_NORMAL

$fatpacked{"Data/ModeMerge/Mode/SUBTRACT.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_MODEMERGE_MODE_SUBTRACT';
  package Data::ModeMerge::Mode::SUBTRACT;
  
  our $DATE = '2015-02-21'; 
  our $VERSION = '0.32'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Mo qw(build default);
  extends 'Data::ModeMerge::Mode::NORMAL';
  
  sub name { 'SUBTRACT' }
  
  sub precedence_level { 4 }
  
  sub default_prefix { '-' }
  
  sub default_prefix_re { qr/^-/ }
  
  sub merge_SCALAR_SCALAR {
      my ($self, $key, $l, $r) = @_;
      ($key, $l - $r);
  }
  
  sub merge_SCALAR_ARRAY {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't subtract scalar and array");
      return;
  }
  
  sub merge_SCALAR_HASH {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't subtract scalar and hash");
      return;
  }
  
  sub merge_ARRAY_SCALAR {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't subtract array and scalar");
      return;
  }
  
  sub merge_ARRAY_ARRAY {
      my ($self, $key, $l, $r) = @_;
      my @res;
      my $mm = $self->merger;
      for (@$l) {
          push @res, $_ unless $mm->_in($_, $r);
      }
      ($key, \@res);
  }
  
  sub merge_ARRAY_HASH {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't subtract array and hash");
      return;
  }
  
  sub merge_HASH_SCALAR {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't subtract hash and scalar");
      return;
  }
  
  sub merge_HASH_ARRAY {
      my ($self, $key, $l, $r) = @_;
      $self->merger->push_error("Can't subtract hash and array");
      return;
  }
  
  sub merge_HASH_HASH {
      my ($self, $key, $l, $r) = @_;
      my $mm = $self->merger;
  
      my %res;
      my $r2 = {};
      for (keys %$r) {
          my $k = $mm->check_prefix($_) ? $_ : $mm->add_prefix($_, 'DELETE');
          if ($k ne $_ && exists($r->{$k})) {
              $mm->push_error("Conflict when adding DELETE prefix on right-side hash key $_ ".
                              "for SUBTRACT merge: key $k already exists");
              return;
          }
          $r2->{$k} = $r->{$_};
      }
      $mm->_merge($key, $l, $r2, 'NORMAL');
  }
  
  1;
  
  __END__
  
DATA_MODEMERGE_MODE_SUBTRACT

$fatpacked{"Data/Sah.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH';
  package Data::Sah;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  
  our $Log_Validator_Code = $ENV{LOG_SAH_VALIDATOR_CODE} // 0;
  
  use Data::Sah::Normalize qw(
                         $type_re
                         $clause_name_re
                         $clause_re
                         $attr_re
                         $funcset_re
                         $compiler_re
                         );
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(normalize_schema gen_validator);
  
  has compilers    => (is => 'rw', default => sub { {} });
  
  has _merger      => (
      is      => 'rw',
      lazy    => 1,
      default => sub {
          require Data::ModeMerge;
          my $mm = Data::ModeMerge->new(config => {
              recurse_array => 1,
          });
          $mm->modes->{NORMAL}  ->prefix   ('merge.normal.');
          $mm->modes->{NORMAL}  ->prefix_re(qr/\Amerge\.normal\./);
          $mm->modes->{ADD}     ->prefix   ('merge.add.');
          $mm->modes->{ADD}     ->prefix_re(qr/\Amerge\.add\./);
          $mm->modes->{CONCAT}  ->prefix   ('merge.concat.');
          $mm->modes->{CONCAT}  ->prefix_re(qr/\Amerge\.concat\./);
          $mm->modes->{SUBTRACT}->prefix   ('merge.subtract.');
          $mm->modes->{SUBTRACT}->prefix_re(qr/\Amerge\.subtract\./);
          $mm->modes->{DELETE}  ->prefix   ('merge.delete.');
          $mm->modes->{DELETE}  ->prefix_re(qr/\Amerge\.delete\./);
          $mm->modes->{KEEP}    ->prefix   ('merge.keep.');
          $mm->modes->{KEEP}    ->prefix_re(qr/\Amerge\.keep\./);
          $mm;
      },
  );
  
  has _var_enumer  => (
      is      => 'rw',
      lazy    => 1,
      default => sub {
          require Language::Expr::Interpreter::VarEnumer;
          Language::Expr::Interpreter::VarEnumer->new;
      },
  );
  
  sub normalize_clset {
      require Scalar::Util;
  
      my $self;
      if (Scalar::Util::blessed($_[0])) {
          $self = shift;
      } else {
          $self = __PACKAGE__->new;
      }
  
      Data::Sah::Normalize::normalize_clset($_[0]);
  }
  
  sub normalize_schema {
      require Scalar::Util;
  
      my $self;
      if (Scalar::Util::blessed($_[0])) {
          $self = shift;
      } else {
          $self = __PACKAGE__->new;
      }
      my ($s) = @_;
  
      Data::Sah::Normalize::normalize_schema($_[0]);
  }
  
  sub gen_validator {
      require Scalar::Util;
  
      my $self;
      if (Scalar::Util::blessed($_[0])) {
          $self = shift;
      } else {
          $self = __PACKAGE__->new;
      }
      my ($schema, $opts) = @_;
      my %args = (schema => $schema, %{$opts // {}});
      my $opt_source = delete $args{source};
  
      $args{log_result} = 1 if $Log_Validator_Code;
  
      my $pl = $self->get_compiler("perl");
      my $code = $pl->expr_validator_sub(%args);
      return $code if $opt_source;
  
      my $res = eval $code;
      die "Can't compile validator: $@" if $@;
      $res;
  }
  
  sub _merge_clause_sets {
      my ($self, @clause_sets) = @_;
      my @merged;
  
      my $mm = $self->_merger;
  
      my @c;
      for (@clause_sets) {
          push @c, {cs=>$_, has_prefix=>$mm->check_prefix_on_hash($_)};
      }
      for (reverse @c) {
          if ($_->{has_prefix}) { $_->{last_with_prefix} = 1; last }
      }
  
      my $i = -1;
      for my $c (@c) {
          $i++;
          if (!$i || !$c->{has_prefix} && !$c[$i-1]{has_prefix}) {
              push @merged, $c->{cs};
              next;
          }
          $mm->config->readd_prefix(
              ($c->{last_with_prefix} || $c[$i-1]{last_with_prefix}) ? 0 : 1);
          my $mres = $mm->merge($merged[-1], $c->{cs});
          die "Can't merge clause sets: $mres->{error}" unless $mres->{success};
          $merged[-1] = $mres->{result};
      }
      \@merged;
  }
  
  sub get_compiler {
      my ($self, $name) = @_;
      return $self->compilers->{$name} if $self->compilers->{$name};
  
      die "Invalid compiler name `$name`" unless $name =~ $compiler_re;
      my $module = "Data::Sah::Compiler::$name";
      if (!eval "require $module; 1") {
          die "Can't load compiler module $module".($@ ? ": $@" : "");
      }
  
      my $obj = $module->new(main => $self);
      $self->compilers->{$name} = $obj;
  
      return $obj;
  }
  
  sub normalize_var {
      my ($self, $var, $curpath) = @_;
      die "Not yet implemented";
  }
  
  1;
  
  __END__
  
DATA_SAH

$fatpacked{"Data/Sah/Compiler.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER';
  package Data::Sah::Compiler;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(default);
  use Role::Tiny::With;
  use Log::Any::IfLOG qw($log);
  
  with 'Data::Sah::Compiler::TextResultRole';
  
  use Scalar::Util qw(blessed);
  
  has main => (is => 'rw');
  
  has expr_compiler => (
      is => 'rw',
      lazy => 1,
      default => sub {
          require Language::Expr;
          Language::Expr->new;
      },
  );
  
  sub name {
      die "BUG: Please override name()";
  }
  
  sub literal {
      die "BUG: Please override literal()";
  }
  
  sub expr {
      die "BUG: Please override expr()";
  }
  
  sub _die {
      my ($self, $cd, $msg) = @_;
      die join(
          "",
          "Sah ". $self->name . " compiler: ",
          "at schema:/", join("/", @{$cd->{spath} // []}), ": ",
          $msg,
      );
  }
  
  sub _form_deps {
      require Algorithm::Dependency::Ordered;
      require Algorithm::Dependency::Source::HoA;
      require Language::Expr::Interpreter::VarEnumer;
  
      my ($self, $cd, $ctbl) = @_;
      my $main = $self->main;
  
      my %depends;
      for my $crec (values %$ctbl) {
          my $cn = $crec->{name};
          my $expr = defined($crec->{expr}) ? $crec->{value} :
              $crec->{attrs}{expr};
          if (defined $expr) {
              my $vars = $main->_var_enumer->eval($expr);
              for (@$vars) {
                  /^\w+$/ or $self->_die($cd,
                      "Invalid variable syntax '$_', ".
                          "currently only the form \$abc is supported");
                  $ctbl->{$_} or $self->_die($cd,
                      "Unhandled clause specified in variable '$_'");
              }
              $depends{$cn} = $vars;
              for (@$vars) {
                  push @{ $ctbl->{$_}{depended_by} }, $cn;
              }
          } else {
              $depends{$cn} = [];
          }
      }
      my $ds = Algorithm::Dependency::Source::HoA->new(\%depends);
      my $ad = Algorithm::Dependency::Ordered->new(source => $ds)
          or die "Failed to set up dependency algorithm";
      my $sched = $ad->schedule_all
          or die "Can't resolve dependencies, please check your expressions";
      my %rsched = map
          {@{ $depends{$sched->[$_]} } ? ($sched->[$_] => $_) : ()}
              0..@$sched-1;
      \%rsched;
  }
  
  sub _resolve_base_type {
      require Scalar::Util;
  
      my ($self, %args) = @_;
      my $ns   = $args{schema};
      my $t    = $ns->[0];
      my $cd   = $args{cd};
      my $th   = $self->get_th(name=>$t, cd=>$cd);
      my $seen = $args{seen} // {};
      my $res  = $args{res} // [$t, [], []];
  
      $self->_die($cd, "Recursive dependency on type '$t'") if $seen->{$t}++;
  
      $res->[0] = $t;
      unshift @{$res->[1]}, $ns->[1] if keys(%{$ns->[1]});
      unshift @{$res->[2]}, $ns->[2] if $ns->[2];
      if (Scalar::Util::blessed $th) {
          $res->[1] = $self->main->_merge_clause_sets(@{$res->[1]}) if @{$res->[1]} > 1;
          $res->[2] = $self->main->_merge_clause_sets(@{$res->[2]}) if @{$res->[2]} > 1;
      } else {
          $self->_resolve_base_type(schema=>$th, cd=>$cd, seen=>$seen, res=>$res);
      }
      $res;
  }
  
  sub _get_clauses_from_clsets {
      my ($self, $cd, $clsets) = @_;
      my $tn = $cd->{type};
      my $th = $cd->{th};
  
      my $deps;
  
      my $sorter = sub {
          my ($ia, $ca, $metaa) = @$a;
          my ($ib, $cb, $metab) = @$b;
          my $res;
  
  
          {
              $res = $metaa->{prio} <=> $metab->{prio};
              last if $res;
  
              my $sprioa = $clsets->[$ia]{"$ca.prio"} // 50;
              my $spriob = $clsets->[$ib]{"$cb.prio"} // 50;
              $res = $sprioa <=> $spriob;
              last if $res;
  
              $res = $ca cmp $cb;
              last if $res;
  
              $res = $ia <=> $ib;
              last if $res;
  
              $res = 0;
          }
  
          $res;
      };
  
      my @clauses;
      for my $i (0..@$clsets-1) {
          for my $k (grep {!/\A_/ && !/\./} keys %{$clsets->[$i]}) {
              my $meta;
              eval {
                  $meta = "Data::Sah::Type::$tn"->${\("clausemeta_$k")};
              };
              if ($@) {
                  for ($cd->{args}{on_unhandled_clause}) {
                      my $msg = "Unhandled clause for type $tn: $k ($@)";
                      next if $_ eq 'ignore';
                      next if $_ eq 'warn'; 
                      $self->_die($cd, $msg);
                  }
              }
              $meta //= {prio=>50};
              push @clauses, [$i, $k, $meta];
          }
      }
  
      my $res = [sort $sorter @clauses];
      $res;
  }
  
  sub get_th {
      my ($self, %args) = @_;
      my $cd    = $args{cd};
      my $name  = $args{name};
  
      my $th_map = $cd->{th_map};
      return $th_map->{$name} if $th_map->{$name};
  
      if ($args{load} // 1) {
          no warnings;
          $self->_die($cd, "Invalid syntax for type name '$name', please use ".
                          "letters/numbers/underscores only")
              unless $name =~ $Data::Sah::type_re;
          my $main = $self->main;
          my $module = ref($self) . "::TH::$name";
          if (!eval "require $module; 1") {
              $self->_die($cd, "Can't load type handler $module".
                              ($@ ? ": $@" : ""));
          }
  
          my $obj = $module->new(compiler=>$self);
          $th_map->{$name} = $obj;
      }
      use experimental 'smartmatch';
  
      return $th_map->{$name};
  }
  
  sub get_fsh {
      my ($self, %args) = @_;
      my $cd    = $args{cd};
      my $name  = $args{name};
  
      my $fsh_table = $cd->{fsh_table};
      return $fsh_table->{$name} if $fsh_table->{$name};
  
      if ($args{load} // 1) {
          no warnings;
          $self->_die($cd, "Invalid syntax for func set name '$name', ".
                          "please use letters/numbers/underscores")
              unless $name =~ $Data::Sah::funcset_re;
          my $module = ref($self) . "::FSH::$name";
          if (!eval "require $module; 1") {
              $self->_die($cd, "Can't load func set handler $module".
                              ($@ ? ": $@" : ""));
          }
  
          my $obj = $module->new();
          $fsh_table->{$name} = $obj;
      }
      use experimental 'smartmatch';
  
      return $fsh_table->{$name};
  }
  
  sub init_cd {
      require Time::HiRes;
  
      my ($self, %args) = @_;
  
      my $cd = {};
      $cd->{args} = \%args;
  
      if (my $ocd = $args{outer_cd}) {
          $cd->{_inner}       = 1;
  
          $cd->{outer_cd}     = $ocd;
          $cd->{indent_level} = $ocd->{indent_level};
          $cd->{th_map}       = { %{ $ocd->{th_map}  } };
          $cd->{fsh_map}      = { %{ $ocd->{fsh_map} } };
          $cd->{default_lang} = $ocd->{default_lang};
          $cd->{spath}        = [@{ $ocd->{spath} }];
      } else {
          $cd->{indent_level} = $cd->{args}{indent_level} // 0;
          $cd->{th_map}       = {};
          $cd->{fsh_map}      = {};
          $cd->{default_lang} = $ENV{LANG} || "en_US";
          $cd->{default_lang} =~ s/\..+//; 
          $cd->{spath}        = [];
      }
      $cd->{_id} = Time::HiRes::gettimeofday(); 
      $cd->{ccls} = [];
  
      $cd;
  }
  
  sub check_compile_args {
      my ($self, $args) = @_;
  
      return if $args->{_args_checked}++;
  
      $args->{data_name} //= 'data';
      $args->{data_name} =~ /\A[A-Za-z_]\w*\z/ or $self->_die(
          {}, "Invalid syntax in data_name '$args->{data_name}', ".
              "please use letters/nums only");
      $args->{allow_expr} //= 1;
      $args->{on_unhandled_attr}   //= 'die';
      $args->{on_unhandled_clause} //= 'die';
      $args->{skip_clause}         //= [];
      $args->{mark_missing_translation} //= 1;
      for ($args->{lang}) {
          $_ //= $ENV{LANG} || $ENV{LANGUAGE} || "en_US";
          s/\W.*//; 
      }
  }
  
  sub _process_clause {
      use experimental 'smartmatch';
  
      my ($self, $cd, $clset_num, $clause) = @_;
  
      my $th = $cd->{th};
      my $tn = $cd->{type};
      my $clsets = $cd->{clsets};
  
      my $clset = $clsets->[$clset_num];
      local $cd->{spath}       = [@{$cd->{spath}}, $clause];
      local $cd->{clset}       = $clset;
      local $cd->{clset_num}   = $clset_num;
      local $cd->{uclset}      = $cd->{uclsets}[$clset_num];
      local $cd->{clset_dlang} = $cd->{_clset_dlangs}[$clset_num];
  
      delete $cd->{uclset}{$clause};
      delete $cd->{uclset}{"$clause.prio"};
  
      if ($clause ~~ @{ $cd->{args}{skip_clause} }) {
          delete $cd->{uclset}{$_}
              for grep /^\Q$clause\E(\.|\z)/, keys(%{$cd->{uclset}});
          return;
      }
  
      my $meth  = "clause_$clause";
      my $mmeth = "clausemeta_$clause";
      unless ($th->can($meth)) {
          for ($cd->{args}{on_unhandled_clause}) {
              next if $_ eq 'ignore';
              do { warn "Can't handle clause $clause"; next }
                  if $_ eq 'warn';
              $self->_die($cd, "Can't handle clause $clause");
          }
      }
  
  
      my $meta;
      if ($th->can($mmeth)) {
          $meta = $th->$mmeth;
      } else {
          $meta = {};
      }
      local $cd->{cl_meta} = $meta;
      $self->_die($cd, "Clause $clause doesn't allow expression")
          if $clset->{"$clause.is_expr"} && !$meta->{allow_expr};
      for my $a (keys %{ $meta->{attrs} }) {
          my $av = $meta->{attrs}{$a};
          $self->_die($cd, "Attribute $clause.$a doesn't allow ".
                          "expression")
              if $clset->{"$clause.$a.is_expr"} && !$av->{allow_expr};
      }
      local $cd->{clause} = $clause;
      my $cv = $clset->{$clause};
      my $ie = $clset->{"$clause.is_expr"};
      my $op = $clset->{"$clause.op"};
      local $cd->{cl_value}   = $cv;
      local $cd->{cl_term}    = $ie ? $self->expr($cv) : $self->literal($cv);
      local $cd->{cl_is_expr} = $ie;
      local $cd->{cl_op}      = $op;
      delete $cd->{uclset}{"$clause.is_expr"};
      delete $cd->{uclset}{"$clause.op"};
  
      if ($self->can("before_clause")) {
          $self->before_clause($cd);
      }
      if ($th->can("before_clause")) {
          $th->before_clause($cd);
      }
      my $tmpnam = "before_clause_$clause";
      if ($th->can($tmpnam)) {
          $th->$tmpnam($cd);
      }
  
      my $is_multi;
      if (defined($op) && !$ie) {
          if ($op =~ /\A(and|or|none)\z/) {
              $is_multi = 1;
          } elsif ($op eq 'not') {
              $is_multi = 0;
          } else {
              $self->_die($cd, "Invalid value for $clause.op, ".
                              "must be one of and/or/not/none");
          }
      }
      $self->_die($cd, "'$clause.op' attribute set to $op, ".
                      "but value of '$clause' clause not an array")
          if $is_multi && ref($cv) ne 'ARRAY';
      if (!$th->can($meth)) {
      } elsif ($cd->{CLAUSE_DO_MULTI} || !$is_multi) {
          local $cd->{cl_is_multi} = 1 if $is_multi;
          $th->$meth($cd);
      } else {
          my $i = 0;
          for my $cv2 (@$cv) {
              local $cd->{spath} = [@{ $cd->{spath} }, $i];
              local $cd->{cl_value} = $cv2;
              local $cd->{cl_term}  = $self->literal($cv2);
              local $cd->{_debug_ccl_note} = "" if $i;
              $i++;
              $th->$meth($cd);
          }
      }
  
      $tmpnam = "after_clause_$clause";
      if ($th->can($tmpnam)) {
          $th->$tmpnam($cd);
      }
      if ($th->can("after_clause")) {
          $th->after_clause($cd);
      }
      if ($self->can("after_clause")) {
          $self->after_clause($cd);
      }
  
      delete $cd->{uclset}{"$clause.err_msg"};
      delete $cd->{uclset}{"$clause.err_level"};
      delete $cd->{uclset}{$_} for
          grep /\A\Q$clause\E\.human(\..+)?\z/, keys(%{$cd->{uclset}});
  }
  
  sub _process_clsets {
      my ($self, $cd, $which) = @_;
  
  
      my $th = $cd->{th};
      my $tn = $cd->{type};
      my $clsets = $cd->{clsets};
  
      my $cname = $self->name;
      local $cd->{uclsets} = [];
      $cd->{_clset_dlangs} = []; 
      for my $clset (@$clsets) {
          for (keys %$clset) {
              if (!$cd->{args}{allow_expr} && /\.is_expr\z/ && $clset->{$_}) {
                  $self->_die($cd, "Expression not allowed: $_");
              }
          }
          push @{ $cd->{uclsets} }, {
              map {$_=>$clset->{$_}}
                  grep {
                      !/\A_|\._/ && (!/\Ac\./ || /\Ac\.\Q$cname\E\./)
                  } keys %$clset
          };
          my $dl = $clset->{default_lang} // $cd->{outer_cd}{clset_dlang} //
              "en_US";
          push @{ $cd->{_clset_dlangs} }, $dl;
      }
  
      my $clauses = $self->_get_clauses_from_clsets($cd, $clsets);
      $cd->{has_constraint_clause} = 0;
      for my $cl (@$clauses) {
          next if $cl->[1] =~ /\A(req|forbidden)\z/;
          next unless !$cl->[2]{tags} ||
              grep {$_ eq 'constraint'} @{ $cl->[2]{tags} };
          $cd->{has_constraint_clause} = 1;
          last;
      }
  
      if ($which) {
          if ($self->can("before_clause_sets")) {
              $self->before_clause_sets($cd);
          }
          if ($th->can("before_clause_sets")) {
              $th->before_clause_sets($cd);
          }
      } else {
          if ($self->can("before_handle_type")) {
              $self->before_handle_type($cd);
          }
  
          $th->handle_type($cd);
  
          if ($self->can("before_all_clauses")) {
              $self->before_all_clauses($cd);
          }
          if ($th->can("before_all_clauses")) {
              $th->before_all_clauses($cd);
          }
      }
  
      for my $clause0 (@$clauses) {
          my ($clset_num, $clause) = @$clause0;
          $self->_process_clause($cd, $clset_num, $clause);
      } 
  
      for my $uclset (@{ $cd->{uclsets} }) {
          if (keys %$uclset) {
              for ($cd->{args}{on_unhandled_attr}) {
                  my $msg = "Unhandled attribute(s) for type $tn: ".
                      join(", ", keys %$uclset);
                  next if $_ eq 'ignore';
                  do { warn $msg; next } if $_ eq 'warn';
                  $self->_die($cd, $msg);
              }
          }
      }
  
      if ($which) {
          if ($th->can("after_clause_sets")) {
              $th->after_clause_sets($cd);
          }
          if ($self->can("after_clause_sets")) {
              $self->after_clause_sets($cd);
          }
      } else {
          if ($th->can("after_all_clauses")) {
              $th->after_all_clauses($cd);
          }
          if ($self->can("after_all_clauses")) {
              $self->after_all_clauses($cd);
          }
      }
  }
  
  sub compile {
      my ($self, %args) = @_;
  
      $self->check_compile_args(\%args);
  
      my $main   = $self->main;
      my $cd     = $self->init_cd(%args);
  
      if ($self->can("before_compile")) {
          $self->before_compile($cd);
      }
  
      my $schema0 = $args{schema} or $self->_die($cd, "No schema");
      my $nschema;
      if ($args{schema_is_normalized}) {
          $nschema = $schema0;
      } else {
          $nschema = $main->normalize_schema($schema0);
      }
      $cd->{nschema} = $nschema;
      local $cd->{schema} = $nschema;
  
      {
          my $defs = $nschema->[2]{def};
          if ($defs) {
              for my $name (sort keys %$defs) {
                  my $def = $defs->{$name};
                  my $opt = $name =~ s/[?]\z//;
                  local $cd->{def_optional} = $opt;
                  local $cd->{def_name}     = $name;
                  $self->_die($cd, "Invalid name syntax in def: '$name'")
                      unless $name =~ $Data::Sah::type_re;
                  local $cd->{def_def}      = $def;
                  $self->def($cd);
              }
          }
      }
  
      my $res       = $self->_resolve_base_type(schema=>$nschema, cd=>$cd);
      my $tn        = $res->[0];
      my $th        = $self->get_th(name=>$tn, cd=>$cd);
      my $clsets    = $res->[1];
      $cd->{th}     = $th;
      $cd->{type}   = $tn;
      $cd->{clsets} = $clsets;
  
      $self->_process_clsets($cd);
  
      if ($self->can("after_compile")) {
          $self->after_compile($cd);
      }
  
      if ($args{log_result}) {
          require String::LineNumber;
          $log->tracef(
              "Schema compilation result:\n%s",
              !ref($cd->{result}) && ($ENV{LINENUM} // 1) ?
                  String::LineNumber::linenum($cd->{result}) :
                        $cd->{result}
                    );
      }
      return $cd;
  }
  
  sub def {
      my ($self, $cd) = @_;
      my $name = $cd->{def_name};
      my $def  = $cd->{def_def};
      my $opt  = $cd->{def_optional};
  
      my $th = $self->get_th(cd=>$cd, name=>$name, load=>0);
      if ($th) {
          if ($opt) {
              return;
          }
          $self->_die($cd, "Redefining existing type ($name) not allowed");
      }
  
      my $nschema = $self->main->normalize_schema($def);
      $cd->{th_map}{$name} = $nschema;
  }
  
  sub _ignore_clause {
      my ($self, $cd) = @_;
      my $cl = $cd->{clause};
      delete $cd->{uclset}{$cl};
  }
  
  sub _ignore_clause_and_attrs {
      my ($self, $cd) = @_;
      my $cl = $cd->{clause};
      delete $cd->{uclset}{$cl};
      delete $cd->{uclset}{$_} for grep /\A\Q$cl\E\./, keys %{$cd->{uclset}};
  }
  
  sub _die_unimplemented_clause {
      my ($self, $cd, $note) = @_;
  
      $self->_die($cd, "Clause '$cd->{clause}' for type '$cd->{type}' ".
                      ($note ? "($note) " : "") .
                          "is currently unimplemented");
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER

$fatpacked{"Data/Sah/Compiler/Prog.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PROG';
  package Data::Sah::Compiler::Prog;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Log::Any::IfLOG qw($log);
  
  use Mo qw(build default);
  extends 'Data::Sah::Compiler';
  
  
  has hc => (is => 'rw');
  
  has comment_style => (is => 'rw');
  
  has var_sigil => (is => 'rw');
  
  has concat_op => (is => 'rw');
  
  has logical_and_op => (is => 'rw', default => sub {'&&'});
  
  has logical_not_op => (is => 'rw', default => sub {'!'});
  
  
  sub init_cd {
      my ($self, %args) = @_;
  
      my $cd = $self->SUPER::init_cd(%args);
      $cd->{vars} = {};
  
      my $hc = $self->hc;
      if (!$hc) {
          $hc = $self->main->get_compiler("human");
          $self->hc($hc);
      }
  
      if (my $ocd = $cd->{outer_cd}) {
          $cd->{vars}    = $ocd->{vars};
          $cd->{modules} = $ocd->{modules};
          $cd->{_hc}     = $ocd->{_hc};
          $cd->{_hcd}    = $ocd->{_hcd};
          $cd->{_subdata_level} = $ocd->{_subdata_level};
      } else {
          $cd->{vars}    = {};
          $cd->{modules} = [];
          $cd->{_hc}     = $hc;
          $cd->{_subdata_level} = 0;
      }
  
      $cd;
  }
  
  sub check_compile_args {
      my ($self, $args) = @_;
  
      return if $args->{_args_checked_Prog}++;
  
      $self->SUPER::check_compile_args($args);
  
      my $ct = ($args->{code_type} //= 'validator');
      if ($ct ne 'validator') {
          $self->_die({}, "code_type currently can only be 'validator'");
      }
      my $rt = ($args->{return_type} //= 'bool');
      if ($rt !~ /\A(bool|str|full)\z/) {
          $self->_die({}, "Invalid value for return_type, ".
                          "use bool|str|full");
      }
      $args->{var_prefix} //= "_sahv_";
      $args->{sub_prefix} //= "_sahs_";
      $args->{data_term}  //= $self->var_sigil . $args->{data_name};
      $args->{data_term_is_lvalue} //= 1;
      $args->{tmp_data_name} //= "tmp_$args->{data_name}";
      $args->{tmp_data_term} //= $self->var_sigil . $args->{tmp_data_name};
      $args->{comment}    //= 1;
      $args->{err_term}   //= $self->var_sigil . "err_$args->{data_name}";
  }
  
  sub comment {
      my ($self, $cd, @args) = @_;
      return '' unless $cd->{args}{comment};
  
      my $content = join("", @args);
      $content =~ s/\n+/ /g;
  
      my $style = $self->comment_style;
      if ($style eq 'shell') {
          return join("", "# ", $content, "\n");
      } elsif ($style eq 'shell2') {
          return join("", "## ", $content, "\n");
      } elsif ($style eq 'cpp') {
          return join("", "// ", $content, "\n");
      } elsif ($style eq 'c') {
          return join("", "/* ", $content, '*/');
      } elsif ($style eq 'ini') {
          return join("", "; ", $content, "\n");
      } else {
          $self->_die($cd, "BUG: Unknown comment style: $style");
      }
  }
  
  sub enclose_paren {
      my ($self, $expr, $force) = @_;
      if ($expr =~ /\A(\s*)(\(.+\)\s*)\z/os) {
          return $expr if !$force;
          return "$1($2)";
      } else {
          $expr =~ /\A(\s*)(.*)/os;
          return "$1($2)";
      }
  }
  
  sub add_module {
      use experimental 'smartmatch';
  
      my ($self, $cd, $name) = @_;
  
      return 0 if $name ~~ @{ $cd->{modules} };
      push @{ $cd->{modules} }, $name;
      1;
  }
  
  sub add_var {
      my ($self, $cd, $name, $value) = @_;
  
      return if exists $cd->{vars}{$name};
      $cd->{vars}{$name} = $value;
  }
  
  
  sub expr_assign {
      my ($self, $v, $t) = @_;
      "$v = $t";
  }
  
  sub _xlt {
      my ($self, $cd, $text) = @_;
  
      my $hc  = $cd->{_hc};
      my $hcd = $cd->{_hcd};
      $hc->_xlt($hcd, $text);
  }
  
  sub expr_concat {
      my ($self, @t) = @_;
      join(" " . $self->concat_op . " ", @t);
  }
  
  sub expr_var {
      my ($self, $v) = @_;
      $self->var_sigil. $v;
  }
  
  sub expr_preinc {
      my ($self, $t) = @_;
      "++$t";
  }
  
  sub expr_preinc_var {
      my ($self, $v) = @_;
      "++" . $self->var_sigil. $v;
  }
  
  
  sub expr_validator_sub {
      my ($self, %args) = @_;
  
      my $log_result = delete $args{log_result};
      my $dt         = $args{data_term};
      my $vt         = delete($args{var_term}) // $dt;
      my $do_log     = $args{debug_log} // $args{debug};
      my $rt         = $args{return_type} // 'bool';
  
      $args{indent_level} = 1;
  
      my $cd = $self->compile(%args);
      my $et = $cd->{args}{err_term};
  
      if ($rt ne 'bool') {
          my ($ev) = $et =~ /(\w+)/; 
          $self->add_var($cd, $ev, $rt eq 'str' ? undef : {});
      }
      my $resv = '_sahv_res';
      my $rest = $self->var_sigil . $resv;
  
      my $needs_expr_block = @{ $cd->{modules} } || $do_log;
  
      my $code = join(
          "",
          ($self->stmt_require_log_module."\n") x !!$do_log,
          (map { $self->stmt_require_module($_, $cd)."\n" } @{ $cd->{modules} }),
          $self->expr_anon_sub(
              [$vt],
              join(
                  "",
                  (map {$self->stmt_declare_local_var(
                      $_, $self->literal($cd->{vars}{$_}))."\n"}
                       sort keys %{ $cd->{vars} }),
                  $self->stmt_declare_local_var($resv, "\n\n" . $cd->{result})."\n\n",
  
                  ($self->stmt_return($rest)."\n")
                      x !!($rt eq 'bool'),
  
                  ($self->expr_set_err_str($et, $self->literal('')).";",
                   "\n\n".$self->stmt_return($et)."\n")
                      x !!($rt eq 'str'),
  
                  ($self->stmt_return($et)."\n")
                      x !!($rt eq 'full'),
              )
          ),
      );
  
      if ($needs_expr_block) {
          $code = $self->expr_block($code);
      }
  
      if ($log_result && $log->is_trace) {
          require String::LineNumber;
          $log->tracef("validator code:\n%s",
                       ($ENV{LINENUM} // 1) ?
                           String::LineNumber::linenum($code) :
                                 $code);
      }
  
      $code;
  }
  
  sub add_ccl {
      my ($self, $cd, $ccl, $opts) = @_;
      $opts //= {};
      my $clause = $cd->{clause} // "";
      my $op     = $cd->{cl_op} // "";
  
      my $use_dpath = $cd->{args}{return_type} ne 'bool';
  
      my $el = $opts->{err_level} // $cd->{clset}{"$clause.err_level"} // "error";
      my $err_expr = $opts->{err_expr};
      my $err_msg  = $opts->{err_msg};
  
      if (defined $err_expr) {
          $self->add_var($cd, '_sahv_dpath', []) if $use_dpath;
          $err_expr = $self->expr_prefix_dpath($err_expr) if $use_dpath;
      } else {
          unless (defined $err_msg) { $err_msg = $cd->{clset}{"$clause.err_msg"} }
          unless (defined $err_msg) {
  
              my @msgpath = @{$cd->{spath}};
              my $msgpath;
              my $hc  = $cd->{_hc};
              my $hcd = $cd->{_hcd};
              while (1) {
                  last unless @msgpath;
                  $msgpath = join("/", @msgpath);
                  my $ccls = $hcd->{result}{$msgpath};
                  pop @msgpath;
                  if ($ccls) {
                      local $hcd->{args}{format} = 'inline_err_text';
                      $err_msg = $hc->format_ccls($hcd, $ccls);
                      $err_msg = "(msgpath=$msgpath) $err_msg"
                          if $cd->{args}{debug};
                      last;
                  }
              }
              if (!$err_msg) {
                  $err_msg = "ERR (clause=".($cd->{clause} // "").")";
              } else {
                  $err_msg = ucfirst($err_msg);
              }
          }
          if ($err_msg) {
              $self->add_var($cd, '_sahv_dpath', []) if $use_dpath;
              $err_expr = $self->literal($err_msg);
              $err_expr = $self->expr_prefix_dpath($err_expr) if $use_dpath;
          }
      }
  
      my $rt = $cd->{args}{return_type};
      my $et = $cd->{args}{err_term};
      my $err_code;
      if ($rt eq 'full') {
          $self->add_var($cd, '_sahv_dpath', []) if $use_dpath;
          my $k = $el eq 'warn' ? 'warnings' : 'errors';
          $err_code = $self->expr_set_err_full($et, $k, $err_expr) if $err_expr;
      } elsif ($rt eq 'str') {
          if ($el ne 'warn') {
              $err_code = $self->expr_set_err_str($et, $err_expr) if $err_expr;
          }
      }
  
      my $res = {
          ccl             => $ccl,
          err_level       => $el,
          err_code        => $err_code,
          (_debug_ccl_note => $cd->{_debug_ccl_note}) x !!$cd->{_debug_ccl_note},
          subdata         => $opts->{subdata},
      };
      push @{ $cd->{ccls} }, $res;
      delete $cd->{uclset}{"$clause.err_level"};
      delete $cd->{uclset}{"$clause.err_msg"};
  }
  
  sub join_ccls {
      my ($self, $cd, $ccls, $opts) = @_;
      $opts //= {};
      my $op = $opts->{op} // "and";
  
      my ($min_ok, $max_ok, $min_nok, $max_nok);
      if ($op eq 'and') {
          $max_nok = 0;
      } elsif ($op eq 'or') {
          $min_ok = 1;
      } elsif ($op eq 'none') {
          $max_ok = 0;
      } elsif ($op eq 'not') {
  
      }
      my $dmin_ok  = defined($min_ok);
      my $dmax_ok  = defined($max_ok);
      my $dmin_nok = defined($min_nok);
      my $dmax_nok = defined($max_nok);
  
      return "" unless @$ccls;
  
      my $rt      = $cd->{args}{return_type};
      my $vp      = $cd->{args}{var_prefix};
  
      my $aop = $self->logical_and_op;
      my $nop = $self->logical_not_op;
  
      my $true = $self->true;
  
      my $_ice = sub {
          my ($ccl, $which) = @_;
  
          return $self->enclose_paren($ccl->{ccl}) if $ccl->{assert};
  
          my $res = "";
  
          if ($ccl->{_debug_ccl_note}) {
              if ($cd->{args}{debug_log} // $cd->{args}{debug}) {
                  $res .= $self->expr_log(
                      $cd, $self->literal($ccl->{_debug_ccl_note})) . " $aop\n";
              } else {
                  $res .= $self->comment($cd, $ccl->{_debug_ccl_note});
              }
          }
  
          $which //= 0;
          my $cc = ($which == 1 ? $nop:"") . $self->enclose_paren($ccl->{ccl});
          my ($ec, $oec);
          my ($ret, $oret);
          if ($which >= 2) {
              my @chk;
              if ($ccl->{err_level} eq 'warn') {
                  $oret = 1;
                  $ret  = 1;
              } elsif ($ccl->{err_level} eq 'fatal') {
                  $oret = 1;
                  $ret  = 0;
              } else {
                  $oret = $self->expr_preinc_var("${vp}ok");
                  $ret  = $self->expr_preinc_var("${vp}nok");
                  push @chk, $self->expr_var("${vp}ok"). " <= $max_ok"
                      if $dmax_ok;
                  push @chk, $self->expr_var("${vp}nok")." <= $max_nok"
                      if $dmax_nok;
                  if ($which == 3) {
                      push @chk, $self->expr_var("${vp}ok"). " >= $min_ok"
                          if $dmin_ok;
                      push @chk, $self->expr_var("${vp}nok")." >= $min_nok"
                          if $dmin_nok;
  
                      if ($rt ne 'bool') {
                          my $et = $cd->{args}{err_term};
                          my $clerrc;
                          if ($rt eq 'full') {
                              $clerrc = $self->expr_reset_err_full($et);
                          } else {
                              $clerrc = $self->expr_reset_err_str($et);
                          }
                          push @chk, $clerrc;
                      }
                  }
              }
              $res .= "($cc ? $oret : $ret)";
              $res .= " $aop " . join(" $aop ", @chk) if @chk;
          } else {
              $ec = $ccl->{err_code};
              $ret =
                  $ccl->{err_level} eq 'fatal' ? 0 :
                          $ccl->{err_level} eq 'warn' ? 1 : 0;
              if ($rt eq 'bool' && $ret) {
                  $res .= $true;
              } elsif ($rt eq 'bool' || !$ec) {
                  $res .= $self->enclose_paren($cc);
              } else {
                  $res .= $self->enclose_paren(
                      $self->enclose_paren($cc). " ? $true : ($ec,$ret)",
                      "force");
              }
          }
  
          my $use_dpath = $rt ne 'bool' && $ccl->{subdata};
          $res = $self->expr_push_and_pop_dpath_between_expr($res) if $use_dpath;
          $res;
  
      };
  
      my $j = "\n\n$aop\n\n";
      if ($op eq 'not') {
          return $_ice->($ccls->[0], 1);
      } elsif ($op eq 'and') {
          return join $j, map { $_ice->($_) } @$ccls;
      } elsif ($op eq 'none') {
          return join $j, map { $_ice->($_, 1) } @$ccls;
      } else {
          my $jccl = join $j, map {$_ice->($ccls->[$_], $_ == @$ccls-1 ? 3:2)}
              0..@$ccls-1;
          {
              local $cd->{ccls} = [];
              local $cd->{_debug_ccl_note} = "op=$op";
              $self->add_ccl(
                  $cd,
                  $self->expr_block(
                      join(
                          "",
                          $self->stmt_declare_local_var("${vp}ok" , "0"), "\n",
                          $self->stmt_declare_local_var("${vp}nok", "0"), "\n",
                          "\n",
                          $self->block_uses_sub ?
                              $self->stmt_return($jccl) : $jccl,
                      )
                  ),
              );
              $_ice->($cd->{ccls}[0]);
          }
      }
  }
  
  sub before_compile {
      my ($self, $cd) = @_;
  
      if ($cd->{args}{data_term_is_lvalue}) {
          $cd->{data_term} = $cd->{args}{data_term};
      } else {
          my $v = $cd->{args}{var_prefix} . $cd->{args}{data_name};
          push @{ $cd->{vars} }, $v; 
          $cd->{data_term} = $self->var_sigil . $v;
          push @{ $cd->{ccls} }, ["(local($cd->{data_term} = $cd->{args}{data_term}), 1)"];
      }
  }
  
  sub before_handle_type {
      my ($self, $cd) = @_;
  
  
      unless ($cd->{_inner}) {
          my $hc = $cd->{_hc};
          my %hargs = %{$cd->{args}};
          $hargs{format}               = 'msg_catalog';
          $hargs{schema_is_normalized} = 1;
          $hargs{schema}               = $cd->{nschema};
          $hargs{on_unhandled_clause}  = 'ignore';
          $hargs{on_unhandled_attr}    = 'ignore';
          $hargs{hash_values}          = $cd->{args}{human_hash_values};
          $cd->{_hcd} = $hc->compile(%hargs);
      }
  }
  
  sub before_all_clauses {
      my ($self, $cd) = @_;
  
  
      my $dt     = $cd->{data_term};
      my $clsets = $cd->{clsets};
  
      for my $i (0..@$clsets-1) {
          my $clset  = $clsets->[$i];
          next unless exists $clset->{ok};
          my $op = $clset->{"ok.op"} // "";
          if ($op && $op ne 'not') {
              $self->_die($cd, "ok can only be combined with .op=not");
          }
          if ($op eq 'not') {
              local $cd->{_debug_ccl_note} = "!ok #$i";
              $self->add_ccl($cd, $self->false);
          } else {
              local $cd->{_debug_ccl_note} = "ok #$i";
              $self->add_ccl($cd, $self->true);
          }
          delete $cd->{uclsets}[$i]{"ok"};
          delete $cd->{uclsets}[$i]{"ok.is_expr"};
      }
  
      for my $i (0..@$clsets-1) {
          my $clset  = $clsets->[$i];
          my $def    = $clset->{default};
          my $defie  = $clset->{"default.is_expr"};
          if (defined $def) {
              local $cd->{_debug_ccl_note} = "default #$i";
              my $ct = $defie ?
                  $self->expr($def) : $self->literal($def);
              $self->add_ccl(
                  $cd,
                  "(".$self->expr_setif($dt, $ct).", ".$self->true.")",
                  {err_msg => ""},
              );
          }
          delete $cd->{uclsets}[$i]{"default"};
          delete $cd->{uclsets}[$i]{"default.is_expr"};
      }
  
  
      my $has_req;
      for my $i (0..@$clsets-1) {
          my $clset  = $clsets->[$i];
          my $req    = $clset->{req};
          my $reqie  = $clset->{"req.is_expr"};
          my $req_err_msg = $self->_xlt($cd, "Required but not specified");
          local $cd->{_debug_ccl_note} = "req #$i";
          if ($req && !$reqie) {
              $has_req++;
              $self->add_ccl(
                  $cd, $self->expr_defined($dt),
                  {
                      err_msg   => $req_err_msg,
                      err_level => 'fatal',
                  },
              );
          } elsif ($reqie) {
              $has_req++;
              my $ct = $self->expr($req);
              $self->add_ccl(
                  $cd, "!($ct) || ".$self->expr_defined($dt),
                  {
                      err_msg   => $req_err_msg,
                      err_level => 'fatal',
                  },
              );
          }
          delete $cd->{uclsets}[$i]{"req"};
          delete $cd->{uclsets}[$i]{"req.is_expr"};
      }
  
      my $has_fbd;
      for my $i (0..@$clsets-1) {
          my $clset  = $clsets->[$i];
          my $fbd    = $clset->{forbidden};
          my $fbdie  = $clset->{"forbidden.is_expr"};
          my $fbd_err_msg = $self->_xlt($cd, "Forbidden but specified");
          local $cd->{_debug_ccl_note} = "forbidden #$i";
          if ($fbd && !$fbdie) {
              $has_fbd++;
              $self->add_ccl(
                  $cd, "!".$self->expr_defined($dt),
                  {
                      err_msg   => $fbd_err_msg,
                      err_level => 'fatal',
                  },
              );
          } elsif ($fbdie) {
              $has_fbd++;
              my $ct = $self->expr($fbd);
              $self->add_ccl(
                  $cd, "!($ct) || !".$self->expr_defined($dt),
                  {
                      err_msg   => $fbd_err_msg,
                      err_level => 'fatal',
                  },
              );
          }
          delete $cd->{uclsets}[$i]{"forbidden"};
          delete $cd->{uclsets}[$i]{"forbidden.is_expr"};
      }
  
      if (!$has_req && !$has_fbd) {
          $cd->{_skip_undef} = 1;
          $cd->{_ccls_idx1} = @{$cd->{ccls}};
      }
  
  
      $self->_die($cd, "BUG: type handler did not produce _ccl_check_type")
          unless defined($cd->{_ccl_check_type});
      local $cd->{_debug_ccl_note} = "check type '$cd->{type}'";
      $self->add_ccl(
          $cd, $cd->{_ccl_check_type},
          {
              err_msg   => sprintf(
                  $self->_xlt($cd, "Not of type %s"),
                  $self->_xlt(
                      $cd,
                      $cd->{_hc}->get_th(name=>$cd->{type})->name //
                          $cd->{type}
                      ),
              ),
              err_level => 'fatal',
          },
      );
  }
  
  sub before_clause {
      my ($self, $cd) = @_;
  
      $self->_die($cd, "Sorry, .op + .is_expr not yet supported ".
                      "(found in clause $cd->{clause})")
          if $cd->{cl_is_expr} && $cd->{cl_op};
  
      if ($cd->{args}{debug}) {
          state $json = do {
              require JSON;
              JSON->new->allow_nonref;
          };
          my $clset = $cd->{clset};
          my $cl    = $cd->{clause};
          my $res   = $json->encode({
              map { $_ => $clset->{$_}}
                  grep {/\A\Q$cl\E(?:\.|\z)/}
                      keys %$clset });
          $res =~ s/\n+/ /g;
          $cd->{_debug_ccl_note} = "clause: $res";
      } else {
          $cd->{_debug_ccl_note} = "clause: $cd->{clause}";
      }
  
  
      push @{ $cd->{_save_ccls} }, $cd->{ccls};
      $cd->{ccls} = [];
  }
  
  sub after_clause {
      my ($self, $cd) = @_;
  
      if ($cd->{args}{debug}) {
          delete $cd->{_debug_ccl_note};
      }
  
      my $save = pop @{ $cd->{_save_ccls} };
      if (@{ $cd->{ccls} }) {
          push @$save, {
              ccl       => $self->join_ccls($cd, $cd->{ccls}, {op=>$cd->{cl_op}}),
              err_level => $cd->{clset}{"$cd->{clause}.err_level"} // "error",
          }
      }
      $cd->{ccls} = $save;
  }
  
  sub after_clause_sets {
      my ($self, $cd) = @_;
  
      $cd->{result} = $self->indent(
          $cd,
          $self->join_ccls($cd, $cd->{ccls}, {err_msg => ''}),
      );
  }
  
  sub after_all_clauses {
      my ($self, $cd) = @_;
  
      if (delete $cd->{_skip_undef}) {
          my $jccl = $self->join_ccls(
              $cd,
              [splice(@{ $cd->{ccls} }, $cd->{_ccls_idx1})],
          );
          local $cd->{_debug_ccl_note} = "skip if undef";
          $self->add_ccl(
              $cd,
              "!".$self->expr_defined($cd->{data_term})." ? ".$self->true." : \n\n".
                  $self->enclose_paren($jccl),
              {err_msg => ''},
          );
      }
  
      $cd->{result} = $self->indent(
          $cd,
          $self->join_ccls($cd, $cd->{ccls}, {err_msg => ''}),
      );
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PROG

$fatpacked{"Data/Sah/Compiler/Prog/TH.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PROG_TH';
  package Data::Sah::Compiler::Prog::TH;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  
  extends 'Data::Sah::Compiler::TH';
  
  
  sub clause_default {}
  sub clause_ok {}
  sub clause_req {}
  sub clause_forbidden {}
  sub clause_prefilters {}
  
  
  
  sub clause_name {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause_and_attrs($cd);
  }
  
  sub clause_summary {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause_and_attrs($cd);
  }
  
  sub clause_description {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause_and_attrs($cd);
  }
  
  sub clause_comment {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause($cd);
  }
  
  sub clause_tags {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause($cd);
  }
  
  sub clause_defhash_v {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause($cd);
  }
  
  sub clause_v {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause($cd);
  }
  
  sub set_tmp_data_term {
      my ($self, $cd, $expr) = @_;
      my $c = $self->compiler;
  
      my $tdn = $cd->{args}{tmp_data_name};
      my $tdt = $cd->{args}{tmp_data_term};
      my $t = $c->expr_array_subscript($tdt, $cd->{_subdata_level});
      unless ($cd->{_save_data_term}) {
          $c->add_var($cd, $tdn, []);
          $cd->{_save_data_term} = $cd->{data_term};
          $cd->{data_term} = $t;
      }
      local $cd->{_debug_ccl_note} = 'set temporary data term';
      $c->add_ccl($cd, "(".$c->expr_assign($t, $expr). ", ".$c->true.")");
  }
  
  sub restore_data_term {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $tdt = $cd->{args}{tmp_data_term};
      if ($cd->{_save_data_term}) {
          $cd->{data_term} = delete($cd->{_save_data_term});
          local $cd->{_debug_ccl_note} = 'restore original data term';
          $c->add_ccl($cd, "(".$c->expr_pop($tdt). ", ".$c->true.")");
      }
  }
  
  sub gen_any_or_all_of {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      my $jccl;
      {
          local $cd->{ccls} = [];
          for my $i (0..@$cv-1) {
              local $cd->{spath} = [@{ $cd->{spath} }, $i];
              my $sch  = $cv->[$i];
              my %iargs = %{$cd->{args}};
              $iargs{outer_cd}             = $cd;
              $iargs{schema}               = $sch;
              $iargs{schema_is_normalized} = 0;
              $iargs{indent_level}++;
              my $icd  = $c->compile(%iargs);
              my @code = (
                  $icd->{result},
              );
              $c->add_ccl($cd, join("", @code));
          }
          if ($which eq 'all') {
              $jccl = $c->join_ccls(
                  $cd, $cd->{ccls}, {err_msg=>''});
          } else {
              $jccl = $c->join_ccls(
                  $cd, $cd->{ccls}, {err_msg=>'', op=>'or'});
          }
      }
      $c->add_ccl($cd, $jccl);
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PROG_TH

$fatpacked{"Data/Sah/Compiler/Prog/TH/all.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PROG_TH_ALL';
  package Data::Sah::Compiler::Prog::TH::all;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::Prog::TH';
  with 'Data::Sah::Type::all';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = $c->true;
  }
  
  sub clause_of {
      my ($self, $cd) = @_;
      $self->gen_any_or_all_of("all", $cd);
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PROG_TH_ALL

$fatpacked{"Data/Sah/Compiler/Prog/TH/any.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PROG_TH_ANY';
  package Data::Sah::Compiler::Prog::TH::any;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::any';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = $c->true;
  }
  
  sub clause_of {
      my ($self, $cd) = @_;
      $self->gen_any_or_all_of("any", $cd);
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PROG_TH_ANY

$fatpacked{"Data/Sah/Compiler/TH.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_TH';
  package Data::Sah::Compiler::TH;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Mo qw(build default);
  
  has compiler => (is => 'rw');
  
  sub clause_v {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause($cd);
  }
  
  sub clause_defhash_v {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause($cd);
  }
  
  sub clause_schema_v {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause($cd);
  }
  
  sub clause_base_v {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause($cd);
  }
  
  sub clause_default_lang {
      my ($self, $cd) = @_;
      $self->compiler->_ignore_clause($cd);
  }
  
  sub clause_clause {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      my ($clause, $clv) = @$cv;
      my $meth   = "clause_$clause";
      my $mmeth  = "clausemeta_$clause";
  
      my $clsets = [{$clause => $clv}];
      local $cd->{clsets} = $clsets;
  
      $c->_process_clause($cd, 0, $clause);
  }
  
  
  sub clause_clset {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      local $cd->{clsets} = [$cv];
      $c->_process_clsets($cd, 'from clause_clset');
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_TH

$fatpacked{"Data/Sah/Compiler/TextResultRole.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_TEXTRESULTROLE';
  package Data::Sah::Compiler::TextResultRole;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(default);
  use Role::Tiny;
  
  use String::Indent ();
  
  has indent_character => (is => 'rw', default => sub {''});
  
  sub add_result {
      my ($self, $cd, @args) = @_;
  
      $cd->{result} //= [];
      push @{ $cd->{result} }, $self->indent($cd, join("", @args));
      $self;
  }
  
  sub indent {
      my ($self, $cd, $str) = @_;
      String::Indent::indent(
          $self->indent_character x $cd->{indent_level},
          $str,
      );
  }
  
  sub inc_indent {
      my ($self, $cd) = @_;
      $cd->{indent_level}++;
  }
  
  sub dec_indent {
      my ($self, $cd) = @_;
      $cd->{indent_level}--;
  }
  
  sub indent_str {
      my ($self, $cd) = @_;
      $self->indent_character x $cd->{indent_level};
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_TEXTRESULTROLE

$fatpacked{"Data/Sah/Compiler/human.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN';
  package Data::Sah::Compiler::human;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Data::Dmp qw(dmp);
  use Mo qw(build default);
  use POSIX qw(locale_h);
  use Text::sprintfn;
  
  extends 'Data::Sah::Compiler';
  
  our %typex; 
  
  sub name { "human" }
  
  sub _add_msg_catalog {
      my ($self, $cd, $msg) = @_;
      return unless $cd->{args}{format} eq 'msg_catalog';
  
      my $spath = join("/", @{ $cd->{spath} });
      $cd->{_msg_catalog}{$spath} = $msg;
  }
  
  sub check_compile_args {
      use experimental 'smartmatch';
  
      my ($self, $args) = @_;
  
      $self->SUPER::check_compile_args($args);
  
      my @fmts = ('inline_text', 'inline_err_text', 'markdown', 'msg_catalog');
      $args->{format} //= $fmts[0];
      unless ($args->{format} ~~ @fmts) {
          $self->_die({}, "Unsupported format, use one of: ".join(", ", @fmts));
      }
  }
  
  sub init_cd {
      my ($self, %args) = @_;
  
      my $cd = $self->SUPER::init_cd(%args);
      if (($cd->{args}{format} // '') eq 'msg_catalog') {
          $cd->{_msg_catalog} //= $cd->{outer_cd}{_msg_catalog};
          $cd->{_msg_catalog} //= {};
      }
      $cd;
  }
  
  sub expr {
      my ($self, $cd, $expr) = @_;
  
  
      $expr;
  }
  
  sub literal {
      my ($self, $val) = @_;
  
      return $val unless ref($val);
      dmp($val);
  }
  
  sub _xlt {
      my ($self, $cd, $text) = @_;
  
      my $lang = $cd->{args}{lang};
  
  
      return $text if $lang eq 'en_US';
      my $translations;
      {
          no strict 'refs';
          $translations = \%{"Data::Sah::Lang::$lang\::translations"};
      }
      return $translations->{$text} if defined($translations->{$text});
      if ($cd->{args}{mark_missing_translation}) {
          return "(no $lang text:$text)";
      } else {
          return $text;
      }
  }
  
  sub _ordinate {
      my ($self, $cd, $n, $noun) = @_;
  
      my $lang = $cd->{args}{lang};
  
  
      if ($lang eq 'en_US') {
          require Lingua::EN::Numbers::Ordinate;
          return Lingua::EN::Numbers::Ordinate::ordinate($n) . " $noun";
      } else {
          no strict 'refs';
          return "Data::Sah::Lang::$lang\::ordinate"->($n, $noun);
      }
  }
  
  sub _add_ccl {
      use experimental 'smartmatch';
  
      my ($self, $cd, $ccl) = @_;
  
      $ccl->{xlt} //= 1;
  
      my $clause = $cd->{clause} // "";
      $ccl->{type} //= "clause";
  
      my $do_xlt = 1;
  
      my $hvals = {
          modal_verb     => $self->_xlt($cd, "must"),
          modal_verb_neg => $self->_xlt($cd, "must not"),
  
          field          => $self->_xlt($cd, "field"),
          fields         => $self->_xlt($cd, "fields"),
  
          %{ $cd->{args}{hash_values} // {} },
      };
      my $mod="";
  
  
      {
          my $lang   = $cd->{args}{lang};
          my $dlang  = $cd->{clset_dlang} // "en_US"; 
          my $suffix = $lang eq $dlang ? "" : ".alt.lang.$lang";
          if ($clause) {
              delete $cd->{uclset}{$_} for
                  grep /\A\Q$clause.human\E(\.|\z)/, keys %{$cd->{uclset}};
              if (defined $cd->{clset}{"$clause.human$suffix"}) {
                  $ccl->{type} = 'clause';
                  $ccl->{fmt}  = $cd->{clset}{"$clause.human$suffix"};
                  goto FILL_FORMAT;
              }
          } else {
              delete $cd->{uclset}{$_} for
                  grep /\A\.name(\.|\z)/, keys %{$cd->{uclset}};
              if (defined $cd->{clset}{".name$suffix"}) {
                  $ccl->{type} = 'noun';
                  $ccl->{fmt}  = $cd->{clset}{".name$suffix"};
                  $ccl->{vals} = undef;
                  goto FILL_FORMAT;
              }
          }
      }
  
      goto TRANSLATE unless $clause;
  
      my $ie    = $cd->{cl_is_expr};
      my $im    = $cd->{cl_is_multi};
      my $op    = $cd->{cl_op} // "";
      my $cv    = $cd->{clset}{$clause};
      my $vals  = $ccl->{vals} // [$cv];
  
  
      if ($ie) {
          if (!$ccl->{expr}) {
              $ccl->{fmt} = "($clause -> %s" . ($op ? " op=$op" : "") . ")";
              $do_xlt = 0;
              $vals = [$self->expr($cd, $vals)];
          }
          goto ERR_LEVEL;
      }
  
  
      if ($op eq 'not') {
          ($hvals->{modal_verb}, $hvals->{modal_verb_neg}) =
              ($hvals->{modal_verb_neg}, $hvals->{modal_verb});
          $vals = [map {$self->literal($_)} @$vals];
      } elsif ($im && $op eq 'and') {
          if (@$cv == 2) {
              $vals = [sprintf($self->_xlt($cd, "%s and %s"),
                               $self->literal($cv->[0]),
                               $self->literal($cv->[1]))];
          } else {
              $vals = [sprintf($self->_xlt($cd, "all of %s"),
                               $self->literal($cv))];
          }
      } elsif ($im && $op eq 'or') {
          if (@$cv == 2) {
              $vals = [sprintf($self->_xlt($cd, "%s or %s"),
                               $self->literal($cv->[0]),
                               $self->literal($cv->[1]))];
          } else {
              $vals = [sprintf($self->_xlt($cd, "one of %s"),
                               $self->literal($cv))];
          }
      } elsif ($im && $op eq 'none') {
          ($hvals->{modal_verb}, $hvals->{modal_verbneg}) =
              ($hvals->{modal_verb_neg}, $hvals->{modal_verb});
          if (@$cv == 2) {
              $vals = [sprintf($self->_xlt($cd, "%s nor %s"),
                               $self->literal($cv->[0]),
                               $self->literal($cv->[1]))];
          } else {
              $vals = [sprintf($self->_xlt($cd, "any of %s"),
                               $self->literal($cv))];
          }
      } else {
          $vals = [map {$self->literal($_)} @$vals];
      }
  
    ERR_LEVEL:
  
      if ($ccl->{type} eq 'clause' && 'constraint' ~~ $cd->{cl_meta}{tags}) {
          if (($cd->{clset}{"$clause.err_level"}//'error') eq 'warn') {
              if ($op eq 'not') {
                  $hvals->{modal_verb}     = $self->_xlt($cd, "should not");
                  $hvals->{modal_verb_neg} = $self->_xlt($cd, "should");
              } else {
                  $hvals->{modal_verb}     = $self->_xlt($cd, "should");
                  $hvals->{modal_verb_neg} = $self->_xlt($cd, "should not");
              }
          }
      }
      delete $cd->{uclset}{"$clause.err_level"};
  
    TRANSLATE:
  
      if ($ccl->{xlt}) {
          if (ref($ccl->{fmt}) eq 'ARRAY') {
              $ccl->{fmt}  = [map {$self->_xlt($cd, $_)} @{$ccl->{fmt}}];
          } elsif (!ref($ccl->{fmt})) {
              $ccl->{fmt}  = $self->_xlt($cd, $ccl->{fmt});
          }
      }
  
    FILL_FORMAT:
  
      if (ref($ccl->{fmt}) eq 'ARRAY') {
          $ccl->{text} = [map {sprintfn($_, (map {$_//""} ($hvals, @$vals)))}
                              @{$ccl->{fmt}}];
      } elsif (!ref($ccl->{fmt})) {
          $ccl->{text} = sprintfn($ccl->{fmt}, (map {$_//""} ($hvals, @$vals)));
      }
      delete $ccl->{fmt} unless $cd->{args}{debug};
  
    PUSH:
      push @{$cd->{ccls}}, $ccl;
  
      $self->_add_msg_catalog($cd, $ccl);
  }
  
  sub add_ccl {
      my ($self, $cd, @ccls) = @_;
  
      my $op     = $cd->{cl_op} // '';
  
      my $ccl;
      if (@ccls == 1) {
          $self->_add_ccl($cd, $ccls[0]);
      } else {
          my $inner_cd = $self->init_cd(outer_cd => $cd);
          $inner_cd->{args} = $cd->{args};
          $inner_cd->{clause} = $cd->{clause};
          for (@ccls) {
              $self->_add_ccl($inner_cd, $_);
          }
  
          $ccl = {
              type  => 'list',
              vals  => [],
              items => $inner_cd->{ccls},
              multi => 0,
          };
          if ($op eq 'or') {
              $ccl->{fmt} = 'any of the following %(modal_verb)s be true';
          } elsif ($op eq 'and') {
              $ccl->{fmt} = 'all of the following %(modal_verb)s be true';
          } elsif ($op eq 'none') {
              $ccl->{fmt} = 'none of the following %(modal_verb)s be true';
          }
          $self->_add_ccl($cd, $ccl);
      }
  }
  
  sub format_ccls {
      my ($self, $cd, $ccls) = @_;
  
      local $cd->{_fmt_noun_count} = 0;
      local $cd->{_fmt_etc_count} = 0;
  
      my $f = $cd->{args}{format};
      my $res;
      if ($f eq 'inline_text' || $f eq 'inline_err_text' || $f eq 'msg_catalog') {
          $res = $self->_format_ccls_itext($cd, $ccls);
          if ($f eq 'inline_err_text') {
              if ($cd->{_fmt_noun_count} == 1 && $cd->{_fmt_etc_count} == 0) {
                  $res = sprintf(
                      $self->_xlt($cd, "Not of type %s"),
                      $res
                  );
              } elsif (!$cd->{_fmt_noun_count}) {
              } else {
                  $res = sprintf(
                      $self->_xlt(
                          $cd, "Does not satisfy the following schema: %s"),
                      $res
                  );
              }
          }
      } else {
          $res = $self->_format_ccls_markdown($cd, $ccls);
      }
      $res;
  }
  
  sub _format_ccls_itext {
      my ($self, $cd, $ccls) = @_;
  
      local $cd->{args}{mark_missing_translation} = 0;
      my $c_comma = $self->_xlt($cd, ", ");
  
      if (ref($ccls) eq 'HASH' && $ccls->{type} =~ /^(noun|clause)$/) {
          if ($ccls->{type} eq 'noun') {
              $cd->{_fmt_noun_count}++;
          } else {
              $cd->{_fmt_etc_count}++;
          }
          my $ccl = $ccls;
          return ref($ccl->{text}) eq 'ARRAY' ? $ccl->{text}[0] : $ccl->{text};
      } elsif (ref($ccls) eq 'HASH' && $ccls->{type} eq 'list') {
          my $c_openpar  = $self->_xlt($cd, "(");
          my $c_closepar = $self->_xlt($cd, ")");
          my $c_colon    = $self->_xlt($cd, ": ");
          my $ccl = $ccls;
  
          my $txt = $ccl->{text}; $txt =~ s/\s+$//;
          my @t = ($txt, $c_colon);
          my $i = 0;
          for (@{ $ccl->{items} }) {
              push @t, $c_comma if $i;
              my $it = $self->_format_ccls_itext($cd, $_);
              if ($it =~ /\Q$c_comma/) {
                  push @t, $c_openpar, $it, $c_closepar;
              } else {
                  push @t, $it;
              }
              $i++;
          }
          return join("", @t);
      } elsif (ref($ccls) eq 'ARRAY') {
          return join($c_comma, map {$self->_format_ccls_itext($cd, $_)} @$ccls);
      } else {
          $self->_die($cd, "Can't format $ccls");
      }
  }
  
  sub _format_ccls_markdown {
      my ($self, $cd, $ccls) = @_;
  
      $self->_die($cd, "Sorry, markdown not yet implemented");
  }
  
  sub _load_lang_modules {
      my ($self, $cd) = @_;
  
      my $lang = $cd->{args}{lang};
      die "Invalid language '$lang', please use letters only"
          unless $lang =~ /\A\w+\z/;
  
      my @modp;
      unless ($lang eq 'en_US') {
          push @modp, "Data/Sah/Lang/$lang.pm";
          for my $cl (@{ $typex{$cd->{type}} // []}) {
              my $modp = "Data/Sah/Lang/$lang/TypeX/$cd->{type}/$cl.pm";
              $modp =~ s!::!/!g; 
              push @modp, $modp;
          }
      }
      my $i;
      for my $modp (@modp) {
          $i++;
          unless (exists $INC{$modp}) {
              if ($i == 1) {
                  require Module::Path::More;
                  my $mod = $modp; $mod =~ s/\.pm$//;
                  if (!Module::Path::More::module_path(module=>$modp)) {
                      $cd->{args}{lang} = 'en_US';
                      last;
                  }
              }
              require $modp;
  
              $INC{$modp} = undef;
          }
      }
  }
  
  sub before_compile {
      my ($self, $cd) = @_;
  
      $cd->{_orig_locale} = setlocale(LC_ALL);
  
      my $res = setlocale(LC_ALL, $cd->{args}{locale} // $cd->{args}{lang});
      warn "Unsupported locale $cd->{args}{lang}"
          if $cd->{args}{debug} && !defined($res);
  }
  
  sub before_handle_type {
      my ($self, $cd) = @_;
  
      $self->_load_lang_modules($cd);
  }
  
  sub before_clause {
      my ($self, $cd) = @_;
  
      $cd->{CLAUSE_DO_MULTI} = 1;
  }
  
  sub after_clause {
      my ($self, $cd) = @_;
  
      delete $cd->{CLAUSE_DO_MULTI};
  }
  
  sub after_all_clauses {
      use experimental 'smartmatch';
  
      my ($self, $cd) = @_;
  
  
  
      $cd->{result} = $self->format_ccls($cd, $cd->{ccls});
  }
  
  sub after_compile {
      my ($self, $cd) = @_;
  
      setlocale(LC_ALL, $cd->{_orig_locale});
  
      if ($cd->{args}{format} eq 'msg_catalog') {
          $cd->{result} = $cd->{_msg_catalog};
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN

$fatpacked{"Data/Sah/Compiler/human/TH.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH';
  package Data::Sah::Compiler::human::TH;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::TH';
  
  sub name { undef }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $pkg = ref($self);
      $pkg =~ s/^Data::Sah::Compiler::human::TH:://;
  
      $c->add_ccl($cd, {type=>'noun', fmt=>$pkg});
  }
  
  
  sub clause_name {}
  sub clause_summary {}
  sub clause_description {}
  sub clause_comment {}
  sub clause_tags {}
  
  sub clause_prefilters {}
  sub clause_postfilters {}
  
  
  sub clause_ok {}
  
  
  sub clause_req {}
  sub clause_forbidden {}
  
  
  sub clause_default {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {expr=>1,
                        fmt => 'default value %s'});
  }
  
  sub before_clause_clause {
      my ($self, $cd) = @_;
      $cd->{CLAUSE_DO_MULTI} = 0;
  }
  
  sub before_clause_clset {
      my ($self, $cd) = @_;
      $cd->{CLAUSE_DO_MULTI} = 0;
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH

$fatpacked{"Data/Sah/Compiler/human/TH/Comparable.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_COMPARABLE';
  package Data::Sah::Compiler::human::TH::Comparable;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::Comparable';
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c = $self->compiler;
  
      my $fmt;
      if ($which eq 'is') {
          $c->add_ccl($cd, {expr=>1, multi=>1,
                            fmt => '%(modal_verb)s have the value %s'});
      } elsif ($which eq 'in') {
          $c->add_ccl($cd, {expr=>1, multi=>1,
                            fmt => '%(modal_verb)s be one of %s'});
      }
  }
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_COMPARABLE

$fatpacked{"Data/Sah/Compiler/human/TH/HasElems.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_HASELEMS';
  package Data::Sah::Compiler::human::TH::HasElems;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::HasElems';
  
  sub before_clause {
      my ($self_th, $which, $cd) = @_;
  }
  
  sub before_clause_len_between {
      my ($self, $cd) = @_;
      $cd->{CLAUSE_DO_MULTI} = 0;
  }
  
  sub superclause_has_elems {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
  
      if ($which eq 'len') {
          $c->add_ccl($cd, {
              expr  => 1,
              fmt   => q[length %(modal_verb)s be %s],
          });
      } elsif ($which eq 'min_len') {
          $c->add_ccl($cd, {
              expr  => 1,
              fmt   => q[length %(modal_verb)s be at least %s],
          });
      } elsif ($which eq 'max_len') {
          $c->add_ccl($cd, {
              expr  => 1,
              fmt   => q[length %(modal_verb)s be at most %s],
          });
      } elsif ($which eq 'len_between') {
          $c->add_ccl($cd, {
              fmt   => q[length %(modal_verb)s be between %s and %s],
              vals  => $cv,
          });
      } elsif ($which eq 'has') {
          $c->add_ccl($cd, {
              expr=>1, multi=>1,
              fmt => "%(modal_verb)s have %s in its elements"});
      } elsif ($which eq 'each_index') {
          $self_th->clause_each_index($cd);
      } elsif ($which eq 'each_elem') {
          $self_th->clause_each_elem($cd);
      } elsif ($which eq 'check_each_index') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'check_each_elem') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'uniq') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'exists') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_HASELEMS

$fatpacked{"Data/Sah/Compiler/human/TH/Sortable.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_SORTABLE';
  package Data::Sah::Compiler::human::TH::Sortable;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::Sortable';
  
  sub before_clause_between {
      my ($self, $cd) = @_;
      $cd->{CLAUSE_DO_MULTI} = 0;
  }
  
  sub before_clause_xbetween {
      my ($self, $cd) = @_;
      $cd->{CLAUSE_DO_MULTI} = 0;
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c = $self->compiler;
      my $cv = $cd->{cl_value};
  
      if ($which eq 'min') {
          $c->add_ccl($cd, {
              expr=>1,
              fmt => '%(modal_verb)s be at least %s',
          });
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, {
              expr=>1,
              fmt => '%(modal_verb)s be larger than %s',
          });
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, {
              expr=>1,
              fmt => '%(modal_verb)s be at most %s',
          });
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, {
              expr=>1,
              fmt => '%(modal_verb)s be smaller than %s',
          });
      } elsif ($which eq 'between') {
          $c->add_ccl($cd, {
              fmt => '%(modal_verb)s be between %s and %s',
              vals => $cv,
          });
      } elsif ($which eq 'xbetween') {
          $c->add_ccl($cd, {
              fmt => '%(modal_verb)s be larger than %s and smaller than %s',
              vals => $cv,
          });
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_SORTABLE

$fatpacked{"Data/Sah/Compiler/human/TH/all.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_ALL';
  package Data::Sah::Compiler::human::TH::all;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Type::all';
  
  sub handle_type {
  }
  
  sub clause_of {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      my @result;
      my $i = 0;
      for my $cv2 (@$cv) {
          local $cd->{spath} = [@{$cd->{spath}}, $i];
          my %iargs = %{$cd->{args}};
          $iargs{outer_cd}             = $cd;
          $iargs{schema}               = $cv2;
          $iargs{schema_is_normalized} = 0;
          my $icd = $c->compile(%iargs);
          push @result, $icd->{ccls};
          $c->_add_msg_catalog($cd, $icd->{ccls});
          $i++;
      }
  
      my $can = 1;
      for my $r (@result) {
          unless (@$r == 1 && $r->[0]{type} eq 'noun') {
              $can = 0;
              last;
          }
      }
  
      my $vals;
      if ($can) {
          my $c0  = $c->_xlt($cd, '%(modal_verb)s be %s');
          my $awa = $c->_xlt($cd, 'as well as %s');
          my $wb  = $c->_xlt($cd, ' ');
          my $fmt;
          my $i = 0;
          for my $r (@result) {
              $fmt .= $i ? $wb . $awa : $c0;
              push @$vals, ref($r->[0]{text}) eq 'ARRAY' ?
                  $r->[0]{text}[0] : $r->[0]{text};
              $i++;
          }
          $c->add_ccl($cd, {
              fmt  => $fmt,
              vals => $vals,
              xlt  => 0,
              type => 'noun',
          });
      } else {
          $c->add_ccl($cd, {
              type  => 'list',
              fmt   => '%(modal_verb)s be all of the following',
              items => [
                  @result,
              ],
              vals  => [],
          });
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_ALL

$fatpacked{"Data/Sah/Compiler/human/TH/any.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_ANY';
  package Data::Sah::Compiler::human::TH::any;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Type::any';
  
  sub handle_type {
  }
  
  sub clause_of {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      my @result;
      my $i = 0;
      for my $cv2 (@$cv) {
          local $cd->{spath} = [@{$cd->{spath}}, $i];
          my %iargs = %{$cd->{args}};
          $iargs{outer_cd}             = $cd;
          $iargs{schema}               = $cv2;
          $iargs{schema_is_normalized} = 0;
          my $icd = $c->compile(%iargs);
          push @result, $icd->{ccls};
          $i++;
      }
  
      my $can = 1;
      for my $r (@result) {
          unless (@$r == 1 && $r->[0]{type} eq 'noun') {
              $can = 0;
              last;
          }
      }
  
      my $vals;
      if ($can) {
          my $c0  = $c->_xlt($cd, '%(modal_verb)s be either %s');
          my $awa = $c->_xlt($cd, 'or %s');
          my $wb  = $c->_xlt($cd, ' ');
          my $fmt;
          my $i = 0;
          for my $r (@result) {
              $fmt .= $i ? $wb . $awa : $c0;
              push @$vals, ref($r->[0]{text}) eq 'ARRAY' ?
                  $r->[0]{text}[0] : $r->[0]{text};
              $i++;
          }
          $c->add_ccl($cd, {
              fmt  => $fmt,
              vals => $vals,
              xlt  => 0,
              type => 'noun',
          });
      } else {
          $c->add_ccl($cd, {
              type  => 'list',
              fmt   => '%(modal_verb)s be one of the following',
              items => [
                  @result,
              ],
              vals  => [],
          });
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_ANY

$fatpacked{"Data/Sah/Compiler/human/TH/array.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_ARRAY';
  package Data::Sah::Compiler::human::TH::array;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Compiler::human::TH::Comparable';
  with 'Data::Sah::Compiler::human::TH::HasElems';
  with 'Data::Sah::Type::array';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => ["array", "arrays"],
          type  => 'noun',
      });
  }
  
  sub clause_each_index {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      my %iargs = %{$cd->{args}};
      $iargs{outer_cd}             = $cd;
      $iargs{schema}               = $cv;
      $iargs{schema_is_normalized} = 0;
      my $icd = $c->compile(%iargs);
  
      $c->add_ccl($cd, {
          type  => 'list',
          fmt   => 'each array subscript %(modal_verb)s be',
          items => [
              $icd->{ccls},
          ],
          vals  => [],
      });
  }
  
  sub clause_each_elem {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      my %iargs = %{$cd->{args}};
      $iargs{outer_cd}             = $cd;
      $iargs{schema}               = $cv;
      $iargs{schema_is_normalized} = 0;
      my $icd = $c->compile(%iargs);
  
      if (@{$icd->{ccls}} == 1) {
          my $c0 = $icd->{ccls}[0];
          if ($c0->{type} eq 'noun' && ref($c0->{text}) eq 'ARRAY' &&
                  @{$c0->{text}} > 1 && @{$cd->{ccls}} &&
                      $cd->{ccls}[0]{type} eq 'noun') {
              for (ref($cd->{ccls}[0]{text}) eq 'ARRAY' ?
                       @{$cd->{ccls}[0]{text}} : ($cd->{ccls}[0]{text})) {
                  my $fmt = $c->_xlt($cd, '%s of %s');
                  $_ = sprintf $fmt, $_, $c0->{text}[1];
              }
              return;
          }
      }
  
      $c->add_ccl($cd, {
          type  => 'list',
          fmt   => 'each array element %(modal_verb)s be',
          items => [
              $icd->{ccls},
          ],
          vals  => [],
      });
  }
  
  sub clause_elems {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      for my $i (0..@$cv-1) {
          local $cd->{spath} = [@{$cd->{spath}}, $i];
          my $v = $cv->[$i];
          my %iargs = %{$cd->{args}};
          $iargs{outer_cd}             = $cd;
          $iargs{schema}               = $v;
          $iargs{schema_is_normalized} = 0;
          my $icd = $c->compile(%iargs);
          $c->add_ccl($cd, {
              type  => 'list',
              fmt   => '%s %(modal_verb)s be',
              vals  => [
                  $c->_ordinate($cd, $i+1, $c->_xlt($cd, "element")),
              ],
              items => [ $icd->{ccls} ],
          });
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_ARRAY

$fatpacked{"Data/Sah/Compiler/human/TH/bool.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_BOOL';
  package Data::Sah::Compiler::human::TH::bool;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Compiler::human::TH::Comparable';
  with 'Data::Sah::Compiler::human::TH::Sortable';
  with 'Data::Sah::Type::bool';
  
  sub name { "boolean value" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => ["boolean value", "boolean values"],
          type  => 'noun',
      });
  }
  
  sub before_clause_is_true {
      my ($self, $cd) = @_;
      $cd->{CLAUSE_DO_MULTI} = 0;
  }
  
  sub clause_is_true {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      $c->add_ccl($cd, {
          fmt   => $cv ? q[%(modal_verb)s be true] : q[%(modal_verb)s be false],
      });
  }
  
  sub clause_is_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb)s be a regex pattern],
      });
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_BOOL

$fatpacked{"Data/Sah/Compiler/human/TH/buf.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_BUF';
  package Data::Sah::Compiler::human::TH::buf;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH::str';
  
  sub name { "buffer" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => ["buffer", "buffers"],
          type  => 'noun',
      });
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_BUF

$fatpacked{"Data/Sah/Compiler/human/TH/cistr.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_CISTR';
  package Data::Sah::Compiler::human::TH::cistr;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH::str';
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_CISTR

$fatpacked{"Data/Sah/Compiler/human/TH/code.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_CODE';
  package Data::Sah::Compiler::human::TH::code;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Type::code';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => ["code", "codes"],
          type  => 'noun',
      });
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_CODE

$fatpacked{"Data/Sah/Compiler/human/TH/date.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_DATE';
  package Data::Sah::Compiler::human::TH::date;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Compiler::human::TH::Comparable';
  with 'Data::Sah::Compiler::human::TH::Sortable';
  with 'Data::Sah::Type::date';
  
  sub name { "date" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {type=>'noun', fmt => ["date", "dates"]});
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_DATE

$fatpacked{"Data/Sah/Compiler/human/TH/duration.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_DURATION';
  package Data::Sah::Compiler::human::TH::duration;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Type::duration';
  
  sub name { "duration" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {type=>'noun', fmt => ["duration", "durations"]});
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_DURATION

$fatpacked{"Data/Sah/Compiler/human/TH/float.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_FLOAT';
  package Data::Sah::Compiler::human::TH::float;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Compiler::human::TH::Comparable';
  with 'Data::Sah::Compiler::human::TH::Sortable';
  with 'Data::Sah::Type::float';
  
  sub name { "decimal number" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          type=>'noun',
          fmt => ["decimal number", "decimal numbers"],
      });
  }
  
  sub clause_is_nan {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $cv = $cd->{cl_value};
      if ($cd->{cl_is_expr}) {
          $c->add_ccl($cd, {});
      } else {
          $c->add_ccl($cd, {
              fmt => $cv ?
                  q[%(modal_verb)s be a NaN] :
                      q[%(modal_verb_neg)s be a NaN],
          });
      }
  }
  
  sub clause_is_inf {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $cv = $cd->{cl_value};
      if ($cd->{cl_is_expr}) {
          $c->add_ccl($cd, {});
      } else {
          $c->add_ccl($cd, {
              fmt => $cv ?
                  q[%(modal_verb)s an infinity] :
                      q[%(modal_verb_neg)s an infinity],
          });
      }
  }
  
  sub clause_is_pos_inf {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $cv = $cd->{cl_value};
      if ($cd->{cl_is_expr}) {
          $c->add_ccl($cd, {});
      } else {
          $c->add_ccl($cd, {
              fmt => $cv ?
                  q[%(modal_verb)s a positive infinity] :
                      q[%(modal_verb_neg)s a positive infinity],
          });
      }
  }
  
  sub clause_is_neg_inf {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $cv = $cd->{cl_value};
      if ($cd->{cl_is_expr}) {
          $c->add_ccl($cd, {});
      } else {
          $c->add_ccl($cd, {
              fmt => $cv ?
                  q[%(modal_verb)s a negative infinity] :
                      q[%(modal_verb_neg)s a negative infinity],
          });
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_FLOAT

$fatpacked{"Data/Sah/Compiler/human/TH/hash.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_HASH';
  package Data::Sah::Compiler::human::TH::hash;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Compiler::human::TH::Comparable';
  with 'Data::Sah::Compiler::human::TH::HasElems';
  with 'Data::Sah::Type::hash';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => ["hash", "hashes"],
          type  => 'noun',
      });
  }
  
  sub clause_has {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      $c->add_ccl($cd, {
          expr=>1, multi=>1,
          fmt => "%(modal_verb)s have %s in its %(field)s values"});
  }
  
  sub clause_each_index {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      my %iargs = %{$cd->{args}};
      $iargs{outer_cd}             = $cd;
      $iargs{schema}               = $cv;
      $iargs{schema_is_normalized} = 0;
      my $icd = $c->compile(%iargs);
  
      $c->add_ccl($cd, {
          type  => 'list',
          fmt   => '%(field)s name %(modal_verb)s be',
          items => [
              $icd->{ccls},
          ],
          vals  => [],
      });
  }
  
  sub clause_each_elem {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      my %iargs = %{$cd->{args}};
      $iargs{outer_cd}             = $cd;
      $iargs{schema}               = $cv;
      $iargs{schema_is_normalized} = 0;
      my $icd = $c->compile(%iargs);
  
      $c->add_ccl($cd, {
          type  => 'list',
          fmt   => 'each %(field)s %(modal_verb)s be',
          items => [
              $icd->{ccls},
          ],
          vals  => [],
      });
  }
  
  sub clause_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      for my $k (sort keys %$cv) {
          local $cd->{spath} = [@{$cd->{spath}}, $k];
          my $v = $cv->{$k};
          my %iargs = %{$cd->{args}};
          $iargs{outer_cd}             = $cd;
          $iargs{schema}               = $v;
          $iargs{schema_is_normalized} = 0;
          my $icd = $c->compile(%iargs);
          $c->add_ccl($cd, {
              type  => 'list',
              fmt   => '%(field)s %s %(modal_verb)s be',
              vals  => [$k],
              items => [ $icd->{ccls} ],
          });
      }
  }
  
  sub clause_re_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      for my $k (sort keys %$cv) {
          local $cd->{spath} = [@{$cd->{spath}}, $k];
          my $v = $cv->{$k};
          my %iargs = %{$cd->{args}};
          $iargs{outer_cd}             = $cd;
          $iargs{schema}               = $v;
          $iargs{schema_is_normalized} = 0;
          my $icd = $c->compile(%iargs);
          $c->add_ccl($cd, {
              type  => 'list',
              fmt   => '%(fields)s whose names match regex pattern %s %(modal_verb)s be',
              vals  => [$k],
              items => [ $icd->{ccls} ],
          });
      }
  }
  
  sub clause_req_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb)s have required %(fields)s %s],
          expr  => 1,
      });
  }
  
  sub clause_allowed_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb)s only have these allowed %(fields)s %s],
          expr  => 1,
      });
  }
  
  sub clause_allowed_keys_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb)s only have %(fields)s matching regex pattern %s],
          expr  => 1,
      });
  }
  
  sub clause_forbidden_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb_neg)s have these forbidden %(fields)s %s],
          expr  => 1,
      });
  }
  
  sub clause_forbidden_keys_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb_neg)s have %(fields)s matching regex pattern %s],
          expr  => 1,
      });
  }
  
  sub clause_choose_one_key {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      my $multi = $cd->{cl_is_multi};
      $cd->{cl_is_multi} = 0;
  
      my @ccls;
      for my $cv ($multi ? @{ $cd->{cl_value} } : ($cd->{cl_value})) {
          push @ccls, {
              fmt   => q[%(modal_verb)s contain at most one of these %(fields)s %s],
              vals  => [$cv],
          };
      }
      $c->add_ccl($cd, @ccls);
  }
  
  sub clause_choose_all_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      my $multi = $cd->{cl_is_multi};
      $cd->{cl_is_multi} = 0;
  
      my @ccls;
      for my $cv ($multi ? @{ $cd->{cl_value} } : ($cd->{cl_value})) {
          push @ccls, {
              fmt   => q[%(modal_verb)s contain either none or all of these %(fields)s %s],
              vals  => [$cv],
          };
      }
      $c->add_ccl($cd, @ccls);
  }
  
  sub clause_req_one_key {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      my $multi = $cd->{cl_is_multi};
      $cd->{cl_is_multi} = 0;
  
      my @ccls;
      for my $cv ($multi ? @{ $cd->{cl_value} } : ($cd->{cl_value})) {
          push @ccls, {
              fmt   => q[%(modal_verb)s contain exactly one of these %(fields)s %s],
              vals  => [$cv],
          };
      }
      $c->add_ccl($cd, @ccls);
  }
  
  sub clause_dep_any {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      my $multi = $cd->{cl_is_multi};
      $cd->{cl_is_multi} = 0;
  
      my @ccls;
      for my $cv ($multi ? @{ $cd->{cl_value} } : ($cd->{cl_value})) {
          if (@{ $cv->[1] } == 1) {
              push @ccls, {
                  fmt   => q[%(field)s %2$s %(modal_verb)s be present before %(field)s %1$s can be present],
                  vals  => [$cv->[0], $cv->[1][0]],
              };
          } else {
              push @ccls, {
                  fmt   => q[one of %(fields)s %2$s %(modal_verb)s be present before %(field)s %1$s can be present],
                  vals  => $cv,
                  multi => 0,
              };
          }
      }
      $c->add_ccl($cd, @ccls);
  }
  
  sub clause_dep_all {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      my $multi = $cd->{cl_is_multi};
      $cd->{cl_is_multi} = 0;
  
      my @ccls;
      for my $cv ($multi ? @{ $cd->{cl_value} } : ($cd->{cl_value})) {
          if (@{ $cv->[1] } == 1) {
              push @ccls, {
                  fmt   => q[%(field)s %2$s %(modal_verb)s be present before %(field)s %1$s can be present],
                  vals  => [$cv->[0], $cv->[1][0]],
              };
          } else {
              push @ccls, {
                  fmt   => q[all of %(fields)s %2$s %(modal_verb)s be present before %(field)s %1$s can be present],
                  vals  => $cv,
              };
          }
      }
      $c->add_ccl($cd, @ccls);
  }
  
  sub clause_req_dep_any {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      my $multi = $cd->{cl_is_multi};
      $cd->{cl_is_multi} = 0;
  
      my @ccls;
      for my $cv ($multi ? @{ $cd->{cl_value} } : ($cd->{cl_value})) {
          if (@{ $cv->[1] } == 1) {
              push @ccls, {
                  fmt   => q[%(field)s %1$s %(modal_verb)s be present when %(field)s %2$s is present],
                  vals  => [$cv->[0], $cv->[1][0]],
              };
          } else {
              push @ccls, {
                  fmt   => q[%(field)s %1$s %(modal_verb)s be present when one of %(fields)s %2$s is present],
                  vals  => $cv,
              };
          }
      }
      $c->add_ccl($cd, @ccls);
  }
  
  sub clause_req_dep_all {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
  
      my $multi = $cd->{cl_is_multi};
      $cd->{cl_is_multi} = 0;
  
      my @ccls;
      for my $cv ($multi ? @{ $cd->{cl_value} } : ($cd->{cl_value})) {
          if (@{ $cv->[1] } == 1) {
              push @ccls, {
                  fmt   => q[%(field)s %1$s %(modal_verb)s be present when %(field)s %2$s is present],
                  vals  => [$cv->[0], $cv->[1][0]],
              };
          } else {
              push @ccls, {
                  fmt   => q[%(field)s %1$s %(modal_verb)s be present when all of %(fields)s %2$s are present],
                  vals  => $cv,
              };
          }
      }
      $c->add_ccl($cd, @ccls);
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_HASH

$fatpacked{"Data/Sah/Compiler/human/TH/int.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_INT';
  package Data::Sah::Compiler::human::TH::int;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH::num';
  with 'Data::Sah::Type::int';
  
  sub name { "integer" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          type  => 'noun',
          fmt   => ["integer", "integers"],
      });
  }
  
  sub clause_div_by {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      if (!$cd->{cl_is_multi} && !$cd->{cl_is_expr} &&
              $cv == 2) {
          $c->add_ccl($cd, {
              fmt   => q[%(modal_verb)s be even],
          });
          return;
      }
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb)s be divisible by %s],
          expr  => 1,
      });
  }
  
  sub clause_mod {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      if (!$cd->{cl_is_multi} && !$cd->{cl_is_expr}) {
          if ($cv->[0] == 2 && $cv->[1] == 0) {
              $c->add_ccl($cd, {
                  fmt   => q[%(modal_verb)s be even],
              });
              return;
          } elsif ($cv->[0] == 2 && $cv->[1] == 1) {
              $c->add_ccl($cd, {
                  fmt   => q[%(modal_verb)s be odd],
              });
              return;
          }
      }
  
      my @ccls;
      for my $cv ($cd->{cl_is_multi} ? @{ $cd->{cl_value} } : ($cd->{cl_value})) {
          push @ccls, {
              fmt  => q[%(modal_verb)s leave a remainder of %2$s when divided by %1$s],
              vals => $cv,
          };
      }
      $c->add_ccl($cd, @ccls);
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_INT

$fatpacked{"Data/Sah/Compiler/human/TH/num.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_NUM';
  package Data::Sah::Compiler::human::TH::num;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Compiler::human::TH::Comparable';
  with 'Data::Sah::Compiler::human::TH::Sortable';
  with 'Data::Sah::Type::num';
  
  sub name { "number" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {type=>'noun', fmt => ["number", "numbers"]});
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_NUM

$fatpacked{"Data/Sah/Compiler/human/TH/obj.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_OBJ';
  package Data::Sah::Compiler::human::TH::obj;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Type::obj';
  
  sub name { "object" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => ["object", "objects"],
          type  => 'noun',
      });
  }
  
  sub clause_can {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb)s have method(s) %s],
      });
  }
  
  sub clause_isa {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb)s be subclass of %s],
      });
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_OBJ

$fatpacked{"Data/Sah/Compiler/human/TH/re.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_RE';
  package Data::Sah::Compiler::human::TH::re;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Type::re';
  
  sub name { "regex pattern" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => ["regex pattern", "regex patterns"],
          type  => 'noun',
      });
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_RE

$fatpacked{"Data/Sah/Compiler/human/TH/str.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_STR';
  package Data::Sah::Compiler::human::TH::str;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Compiler::human::TH::Sortable';
  with 'Data::Sah::Compiler::human::TH::Comparable';
  with 'Data::Sah::Compiler::human::TH::HasElems';
  with 'Data::Sah::Type::str';
  
  sub name { "text" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => ["text", "texts"],
          type  => 'noun',
      });
  }
  
  sub clause_each_index {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      my %iargs = %{$cd->{args}};
      $iargs{outer_cd}             = $cd;
      $iargs{schema}               = $cv;
      $iargs{schema_is_normalized} = 0;
      my $icd = $c->compile(%iargs);
  
      $c->add_ccl($cd, {
          type  => 'list',
          fmt   => 'each subscript of text %(modal_verb)s be',
          items => [
              $icd->{ccls},
          ],
          vals  => [],
      });
  }
  
  sub clause_each_elem {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      my %iargs = %{$cd->{args}};
      $iargs{outer_cd}             = $cd;
      $iargs{schema}               = $cv;
      $iargs{schema_is_normalized} = 0;
      my $icd = $c->compile(%iargs);
  
      $c->add_ccl($cd, {
          type  => 'list',
          fmt   => 'each character of the text %(modal_verb)s be',
          items => [
              $icd->{ccls},
          ],
          vals  => [],
      });
  }
  
  sub clause_encoding {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      $c->_die($cd, "Only 'utf8' encoding is currently supported")
          unless $cv eq 'utf8';
  }
  
  sub clause_match {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb)s match regex pattern %s],
      });
  }
  
  sub clause_is_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
  
      $c->add_ccl($cd, {
          fmt   => q[%(modal_verb)s be a regex pattern],
      });
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_STR

$fatpacked{"Data/Sah/Compiler/human/TH/undef.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_HUMAN_TH_UNDEF';
  package Data::Sah::Compiler::human::TH::undef;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::human::TH';
  with 'Data::Sah::Type::undef';
  
  sub name { "undefined value" }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      $c->add_ccl($cd, {
          fmt   => ["undefined value", "undefined values"],
          type  => 'noun',
      });
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_HUMAN_TH_UNDEF

$fatpacked{"Data/Sah/Compiler/js.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS';
  package Data::Sah::Compiler::js;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use String::Indent ();
  
  extends 'Data::Sah::Compiler::Prog';
  
  sub BUILD {
      my ($self, $args) = @_;
  
      $self->comment_style('cpp');
      $self->indent_character(" " x 4);
      $self->var_sigil("");
      $self->concat_op("+");
  }
  
  sub name { "js" }
  
  sub expr {
      my ($self, $expr) = @_;
      $self->expr_compiler->js($expr);
  }
  
  sub literal {
      my ($self, $val) = @_;
  
      state $json = do {
          require JSON;
          JSON->new->allow_nonref;
      };
  
      state $cleanser = do {
          require Data::Clean::JSON;
          Data::Clean::JSON->get_cleanser;
      };
  
      $json->encode($cleanser->clone_and_clean($val));
  }
  
  sub compile {
      my ($self, %args) = @_;
  
  
  
      $self->SUPER::compile(%args);
  }
  
  sub true { "true" }
  
  sub false { "false" }
  
  sub expr_defined {
      my ($self, $t) = @_;
      "!($t === undefined || $t === null)";
  }
  
  sub expr_array_subscript {
      my ($self, $at, $idxt) = @_;
      "$at\[$idxt]";
  }
  
  sub expr_last_elem {
      my ($self, $at, $idxt) = @_;
      "$at\[($at).length-1]";
  }
  
  sub expr_array_0_nmin1 {
      my ($self, $n) = @_;
      "Array($n).join().split(',').map(function(e,i){return i})";
  }
  
  sub expr_array_1_n {
      my ($self, $n) = @_;
      "Array($n).join().split(',').map(function(e,i){return i+1})";
  }
  
  sub expr_push {
      my ($self, $at, $elt) = @_;
      "($at).push($elt)";
  }
  
  sub expr_pop {
      my ($self, $at, $elt) = @_;
      "($at).pop()";
  }
  
  sub expr_push_and_pop_dpath_between_expr {
      my ($self, $et) = @_;
      join(
          "",
          "[",
          $self->expr_push('_sahv_dpath', $self->literal(undef)), ", ", 
          $self->enclose_paren($et), ", ", 
          $self->expr_pop('_sahv_dpath'), 
          "][1]",
      );
  }
  
  sub expr_prefix_dpath {
      my ($self, $t) = @_;
      '(_sahv_dpath.length ? "@" + _sahv_dpath.join("/") + ": " : "") + ' . $t;
  }
  
  sub expr_setif {
      my ($self, $l, $r) = @_;
      "$l = " . $self->expr_defined($l) . " ? $l : $r";
  }
  
  sub expr_set_err_str {
      my ($self, $et, $err_expr) = @_;
      $self->expr_setif($et, $err_expr);
  }
  
  sub expr_set_err_full {
      my ($self, $et, $k, $err_expr) = @_;
      join(
          "",
          "(",
          $self->expr_setif("$et\['$k']", "{}"),
          ",",
          $self->expr_setif("$et\['$k'][_sahv_dpath.join('/')]", $err_expr),
          ")",
      );
  }
  
  sub expr_reset_err_str {
      my ($self, $et, $err_expr) = @_;
      "($et = null, true)";
  }
  
  sub expr_reset_err_full {
      my ($self, $et) = @_;
      join(
          "",
          "(",
          $self->expr_setif("$et\['errors']", "{}"),
          ",",
          "delete($et\['errors'][_sahv_dpath.join('/')])",
          ")",
      );
  }
  
  sub expr_log {
      my ($self, $cd, $ccl) = @_;
      "";
  }
  
  sub expr_block {
      my ($self, $code) = @_;
      join(
          "",
          "(function() {\n",
          String::Indent::indent(
              $self->indent_character,
              $code,
          ),
          "})()",
      );
  }
  
  sub block_uses_sub { 1 }
  
  sub stmt_declare_local_var {
      my $self = shift;
      my $v = shift;
      if (@_) {
          "var $v = $_[0];";
      } else {
          "var $v;";
      }
  }
  
  sub expr_anon_sub {
      my ($self, $args, $code) = @_;
      join(
          "",
          "function(".join(", ", @$args).") {\n",
          String::Indent::indent(
              $self->indent_character,
              $code,
          ),
          "}"
      );
  }
  
  sub stmt_require_module {
      my ($self, $mod, $cd) = @_;
      '';
  }
  
  sub stmt_require_log_module {
      my ($self, $mod) = @_;
      '';
  }
  
  sub stmt_return {
      my $self = shift;
      if (@_) {
          "return($_[0]);";
      } else {
          'return;';
      }
  }
  
  sub expr_validator_sub {
      my ($self, %args) = @_;
  
      $args{data_term} = 'data';
      $self->SUPER::expr_validator_sub(%args);
  }
  
  sub _str2reliteral {
      my ($self, $cd, $str) = @_;
  
      my $re;
      if (ref($str) eq 'Regexp') {
          $re = "$str";
      } else {
          eval { qr/$str/ };
          $self->_die($cd, "Invalid regex $str: $@") if $@;
          $re = $str;
      }
  
      $re = "$re";
      $re =~ s!/!\\/!g;
      "/$re/";
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS

$fatpacked{"Data/Sah/Compiler/js/TH.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH';
  package Data::Sah::Compiler::js::TH;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  
  extends 'Data::Sah::Compiler::Prog::TH';
  
  sub gen_each {
      my ($self, $cd, $indices_expr, $data_name, $data_term, $code_at_sub_begin) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      local $cd->{_subdata_level} = $cd->{_subdata_level} + 1;
      my $use_dpath = $cd->{args}{return_type} ne 'bool';
  
      my %iargs = %{$cd->{args}};
      $iargs{outer_cd}             = $cd;
      $iargs{data_name}            = $data_name,
      $iargs{data_term}            = $data_term,
      $iargs{schema}               = $cv;
      $iargs{schema_is_normalized} = 0;
      $iargs{indent_level}++;
      my $icd = $c->compile(%iargs);
      my @code = (
          "(", $indices_expr, ").every(function(_sahv_idx){", ($code_at_sub_begin // ''), " return(\n",
          ($c->indent_str($cd), "(_sahv_dpath[_sahv_dpath.length ? _sahv_dpath.length-1 : 0] = _sahv_idx),\n") x !!$use_dpath,
          $icd->{result}, "\n",
          $c->indent_str($icd), ")})",
      );
      $c->add_ccl($cd, join("", @code), {subdata=>1});
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH

$fatpacked{"Data/Sah/Compiler/js/TH/all.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_ALL';
  package Data::Sah::Compiler::js::TH::all;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  
  use parent (
      'Data::Sah::Compiler::js::TH',
      'Data::Sah::Compiler::Prog::TH::all',
  );
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_ALL

$fatpacked{"Data/Sah/Compiler/js/TH/any.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_ANY';
  package Data::Sah::Compiler::js::TH::any;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  
  
  use parent (
      'Data::Sah::Compiler::js::TH',
      'Data::Sah::Compiler::Prog::TH::any',
  );
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_ANY

$fatpacked{"Data/Sah/Compiler/js/TH/array.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_ARRAY';
  package Data::Sah::Compiler::js::TH::array;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::array';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "$dt instanceof Array";
  }
  
  my $STR = "JSON.stringify";
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$STR($dt) == $STR($ct)");
      } elsif ($which eq 'in') {
          $c->add_ccl(
              $cd,
              "!($ct).every(function(x){return $STR(x) != $STR($dt) })");
      }
  }
  
  sub superclause_has_elems {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'len') {
          $c->add_ccl($cd, "($dt).length == $ct");
      } elsif ($which eq 'min_len') {
          $c->add_ccl($cd, "($dt).length >= $ct");
      } elsif ($which eq 'max_len') {
          $c->add_ccl($cd, "($dt).length <= $ct");
      } elsif ($which eq 'len_between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl(
                  $cd, "($dt).length >= $ct\->[0] && ($dt).length >= $ct\->[1]");
          } else {
              $c->add_ccl(
                  $cd, "($dt).length >= $cv->[0] && ($dt).length <= $cv->[1]");
          }
      } elsif ($which eq 'has') {
          $c->add_ccl(
              $cd,
              "($dt).map(function(x){return $STR(x)}).indexOf($STR($ct)) > -1");
      } elsif ($which eq 'each_index') {
          $self_th->gen_each($cd,
                             $c->expr_array_0_nmin1("($dt).length"), '_sahv_idx', '_sahv_idx');
      } elsif ($which eq 'each_elem') {
          $self_th->gen_each($cd,
                             $c->expr_array_0_nmin1("($dt).length"), '_sahv_idx', "$dt\[_sahv_idx]");
      } elsif ($which eq 'check_each_index') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'check_each_elem') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'uniq') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'exists') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      }
  }
  
  sub clause_elems {
      my ($self_th, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      local $cd->{_subdata_level} = $cd->{_subdata_level} + 1;
      my $use_dpath = $cd->{args}{return_type} ne 'bool';
  
      my $jccl;
      {
          local $cd->{ccls} = [];
  
          my $cdef = $cd->{clset}{"elems.create_default"} // 1;
          delete $cd->{uclset}{"elems.create_default"};
  
          for my $i (0..@$cv-1) {
              local $cd->{spath} = [@{$cd->{spath}}, $i];
              my $sch = $c->main->normalize_schema($cv->[$i]);
              my $edt = "$dt\[$i]";
              my %iargs = %{$cd->{args}};
              $iargs{outer_cd}             = $cd;
              $iargs{data_name}            = "$cd->{args}{data_name}_$i";
              $iargs{data_term}            = $edt;
              $iargs{schema}               = $sch;
              $iargs{schema_is_normalized} = 1;
              $iargs{indent_level}++;
              my $icd = $c->compile(%iargs);
              my @code = (
                  ($c->indent_str($cd), "(_sahv_dpath[-1] = $i),\n") x !!$use_dpath,
                  $icd->{result}, "\n",
              );
              my $ires = join("", @code);
              local $cd->{_debug_ccl_note} = "elem: $i";
              if ($cdef && defined($sch->[1]{default})) {
                  $c->add_ccl($cd, $ires);
              } else {
                  $c->add_ccl($cd, "($dt).length < ".($i+1)." || ($ires)");
              }
          }
          $jccl = $c->join_ccls(
              $cd, $cd->{ccls}, {err_msg => ''});
      }
      $c->add_ccl($cd, $jccl, {subdata=>1});
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_ARRAY

$fatpacked{"Data/Sah/Compiler/js/TH/bool.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_BOOL';
  package Data::Sah::Compiler::js::TH::bool;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::bool';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "typeof($dt)=='boolean' || typeof($dt)=='number' || typeof($dt)=='string'";
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "!!($dt) == !!($ct)");
      } elsif ($which eq 'in') {
          $c->add_ccl($cd, "($ct).map(function(x){return !!x}).indexOf(!!($dt)) > -1");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "!!($dt) >= !!($ct)");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "!!($dt) > !!($ct)");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "!!($dt) <= !!($ct)");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "!!($dt) < !!($ct)");
      } elsif ($which eq 'between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "!!($dt) >= !!($ct\->[0]) && ".
                              "!!($dt) <= !!($ct\->[1])");
          } else {
              $c->add_ccl($cd, "!!($dt) >= !!($cv->[0]) && ".
                              "!!($dt) <= !!($cv->[1])");
          }
      } elsif ($which eq 'xbetween') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "!!($dt) > !!($ct\->[0]) && ".
                              "!!($dt) < !!($ct\->[1])");
          } else {
              $c->add_ccl($cd, "!!($dt) > !!($cv->[0]) && ".
                              "!!($dt) < !!($cv->[1])");
          }
      }
  }
  
  sub clause_is_true {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, "$ct ? !!($dt) : !(".$c->expr_defined($ct).") ? true : !($dt)");
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_BOOL

$fatpacked{"Data/Sah/Compiler/js/TH/buf.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_BUF';
  package Data::Sah::Compiler::js::TH::buf;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH::str';
  with 'Data::Sah::Type::buf';
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_BUF

$fatpacked{"Data/Sah/Compiler/js/TH/cistr.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_CISTR';
  package Data::Sah::Compiler::js::TH::cistr;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH::str';
  with 'Data::Sah::Type::cistr';
  
  sub before_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
  
      $self->set_tmp_data_term($cd, "typeof($dt)=='number' ? ''+$dt : typeof($dt)=='string' ? ($dt).toLowerCase() : $dt");
  }
  
  sub after_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $self->restore_data_term($cd);
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$dt == ($ct).toLowerCase()");
      } elsif ($which eq 'in') {
          $c->add_ccl($cd, "($ct).map(function(x) { return x.toLowerCase() }).indexOf($dt) > -1");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "$dt >= ($ct).toLowerCase()");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "$dt > ($ct).toLowerCase()");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "$dt <= ($ct).toLowerCase()");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "$dt < ($ct).toLowerCase()");
      } elsif ($which eq 'between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt >= (($ct)[0]).toLowerCase() && ".
                              "$dt <= (($ct)[1]).toLowerCase()");
          } else {
              $c->add_ccl($cd, "$dt >= ".$c->literal(lc $cv->[0]).
                              " && $dt <= ".$c->literal(lc $cv->[1]));
          }
      } elsif ($which eq 'xbetween') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt > (($ct)[0]).toLowerCase() && ".
                              "$dt < (($ct)[1]).toLowerCase()");
          } else {
              $c->add_ccl($cd, "$dt > ".$c->literal(lc $cv->[0]).
                              " && $dt < ".$c->literal(lc $cv->[1]));
          }
      }
  }
  
  sub superclause_has_elems {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'has') {
          $c->add_ccl($cd, "($dt).indexOf(($ct).toLowerCase()) > -1");
      } else {
          $self_th->SUPER::superclause_has_elems($which, $cd);
      }
  }
  
  sub clause_match {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      my $re;
      if ($cd->{cl_is_expr}) {
          $re = $ct;
      } else {
          $re = $c->_str2reliteral($cd, $cv);
      }
  
      $c->add_ccl($cd, join(
          "",
          "(function(){ ",
          "var _sahv_match = true; ",
          "try { _sahv_match = ($dt).match(RegExp($re)) } catch(e) { if (e.name=='SyntaxError') _sahv_match = false } ",
          ($cd->{cl_is_expr} ?
               "return _sahv_match == !!($ct);" :
                   "return ".($cv ? '':'!')."!!_sahv_match;"),
          "} )()",
      ));
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_CISTR

$fatpacked{"Data/Sah/Compiler/js/TH/code.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_CODE';
  package Data::Sah::Compiler::js::TH::code;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::code';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "typeof($dt)=='function'";
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_CODE

$fatpacked{"Data/Sah/Compiler/js/TH/date.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_DATE';
  package Data::Sah::Compiler::js::TH::date;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  use Scalar::Util qw(blessed looks_like_number);
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::date';
  
  my $epoch_low  = 10**8;
  my $epoch_high = 2**31;
  
  
  sub expr_coerce_term {
      my ($self, $cd, $t) = @_;
  
      join(
          '',
          "(",
          "($t instanceof Date) ? $t : ",
          "typeof($t)=='number' ? (new Date($t * 1000)) : ",
          "parseFloat($t)==$t   ? (new Date(parseFloat($t)) * 1000) : ",
          "(new Date($t))",
          ")",
      );
  }
  
  sub expr_coerce_value {
      my ($self, $cd, $v) = @_;
  
      if (blessed($v) && $v->isa('DateTime')) {
          return join(
              '',
              "(new Date(",
              $v->year, ",",
              $v->month, ",",
              $v->day, ",",
              $v->hour, ",",
              $v->minute, ",",
              $v->second, ",",
              $v->millisecond,
              "))",
          );
      } elsif (looks_like_number($v) && $v >= 10**8 && $v <= 2**31) {
          return "(new Date($v*1000))";
      } elsif ($v =~ /\A([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z\z/) {
          require DateTime;
          eval { DateTime->new(year=>$1, month=>$2, day=>$3,
                               hour=>$4, minute=>$5, second=>$6,
                               time_zone=>'UTC') ; 1 }
              or die "Invalid date literal '$v': $@";
          return "(new Date(\"$v\"))";
      } elsif ($v =~ /\A([0-9]{4})-([0-9]{2})-([0-9]{2})\z/) {
          require DateTime;
          eval { DateTime->new(year=>$1, month=>$2, day=>$3) ; 1 }
              or die "Invalid date literal '$v': $@";
          return "(new Date(\"$v\"))";
      } else {
          die "Invalid date literal '$v'";
      }
  }
  
  sub handle_type {
      my ($self, $cd) = @_;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = join(
          '',
          "(",
          "typeof($dt)=='number' ? ($dt >= $epoch_low && $dt <= $epoch_high) : ",
          "parseFloat($dt)==$dt ? (parseFloat($dt) >= $epoch_low && parseFloat($dt) <= $epoch_high) : ",
          "!isNaN((new Date($dt)).getYear())",
          ")",
      );
  }
  
  sub before_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
  
      $self->set_tmp_data_term($cd, $self->expr_coerce_term($cd, $dt));
  }
  
  sub after_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $self->restore_data_term($cd);
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          if ($cd->{cl_is_expr}) {
              $ct = $self->expr_coerce_term($cd, $ct);
          } else {
              $ct = $self->expr_coerce_value($cd, $cv);
          }
          $c->add_ccl($cd, "+($dt) === +($ct)");
      } elsif ($which eq 'in') {
          $c->add_module('List::Util');
          if ($cd->{cl_is_expr}) {
              $c->_die($cd, "date's in clause with expression not yet supported");
          }
          $ct = '['.join(', ', map { "+(".$self->expr_coerce_value($cd, $_).")" } @$ct).']';
          $c->add_ccl($cd, "($ct).indexOf(+($dt)) > -1");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->_die($cd, "date's comparison with expression not yet supported");
      }
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "+($dt) >= +(".$self->expr_coerce_value($cd, $cv).")");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "+($dt) > +(".$self->expr_coerce_value($cd, $cv).")");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "+($dt) <= +(".$self->expr_coerce_value($cd, $cv).")");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "+($dt) < +(".$self->expr_coerce_value($cd, $cv).")");
      } elsif ($which eq 'between') {
          $c->add_ccl($cd, "+($dt) >= +(".$self->expr_coerce_value($cd, $cv->[0]).") && ".
                          "+($dt) <= +(".$self->expr_coerce_value($cd, $cv->[1]).")");
      } elsif ($which eq 'xbetween') {
          $c->add_ccl($cd, "+($dt) > +(".$self->expr_coerce_value($cd, $cv->[0]).") && ".
                          "+($dt) < +(".$self->expr_coerce_value($cd, $cv->[1]).")");
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_DATE

$fatpacked{"Data/Sah/Compiler/js/TH/float.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_FLOAT';
  package Data::Sah::Compiler::js::TH::float;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH::num';
  with 'Data::Sah::Type::float';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $cd->{_ccl_check_type} = "(typeof($dt)=='number' || parseFloat($dt)==$dt)";
  }
  
  sub clause_is_nan {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->add_ccl(
              $cd,
              join(
                  "",
                  "$ct ? isNaN($dt) : ",
                  $self->expr_defined($ct), " ? !isNaN($dt) : true",
              )
          );
      } else {
          if ($cd->{cl_value}) {
              $c->add_ccl($cd, "isNaN($dt)");
          } elsif (defined $cd->{cl_value}) {
              $c->add_ccl($cd, "!isNaN($dt)");
          }
      }
  }
  
  sub clause_is_pos_inf {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->add_ccl(
              $cd,
              join(
                  "",
                  "$ct ? $dt == Infinity : ",
                  $self->expr_defined($ct), " ? $dt != Infinity : true",
              )
          );
      } else {
          if ($cd->{cl_value}) {
              $c->add_ccl($cd, "$dt == Infinity");
          } elsif (defined $cd->{cl_value}) {
              $c->add_ccl($cd, "$dt != Infinity");
          }
      }
  }
  
  sub clause_is_neg_inf {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->add_ccl(
              $cd,
              join(
                  "",
                  "$ct ? $dt == -Infinity : ",
                  $self->expr_defined($ct), " ? $dt != -Infinity : true",
              )
          );
      } else {
          if ($cd->{cl_value}) {
              $c->add_ccl($cd, "$dt == -Infinity");
          } elsif (defined $cd->{cl_value}) {
              $c->add_ccl($cd, "$dt != -Infinity");
          }
      }
  }
  
  sub clause_is_inf {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->add_ccl(
              $cd,
              join(
                  "",
                  "$ct ? Math.abs($dt) == Infinity : ",
                  $self->expr_defined($ct), " ? Math.abs($dt) != Infinity : true",
              )
          );
      } else {
          if ($cd->{cl_value}) {
              $c->add_ccl($cd, "Math.abs($dt) == Infinity");
          } elsif (defined $cd->{cl_value}) {
              $c->add_ccl($cd, "Math.abs($dt) != Infinity");
          }
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_FLOAT

$fatpacked{"Data/Sah/Compiler/js/TH/hash.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_HASH';
  package Data::Sah::Compiler::js::TH::hash;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::hash';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "typeof($dt)=='object' && !($dt instanceof Array)";
  }
  
  my $STR = "JSON.stringify";
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$STR($dt) == $STR($ct)");
      } elsif ($which eq 'in') {
          $c->add_ccl(
              $cd,
              "!($ct).every(function(x){return $STR(x) != $STR($dt) })");
      }
  }
  
  sub superclause_has_elems {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
  
      if ($which eq 'len') {
          $c->add_ccl($cd, "Object.keys($dt).length == $ct");
      } elsif ($which eq 'min_len') {
          $c->add_ccl($cd, "Object.keys($dt).length >= $ct");
      } elsif ($which eq 'max_len') {
          $c->add_ccl($cd, "Object.keys($dt).length <= $ct");
      } elsif ($which eq 'len_between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl(
                  $cd, "Object.keys($dt).length >= $ct\->[0] && ".
                      "Object.keys($dt).length >= $ct\->[1]");
          } else {
              $c->add_ccl(
                  $cd, "Object.keys($dt).length >= $cv->[0] && ".
                      "Object.keys($dt).length <= $cv->[1]");
          }
      } elsif ($which eq 'has') {
          $c->add_ccl(
              $cd,
              "!Object.keys($dt).every(function(x){return $STR(($dt)[x]) != $STR($ct) })");
      } elsif ($which eq 'each_index') {
          $self_th->gen_each($cd, "Object.keys($dt)", '_sahv_idx', '_sahv_idx');
      } elsif ($which eq 'each_elem') {
          $self_th->gen_each($cd, "Object.keys($dt)", '_sahv_idx', "$dt\[_sahv_idx]");
      } elsif ($which eq 'check_each_index') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'check_each_elem') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'uniq') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'exists') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      }
  }
  
  sub _clause_keys_or_re_keys {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      local $cd->{_subdata_level} = $cd->{_subdata_level} + 1;
      my $use_dpath = $cd->{args}{return_type} ne 'bool';
  
  
      my $jccl;
      {
          local $cd->{ccls} = [];
  
          my $chk_x_unknown;
          my $filt_x_unknown;
          if ($which eq 'keys') {
              my $lit_valid_keys = $c->literal([keys %$cv]);
              $chk_x_unknown  = "$lit_valid_keys.indexOf(x) > -1";
              $filt_x_unknown = "$lit_valid_keys.indexOf(x) == -1";
          } else {
              my $lit_regexes = "[".
                  join(",", map { $c->_str2reliteral($cd, $_) }
                           keys %$cv)."]";
              $chk_x_unknown  = "!$lit_regexes.every(function(y) { return !x.match(y) })";
              $filt_x_unknown = "$lit_regexes.every(function(y) { return !x.match(y) })";
          }
  
          if ($cd->{clset}{"$which.restrict"} // 1) {
              local $cd->{_debug_ccl_note} = "$which.restrict";
              $c->add_ccl(
                  $cd,
                  "Object.keys($dt).every(function(x){ return $chk_x_unknown })",
                  {
                      err_msg => 'TMP1',
                      err_expr => join(
                          "",
                          $c->literal($c->_xlt(
                              $cd, "hash contains ".
                                  "unknown field(s) (%s)")),
                          '.replace("%s", ',
                          "Object.keys($dt).filter(function(x){ return $filt_x_unknown }).join(', ')",
                          ')',
                      ),
                  },
              );
          }
          delete $cd->{uclset}{"$which.restrict"};
  
          my $cdef;
          if ($which eq 'keys') {
              $cdef = $cd->{clset}{"keys.create_default"} // 1;
              delete $cd->{uclset}{"keys.create_default"};
          }
  
          my $nkeys = scalar(keys %$cv);
          my $i = 0;
          for my $k (sort keys %$cv) {
              my $kre = $c->_str2reliteral($cd, $k);
              local $cd->{spath} = [@{ $cd->{spath} }, $k];
              ++$i;
              my $sch = $c->main->normalize_schema($cv->{$k});
              my $kdn = $k; $kdn =~ s/\W+/_/g;
              my $klit = $which eq 're_keys' ? 'x' : $c->literal($k);
              my $kdt = "$dt\[$klit]";
              my %iargs = %{$cd->{args}};
              $iargs{outer_cd}             = $cd;
              $iargs{data_name}            = $kdn;
              $iargs{data_term}            = $kdt;
              $iargs{schema}               = $sch;
              $iargs{schema_is_normalized} = 1;
              $iargs{indent_level}++;
              my $icd = $c->compile(%iargs);
  
              my $sdef = $cdef && defined($sch->[1]{default});
  
              $c->add_var($cd, '_sahv_stack', []) if $use_dpath;
  
              my @code = (
                  ($c->indent_str($cd), "(_sahv_dpath.push(null), _sahv_stack.push(null), _sahv_stack[_sahv_stack.length-1] = \n")
                      x !!($use_dpath && $i == 1),
  
                  ("Object.keys($dt).every(function(x) { return (")
                      x !!($which eq 're_keys'),
  
                  $which eq 're_keys' ? "!x.match($kre) || (" :
                      ($sdef ? "" : "!$dt.hasOwnProperty($klit) || ("),
  
                  ($c->indent_str($cd), "(_sahv_dpath[_sahv_dpath.length-1] = ".
                       ($which eq 're_keys' ? 'x' : $klit)."),\n") x !!$use_dpath,
                  $icd->{result}, "\n",
  
                  $which eq 're_keys' || !$sdef ? ")" : "",
  
                  (") })")
                      x !!($which eq 're_keys'),
  
                  ($c->indent_str($cd), "), _sahv_dpath.pop(), _sahv_stack.pop()\n")
                      x !!($use_dpath && $i == $nkeys),
              );
              my $ires = join("", @code);
              local $cd->{_debug_ccl_note} = "$which: ".$c->literal($k);
              $c->add_ccl($cd, $ires);
          }
          $jccl = $c->join_ccls(
              $cd, $cd->{ccls}, {err_msg => ''});
      }
      $c->add_ccl($cd, $jccl, {});
  }
  
  sub clause_keys {
      my ($self, $cd) = @_;
      $self->_clause_keys_or_re_keys('keys', $cd);
  }
  
  sub clause_re_keys {
      my ($self, $cd) = @_;
      $self->_clause_keys_or_re_keys('re_keys', $cd);
  }
  
  sub clause_req_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
        $cd,
        "($ct).every(function(x){ return Object.keys($dt).indexOf(x) > -1 })", 
        {
          err_msg => 'TMP',
          err_expr => join(
              "",
              $c->literal($c->_xlt(
                  $cd, "hash has missing required field(s) (%s)")),
              '.replace("%s", ',
              "($ct).filter(function(x){ return Object.keys($dt).indexOf(x) == -1 }).join(', ')",
              ')',
          ),
        }
      );
  }
  
  sub clause_allowed_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
        $cd,
        "Object.keys($dt).every(function(x){ return ($ct).indexOf(x) > -1 })", 
        {
          err_msg => 'TMP',
          err_expr => join(
              "",
              $c->literal($c->_xlt(
                  $cd, "hash contains non-allowed field(s) (%s)")),
              '.replace("%s", ',
              "Object.keys($dt).filter(function(x){ return ($ct).indexOf(x) == -1 }).join(', ')",
              ')',
          ),
        }
      );
  }
  
  sub clause_allowed_keys_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->_die_unimplemented_clause($cd, "with expr");
      }
  
      my $re = $c->_str2reliteral($cd, $cv);
      $c->add_ccl(
        $cd,
        "Object.keys($dt).every(function(x){ return x.match(RegExp($re)) })",
        {
          err_msg => 'TMP',
          err_expr => join(
              "",
              $c->literal($c->_xlt(
                  $cd, "hash contains non-allowed field(s) (%s)")),
              '.replace("%s", ',
              "Object.keys($dt).filter(function(x){ return !x.match(RegExp($re)) }).join(', ')",
              ')',
          ),
        }
      );
  }
  
  sub clause_forbidden_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
        $cd,
        "Object.keys($dt).every(function(x){ return ($ct).indexOf(x) == -1 })", 
        {
          err_msg => 'TMP',
          err_expr => join(
              "",
              $c->literal($c->_xlt(
                  $cd, "hash contains forbidden field(s) (%s)")),
              '.replace("%s", ',
              "Object.keys($dt).filter(function(x){ return ($ct).indexOf(x) > -1 }).join(', ')",
              ')',
          ),
        }
      );
  }
  
  sub clause_forbidden_keys_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->_die_unimplemented_clause($cd, "with expr");
      }
  
      my $re = $c->_str2reliteral($cd, $cv);
      $c->add_ccl(
        $cd,
        "Object.keys($dt).every(function(x){ return !x.match(RegExp($re)) })",
        {
          err_msg => 'TMP',
          err_expr => join(
              "",
              $c->literal($c->_xlt(
                  $cd, "hash contains forbidden field(s) (%s)")),
              '.replace("%s", ',
              "Object.keys($dt).filter(function(x){ return x.match(RegExp($re)) }).join(', ')",
              ')',
          ),
        }
      );
  }
  
  sub clause_choose_one_key {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
          $cd,
          join(
              "",
              "($ct).map(function(x) {",
              "  return ($dt).hasOwnProperty(x) ? 1:0",
              "}).reduce(function(a,b){ return a+b }) <= 1",
          ),
          {},
      );
  }
  
  sub clause_choose_all_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
          $cd,
          join(
              "",
              "[0, ($ct).length].indexOf(",
              "  ($ct).map(function(x) {",
              "    return ($dt).hasOwnProperty(x) ? 1:0",
              "  }).reduce(function(a,b){ return a+b })",
              ") >= 0",
          ),
          {},
      );
  }
  
  sub clause_req_one_key {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
          $cd,
          join(
              "",
              "($ct).map(function(x) {",
              "  return ($dt).hasOwnProperty(x) ? 1:0",
              "}).reduce(function(a,b){ return a+b }) == 1",
          ),
          {},
      );
  }
  
  sub clause_dep_any {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
          $cd,
          join(
              "",
              "(function(_sahv_ct, _sahv_has_prereq, _sahv_has_dep) {", 
              "  _sahv_ct = $ct; ",
              "  _sahv_has_prereq = (_sahv_ct[1]).map(function(x) {",
              "    return ($dt).hasOwnProperty(x) ? 1:0",
              "  }).reduce(function(a,b){ return a+b }) > 0; ",
              "  _sahv_has_dep    = (_sahv_ct[0].constructor===Array ? _sahv_ct[0] : [_sahv_ct[0]]).map(function(x) {",
              "    return ($dt).hasOwnProperty(x) ? 1:0",
              "  }).reduce(function(a,b){ return a+b }) > 0; ",
              "  return !_sahv_has_dep || _sahv_has_prereq",
              "})()",
          ),
          {},
      );
  }
  
  sub clause_dep_all {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
          $cd,
          join(
              "",
              "(function(_sahv_ct, _sahv_has_prereq, _sahv_has_dep) {", 
              "  _sahv_ct = $ct; ",
              "  _sahv_has_prereq = (_sahv_ct[1]).map(function(x) {",
              "    return ($dt).hasOwnProperty(x) ? 1:0",
              "  }).reduce(function(a,b){ return a+b }) == _sahv_ct[1].length; ",
              "  _sahv_has_dep    = (_sahv_ct[0].constructor===Array ? _sahv_ct[0] : [_sahv_ct[0]]).map(function(x) {",
              "    return ($dt).hasOwnProperty(x) ? 1:0",
              "  }).reduce(function(a,b){ return a+b }) > 0; ",
              "  return !_sahv_has_dep || _sahv_has_prereq",
              "})()",
          ),
          {},
      );
  }
  
  sub clause_req_dep_any {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
          $cd,
          join(
              "",
              "(function(_sahv_ct, _sahv_has_prereq, _sahv_has_dep) {", 
              "  _sahv_ct = $ct; ",
              "  _sahv_has_prereq = (_sahv_ct[1]).map(function(x) {",
              "    return ($dt).hasOwnProperty(x) ? 1:0",
              "  }).reduce(function(a,b){ return a+b }) > 0; ",
              "  _sahv_has_dep    = (_sahv_ct[0].constructor===Array ? _sahv_ct[0] : [_sahv_ct[0]]).map(function(x) {",
              "    return ($dt).hasOwnProperty(x) ? 1:0",
              "  }).reduce(function(a,b){ return a+b }) > 0; ",
              "  return _sahv_has_dep || !_sahv_has_prereq",
              "})()",
          ),
          {},
      );
  }
  
  sub clause_req_dep_all {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl(
          $cd,
          join(
              "",
              "(function(_sahv_ct, _sahv_has_prereq, _sahv_has_dep) {", 
              "  _sahv_ct = $ct; ",
              "  _sahv_has_prereq = (_sahv_ct[1]).map(function(x) {",
              "    return ($dt).hasOwnProperty(x) ? 1:0",
              "  }).reduce(function(a,b){ return a+b }) == _sahv_ct[1].length; ",
              "  _sahv_has_dep    = (_sahv_ct[0].constructor===Array ? _sahv_ct[0] : [_sahv_ct[0]]).map(function(x) {",
              "    return ($dt).hasOwnProperty(x) ? 1:0",
              "  }).reduce(function(a,b){ return a+b }) > 0; ",
              "  return _sahv_has_dep || !_sahv_has_prereq",
              "})()",
          ),
          {},
      );
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_HASH

$fatpacked{"Data/Sah/Compiler/js/TH/int.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_INT';
  package Data::Sah::Compiler::js::TH::int;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH::num';
  with 'Data::Sah::Type::int';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $cd->{_ccl_check_type} = "(typeof($dt)=='number' && Math.round($dt)==$dt || parseInt($dt)==$dt)";
  }
  
  sub clause_div_by {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, "$dt % $ct == 0");
  }
  
  sub clause_mod {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, "$dt % $ct\[0] == $ct\[1]");
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_INT

$fatpacked{"Data/Sah/Compiler/js/TH/num.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_NUM';
  package Data::Sah::Compiler::js::TH::num;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::num';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $cd->{_ccl_check_type} = "(typeof($dt)=='number' || parseFloat($dt)==$dt)";
  }
  
  sub before_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
  
      $self->set_tmp_data_term(
          $cd, "typeof($dt)=='number' ? $dt : parseFloat($dt)");
  }
  
  sub after_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $self->restore_data_term($cd);
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$dt == $ct");
      } elsif ($which eq 'in') {
          $c->add_ccl($cd, "($ct).indexOf($dt) > -1");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "$dt >= $ct");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "$dt > $ct");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "$dt <= $ct");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "$dt < $ct");
      } elsif ($which eq 'between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt >= $ct\[0] && $dt <= $ct\[1]");
          } else {
              $c->add_ccl($cd, "$dt >= $cv->[0] && $dt <= $cv->[1]");
          }
      } elsif ($which eq 'xbetween') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt > $ct\[0] && $dt < $ct\[1]");
          } else {
              $c->add_ccl($cd, "$dt > $cv->[0] && $dt < $cv->[1]");
          }
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_NUM

$fatpacked{"Data/Sah/Compiler/js/TH/obj.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_OBJ';
  package Data::Sah::Compiler::js::TH::obj;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::obj';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $cd->{_ccl_check_type} = "typeof($dt) == 'object'";
  }
  
  sub clause_can {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, "typeof($dt\[$ct])=='function'");
  }
  
  sub clause_isa {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->_die_unimplemented_clause($cd);
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_OBJ

$fatpacked{"Data/Sah/Compiler/js/TH/re.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_RE';
  package Data::Sah::Compiler::js::TH::re;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::re';
  
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "$dt instanceof RegExp";
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_RE

$fatpacked{"Data/Sah/Compiler/js/TH/str.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_STR';
  package Data::Sah::Compiler::js::TH::str;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::str';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "typeof($dt)=='string' || typeof($dt)=='number'";
  }
  
  sub before_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
  
      $self->set_tmp_data_term($cd, "typeof($dt)=='number' ? ''+$dt : $dt");
  }
  
  sub after_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $self->restore_data_term($cd);
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$dt == $ct");
      } elsif ($which eq 'in') {
          $c->add_ccl($cd, "($ct).indexOf($dt) > -1");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "$dt >= $ct");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "$dt > $ct");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "$dt <= $ct");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "$dt < $ct");
      } elsif ($which eq 'between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt >= ($ct)[0] && $dt <= ($ct)[1]");
          } else {
              $c->add_ccl($cd, "$dt >= ".$c->literal($cv->[0]).
                              " && $dt <= ".$c->literal($cv->[1]));
          }
      } elsif ($which eq 'xbetween') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt > ($ct)[0] && $dt < ($ct)[1]");
          } else {
              $c->add_ccl($cd, "$dt > ".$c->literal($cv->[0]).
                              " && $dt < ".$c->literal($cv->[1]));
          }
      }
  }
  
  sub superclause_has_elems {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'len') {
          $c->add_ccl($cd, "($dt).length == $ct");
      } elsif ($which eq 'min_len') {
          $c->add_ccl($cd, "($dt).length >= $ct");
      } elsif ($which eq 'max_len') {
          $c->add_ccl($cd, "($dt).length <= $ct");
      } elsif ($which eq 'len_between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl(
                  $cd, "($dt).length >= ($ct)[0] && ".
                      "($dt).length >= ($ct)[1]");
          } else {
              $c->add_ccl(
                  $cd, "($dt).length >= $cv->[0] && ".
                      "($dt).length <= $cv->[1]");
          }
      } elsif ($which eq 'has') {
          $c->add_ccl($cd, "($dt).indexOf($ct) > -1");
      } elsif ($which eq 'each_index') {
          $self_th->gen_each($cd, $c->expr_array_0_nmin1("($dt).length"), '_sahv_idx', '_sahv_idx');
      } elsif ($which eq 'each_elem') {
          $self_th->gen_each($cd, $c->expr_array_0_nmin1("($dt).length"), '_sahv_idx', "$dt.charAt(_sahv_idx)");
      } elsif ($which eq 'check_each_index') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'check_each_elem') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'uniq') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'exists') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      }
  }
  
  sub clause_encoding {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->_die($cd, "Only 'utf8' encoding is currently supported")
          unless $cv eq 'utf8';
  }
  
  sub clause_match {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      my $re;
      if ($cd->{cl_is_expr}) {
          $re = $ct;
      } else {
          $re = $c->_str2reliteral($cd, $cv);
      }
  
      $c->add_ccl($cd, join(
          "",
          "(function(){ ",
          "var _sahv_match = true; ",
          "try { _sahv_match = ($dt).match(RegExp($re)) } catch(e) { if (e.name=='SyntaxError') _sahv_match = false } ",
          ($cd->{cl_is_expr} ?
               "return _sahv_match == !!($ct);" :
                   "return ".($cv ? '':'!')."!!_sahv_match;"),
          "} )()",
      ));
  }
  
  sub clause_is_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, join(
          "",
          "(function(){ var _sahv_is_re = true; ",
          "try { RegExp($dt) } catch(e) { if (e.name=='SyntaxError') _sahv_is_re = false } ",
          ($cd->{cl_is_expr} ?
              "return _sahv_is_re == !!($ct);" :
                  "return ".($cv ? '':'!')."_sahv_is_re;"),
          "} )()",
      ));
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_STR

$fatpacked{"Data/Sah/Compiler/js/TH/undef.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_JS_TH_UNDEF';
  package Data::Sah::Compiler::js::TH::undef;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::js::TH';
  with 'Data::Sah::Type::undef';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "$dt === undefined || $dt === null";
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_JS_TH_UNDEF

$fatpacked{"Data/Sah/Compiler/perl.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL';
  package Data::Sah::Compiler::perl;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Data::Dmp qw(dmp);
  use Mo qw(build default);
  use String::Indent ();
  
  extends 'Data::Sah::Compiler::Prog';
  
  our $PP;
  our $CORE;
  our $CORE_OR_PP;
  our $NO_MODULES;
  
  sub BUILD {
      my ($self, $args) = @_;
  
      $self->comment_style('shell');
      $self->indent_character(" " x 4);
      $self->var_sigil('$');
      $self->concat_op(".");
  }
  
  sub name { "perl" }
  
  sub literal {
      dmp($_[1]);
  }
  
  sub expr {
      my ($self, $expr) = @_;
      $self->expr_compiler->perl($expr);
  }
  
  sub compile {
      my ($self, %args) = @_;
  
  
  
      $args{pp} //= $PP // $ENV{DATA_SAH_PP} // 0;
      $args{core} //= $CORE // $ENV{DATA_SAH_CORE} // 0;
      $args{core_or_pp} //= $CORE_OR_PP // $ENV{DATA_SAH_CORE_OR_PP} // 0;
      $args{no_modules} //= $NO_MODULES // $ENV{DATA_SAH_NO_MODULES} // 0;
  
      $self->SUPER::compile(%args);
  }
  
  sub init_cd {
      my ($self, %args) = @_;
  
      my $cd = $self->SUPER::init_cd(%args);
  
      if (my $ocd = $cd->{outer_cd}) {
          $cd->{module_statements} = $ocd->{module_statements};
      } else {
          $cd->{module_statements} = {};
      }
  
      $self->add_no($cd, 'warnings', ["'void'"]) unless $cd->{args}{no_modules};
  
      $cd;
  }
  
  sub true { "1" }
  
  sub false { "''" }
  
  sub add_module {
      my ($self, $cd, $name) = @_;
      $self->SUPER::add_module($cd, $name);
  
      if ($cd->{args}{no_modules}) {
          die "BUG: Use of module '$name' when compile option no_modules=1";
      }
  
      if ($cd->{args}{pp}) {
          if ($name =~ /\A(DateTime|List::Util|Scalar::Util|Scalar::Util::Numeric|Storable|Time::Moment|Time::Piece)\z/) {
              die "Use of XS module '$name' when compile option pp=1";
          } elsif ($name =~ /\A(experimental|warnings|DateTime::Duration|Scalar::Util::Numeric::PP)\z/) {
          } else {
              die "BUG: Haven't noted about Perl module '$name' as being pp/xs";
          }
      }
  
      if ($cd->{args}{core}) {
          if ($name =~ /\A(experimental|DateTime|DateTime::Duration|Scalar::Util::Numeric|Scalar::Util::Numeric::PP|Time::Moment)\z/) {
              die "Use of non-core module '$name' when compile option core=1";
          } elsif ($name =~ /\A(warnings|List::Util|Scalar::Util|Storable|Time::Piece)\z/) {
          } else {
              die "BUG: Haven't noted about Perl module '$name' as being core/non-core";
          }
      }
  
      if ($cd->{args}{core_or_pp}) {
          if ($name =~ /\A(DateTime|Scalar::Util::Numeric|Time::Moment)\z/) {
              die "Use of non-core XS module '$name' when compile option core_or_pp=1";
          } elsif ($name =~ /\A(experimental|warnings|DateTime::Duration|List::Util|Scalar::Util|Scalar::Util::Numeric::PP|Storable|Time::Piece)\z/) {
          } else {
              die "BUG: Haven't noted about Perl module '$name' as being core_or_pp/not";
          }
      }
  }
  
  sub add_use {
      my ($self, $cd, $name, $imports) = @_;
  
      die "BUG: imports must be an arrayref"
          if defined($imports) && ref($imports) ne 'ARRAY';
      $self->add_module($cd, $name);
      $cd->{module_statements}{$name} = ['use', $imports];
  }
  
  sub add_no {
      my ($self, $cd, $name, $imports) = @_;
  
      die "BUG: imports must be an arrayref"
          if defined($imports) && ref($imports) ne 'ARRAY';
      $self->add_module($cd, $name);
      $cd->{module_statements}{$name} = ['no', $imports];
  }
  
  sub add_smartmatch_pragma {
      my ($self, $cd) = @_;
      $self->add_use($cd, 'experimental', ["'smartmatch'"]);
  }
  
  sub add_sun_module {
      my ($self, $cd) = @_;
      if ($cd->{args}{pp} || $cd->{args}{core_or_pp} ||
              !eval { require Scalar::Util::Numeric; 1 }) {
          $cd->{_sun_module} = 'Scalar::Util::Numeric::PP';
      } elsif ($cd->{args}{core}) {
          $cd->{_sun_module} = 'Foo';
      } else {
          $cd->{_sun_module} = 'Scalar::Util::Numeric';
      }
      $self->add_module($cd, $cd->{_sun_module});
  }
  
  sub expr_defined {
      my ($self, $t) = @_;
      "defined($t)";
  }
  
  sub expr_array_subscript {
      my ($self, $at, $idxt) = @_;
      "$at->\[$idxt]";
  }
  
  sub expr_last_elem {
      my ($self, $at, $idxt) = @_;
      "$at->\[-1]";
  }
  
  sub expr_push {
      my ($self, $at, $elt) = @_;
      "push(\@{$at}, $elt)";
  }
  
  sub expr_pop {
      my ($self, $at, $elt) = @_;
      "pop(\@{$at})";
  }
  
  sub expr_push_and_pop_dpath_between_expr {
      my ($self, $et) = @_;
      join(
          "",
          "[",
          $self->expr_push('$_sahv_dpath', $self->literal(undef)), ", ", 
          "~~", $self->enclose_paren($et), ", ", 
          $self->expr_pop('$_sahv_dpath'), 
          "]->[1]",
      );
  }
  
  sub expr_prefix_dpath {
      my ($self, $t) = @_;
      '(@$_sahv_dpath ? \'@\'.join("/",@$_sahv_dpath).": " : "") . ' . $t;
  }
  
  sub expr_setif {
      my ($self, $l, $r) = @_;
      "($l //= $r)";
  }
  
  sub expr_set_err_str {
      my ($self, $et, $err_expr) = @_;
      "($et //= $err_expr)";
  }
  
  sub expr_set_err_full {
      my ($self, $et, $k, $err_expr) = @_;
      "($et\->{$k}{join('/',\@\$_sahv_dpath)} //= $err_expr)";
  }
  
  sub expr_reset_err_str {
      my ($self, $et, $err_expr) = @_;
      "($et = undef, 1)";
  }
  
  sub expr_reset_err_full {
      my ($self, $et) = @_;
      "(delete($et\->{errors}{join('/',\@\$_sahv_dpath)}), 1)";
  }
  
  sub expr_log {
      my ($self, $cd, @expr) = @_;
  
      "\$log->tracef('[sah validator](spath=%s) %s', " .
          $self->literal($cd->{spath}).", " . join(", ", @expr) . ")";
  }
  
  sub expr_block {
      my ($self, $code) = @_;
      join(
          "",
          "do {\n",
          String::Indent::indent(
              $self->indent_character,
              $code,
          ),
          "}",
      );
  }
  
  sub block_uses_sub { 0 }
  
  sub stmt_declare_local_var {
      my ($self, $v, $vt) = @_;
      if ($vt eq 'undef') {
          "my \$$v;";
      } else {
          "my \$$v = $vt;";
      }
  }
  
  sub expr_anon_sub {
      my ($self, $args, $code) = @_;
      join(
          "",
          "sub {\n",
          String::Indent::indent(
              $self->indent_character,
              join(
                  "",
                  ("my (".join(", ", @$args).") = \@_;\n") x !!@$args,
                  $code,
              ),
          ),
          "}"
      );
  }
  
  sub stmt_require_module {
      my ($self, $mod, $cd) = @_;
      my $ms = $cd->{module_statements};
  
      if (!$ms->{$mod}) {
          "require $mod;";
      } elsif ($ms->{$mod}[0] eq 'use' || $ms->{$mod}[0] eq 'no') {
          my $verb = $ms->{$mod}[0];
          if (!$ms->{$mod}[1]) {
              "$verb $mod;";
          } else {
              "$verb $mod (".join(", ", @{ $ms->{$mod}[1] }).");";
          }
      }
  }
  
  sub stmt_require_log_module {
      my ($self, $mod) = @_;
      'use Log::Any qw($log);';
  }
  
  sub stmt_return {
      my $self = shift;
      if (@_) {
          "return($_[0]);";
      } else {
          'return;';
      }
  }
  
  sub expr_validator_sub {
      my ($self, %args) = @_;
  
      $self->check_compile_args(\%args);
  
      my $aref = delete $args{accept_ref};
      if ($aref) {
          $args{var_term}  = '$ref_'.$args{data_name};
          $args{data_term} = '$$ref_'.$args{data_name};
      } else {
          $args{var_term}  = '$'.$args{data_name};
          $args{data_term} = '$'.$args{data_name};
      }
  
      $self->SUPER::expr_validator_sub(%args);
  }
  
  sub _str2reliteral {
      require Regexp::Stringify;
  
      my ($self, $cd, $str) = @_;
  
      my $re;
      if (ref($str) eq 'Regexp') {
          $re = $str;
      } else {
          eval { $re = qr/$str/ };
          $self->_die($cd, "Invalid regex $str: $@") if $@;
      }
  
      Regexp::Stringify::stringify_regexp(regexp=>$re, plver=>5.010);
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL

$fatpacked{"Data/Sah/Compiler/perl/TH.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH';
  package Data::Sah::Compiler::perl::TH;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::Prog::TH';
  
  sub gen_each {
      my ($self, $cd, $indices_expr, $data_name, $data_term, $code_at_sub_begin) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      local $cd->{_subdata_level} = $cd->{_subdata_level} + 1;
      my $use_dpath = $cd->{args}{return_type} ne 'bool';
  
      $c->add_module($cd, 'List::Util');
      my %iargs = %{$cd->{args}};
      $iargs{outer_cd}             = $cd;
      $iargs{data_name}            = $data_name;
      $iargs{data_term}            = $data_term;
      $iargs{schema}               = $cv;
      $iargs{schema_is_normalized} = 0;
      $iargs{indent_level}++;
      my $icd = $c->compile(%iargs);
      my @code = (
          "!defined(List::Util::first(sub {", ($code_at_sub_begin // ''), "!(\n",
          ($c->indent_str($cd),
           "(\$_sahv_dpath->[-1] = \$_),\n") x !!$use_dpath,
           $icd->{result}, "\n",
           $c->indent_str($icd), ")}, ",
           $indices_expr,
           "))",
      );
      $c->add_ccl($cd, join("", @code), {subdata=>1});
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH

$fatpacked{"Data/Sah/Compiler/perl/TH/all.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_ALL';
  package Data::Sah::Compiler::perl::TH::all;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  
  use parent (
      'Data::Sah::Compiler::perl::TH',
      'Data::Sah::Compiler::Prog::TH::all',
  );
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_ALL

$fatpacked{"Data/Sah/Compiler/perl/TH/any.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_ANY';
  package Data::Sah::Compiler::perl::TH::any;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  
  use parent (
      'Data::Sah::Compiler::perl::TH',
      'Data::Sah::Compiler::Prog::TH::any',
  );
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_ANY

$fatpacked{"Data/Sah/Compiler/perl/TH/array.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_ARRAY';
  package Data::Sah::Compiler::perl::TH::array;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::array';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "ref($dt) eq 'ARRAY'";
  }
  
  my $FRZ = "Storable::freeze";
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_module($cd, 'Storable');
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$FRZ($dt) eq $FRZ($ct)");
      } elsif ($which eq 'in') {
          $c->add_smartmatch_pragma($cd);
          $c->add_ccl($cd, "$FRZ($dt) ~~ [map {$FRZ(\$_)} \@{ $ct }]");
      }
  }
  
  sub superclause_has_elems {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'len') {
          $c->add_ccl($cd, "\@{$dt} == $ct");
      } elsif ($which eq 'min_len') {
          $c->add_ccl($cd, "\@{$dt} >= $ct");
      } elsif ($which eq 'max_len') {
          $c->add_ccl($cd, "\@{$dt} <= $ct");
      } elsif ($which eq 'len_between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl(
                  $cd, "\@{$dt} >= $ct\->[0] && \@{$dt} >= $ct\->[1]");
          } else {
              $c->add_ccl(
                  $cd, "\@{$dt} >= $cv->[0] && \@{$dt} <= $cv->[1]");
          }
      } elsif ($which eq 'has') {
          $c->add_smartmatch_pragma($cd);
  
          $c->add_ccl($cd, "$ct ~~ $dt");
      } elsif ($which eq 'each_index') {
          $self_th->gen_each($cd, "0..\@{$dt}-1", '_', '$_');
      } elsif ($which eq 'each_elem') {
          $self_th->gen_each($cd, "0..\@{$dt}-1", '_', "$dt\->[\$_]");
      } elsif ($which eq 'check_each_index') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'check_each_elem') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'uniq') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'exists') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      }
  }
  
  sub clause_elems {
      my ($self_th, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      local $cd->{_subdata_level} = $cd->{_subdata_level} + 1;
      my $use_dpath = $cd->{args}{return_type} ne 'bool';
  
      my $jccl;
      {
          local $cd->{ccls} = [];
  
          my $cdef = $cd->{clset}{"elems.create_default"} // 1;
          delete $cd->{uclset}{"elems.create_default"};
  
          for my $i (0..@$cv-1) {
              local $cd->{spath} = [@{$cd->{spath}}, $i];
              my $sch = $c->main->normalize_schema($cv->[$i]);
              my $edt = "$dt\->[$i]";
              my %iargs = %{$cd->{args}};
              $iargs{outer_cd}             = $cd;
              $iargs{data_name}            = "$cd->{args}{data_name}_$i";
              $iargs{data_term}            = $edt;
              $iargs{schema}               = $sch;
              $iargs{schema_is_normalized} = 1;
              $iargs{indent_level}++;
              my $icd = $c->compile(%iargs);
              my @code = (
                  ($c->indent_str($cd), "(\$_sahv_dpath->[-1] = $i),\n") x !!$use_dpath,
                  $icd->{result}, "\n",
              );
              my $ires = join("", @code);
              local $cd->{_debug_ccl_note} = "elem: $i";
              if ($cdef && defined($sch->[1]{default})) {
                  $c->add_ccl($cd, $ires);
              } else {
                  $c->add_ccl($cd, "\@{$dt} < ".($i+1)." || ($ires)");
              }
          }
          $jccl = $c->join_ccls(
              $cd, $cd->{ccls}, {err_msg => ''});
      }
      $c->add_ccl($cd, $jccl, {subdata=>1});
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_ARRAY

$fatpacked{"Data/Sah/Compiler/perl/TH/bool.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_BOOL';
  package Data::Sah::Compiler::perl::TH::bool;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::bool';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "!ref($dt)";
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "($dt ? 1:0) == ($ct ? 1:0)");
      } elsif ($which eq 'in') {
          $c->add_smartmatch_pragma($cd);
          $c->add_ccl($cd, "($dt ? 1:0) ~~ [map {\$_?1:0} \@{$ct}]");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "($dt ? 1:0) >= ($ct ? 1:0)");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "($dt ? 1:0) > ($ct ? 1:0)");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "($dt ? 1:0) <= ($ct ? 1:0)");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "($dt ? 1:0) < ($ct ? 1:0)");
      } elsif ($which eq 'between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "($dt ? 1:0) >= ($ct\->[0] ? 1:0) && ".
                              "($dt ? 1:0) <= ($ct\->[1] ? 1:0)");
          } else {
              $c->add_ccl($cd, "($dt ? 1:0) >= ($cv->[0] ? 1:0) && ".
                              "($dt ? 1:0) <= ($cv->[1] ? 1:0)");
          }
      } elsif ($which eq 'xbetween') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "($dt ? 1:0) > ($ct\->[0] ? 1:0) && ".
                              "($dt ? 1:0) < ($ct\->[1] ? 1:0)");
          } else {
              $c->add_ccl($cd, "($dt ? 1:0) > ($cv->[0] ? 1:0) && ".
                              "($dt ? 1:0) < ($cv->[1] ? 1:0)");
          }
      }
  }
  
  sub clause_is_true {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, "($ct) ? $dt : !defined($ct) ? 1 : !$dt");
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_BOOL

$fatpacked{"Data/Sah/Compiler/perl/TH/buf.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_BUF';
  package Data::Sah::Compiler::perl::TH::buf;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH::str';
  with 'Data::Sah::Type::buf';
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_BUF

$fatpacked{"Data/Sah/Compiler/perl/TH/cistr.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_CISTR';
  package Data::Sah::Compiler::perl::TH::cistr;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH::str';
  with 'Data::Sah::Type::cistr';
  
  sub before_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
  
      $self->set_tmp_data_term($cd, "lc($dt)");
  }
  
  sub after_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $self->restore_data_term($cd);
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$dt eq lc($ct)");
      } elsif ($which eq 'in') {
          $c->add_smartmatch_pragma($cd);
          $c->add_ccl($cd, "$dt ~~ [map {lc} \@{ $ct }]");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "$dt ge lc($ct)");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "$dt gt lc($ct)");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "$dt le lc($ct)");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "$dt lt lc($ct)");
      } elsif ($which eq 'between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt ge lc($ct\->[0]) && ".
                              "$dt le lc($ct\->[1])");
          } else {
              $c->add_ccl($cd, "$dt ge ".$c->literal(lc $cv->[0]).
                              " && $dt le ".$c->literal(lc $cv->[1]));
          }
      } elsif ($which eq 'xbetween') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt gt lc($ct\->[0]) && ".
                              "$dt lt lc($ct\->[1])");
          } else {
              $c->add_ccl($cd, "$dt gt ".$c->literal(lc $cv->[0]).
                              " && $dt lt ".$c->literal(lc $cv->[1]));
          }
      }
  }
  
  sub superclause_has_elems {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'has') {
          $c->add_ccl($cd, "index($dt, lc($ct)) > -1");
      } else {
          $self_th->SUPER::superclause_has_elems($which, $cd);
      }
  }
  
  sub __change_re_str_switch {
      my $re = shift;
  
      if ($^V ge v5.14.0) {
          state $sub = sub { my $s = shift; $s =~ /i/ ? $s : "i$s" };
          $re =~ s/\A\(\?\^(\w*):/"(?".$sub->($1).":"/e;
      } else {
          state $subl = sub { my $s = shift; $s =~ /i/ ? $s : "i$s" };
          state $subr = sub { my $s = shift; $s =~ s/i//; $s };
          $re =~ s/\A\(\?(\w*)-(\w*):/"(?".$subl->($1)."-".$subr->($2).":"/e;
      }
      return $re;
  }
  
  sub clause_match {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->add_ccl($cd, join(
              "",
              "ref($ct) eq 'Regexp' ? $dt =~ qr/$ct/i : ",
              "do { my \$re = $ct; eval { \$re = /\$re/i; 1 } && ",
              "$dt =~ \$re }",
          ));
      } else {
          my $re = $c->_str2reliteral($cd, $cv);
          $re = __change_re_str_switch($re);
          $c->add_ccl($cd, "$dt =~ /$re/i");
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_CISTR

$fatpacked{"Data/Sah/Compiler/perl/TH/code.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_CODE';
  package Data::Sah::Compiler::perl::TH::code;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::code';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "ref($dt) eq 'CODE'";
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_CODE

$fatpacked{"Data/Sah/Compiler/perl/TH/date.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_DATE';
  package Data::Sah::Compiler::perl::TH::date;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  use Scalar::Util qw(blessed looks_like_number);
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::date';
  
  sub expr_coerce_term {
      my ($self, $cd, $t) = @_;
  
      my $c = $self->compiler;
  
      $c->add_module($cd, 'Scalar::Util');
  
      join(
          '',
          "(",
          "(Scalar::Util::blessed($t) && $t->isa('DateTime')) ? $t : ",
          "(Scalar::Util::looks_like_number($t) && $t >= 10**8 && $t <= 2**31) ? (require DateTime && DateTime->from_epoch(epoch=>$t)) : ",
          "$t =~ /\\A([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z\\z/ ? require DateTime && DateTime->new(year=>\$1, month=>\$2, day=>\$3, hour=>\$4, minute=>\$5, second=>\$6, time_zone=>'UTC') : ",
          "$t =~ /\\A([0-9]{4})-([0-9]{2})-([0-9]{2})\\z/ ? require DateTime && DateTime->new(year=>\$1, month=>\$2, day=>\$3, time_zone=>'UTC') : die(\"BUG: can't coerce date\")",
          ")",
      );
  }
  
  sub expr_coerce_value {
      my ($self, $cd, $v) = @_;
  
      my $c = $self->compiler;
  
      if (blessed($v) && $v->isa('DateTime')) {
          return join(
              '',
              "DateTime->new(",
              "year=>",   $v->year, ",",
              "month=>",  $v->month, ",",
              "day=>",    $v->day, ",",
              "hour=>",   $v->hour, ",",
              "minute=>", $v->minute, ",",
              "second=>", $v->second, ",",
              "timezone=>'UTC',",
              ")",
          );
      } elsif (looks_like_number($v) && $v >= 10**8 && $v <= 2**31) {
          return "require DateTime && DateTime->from_epoch(epoch=>$v)";
      } elsif ($v =~ /\A([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z\z/) {
          require DateTime;
          eval { DateTime->new(year=>$1, month=>$2, day=>$3,
                               hour=>$4, minute=>$5, second=>$6,
                               time_zone=>'UTC') ; 1 }
              or die "Invalid date literal '$v': $@";
          return "DateTime->new(year=>$1, month=>$2, day=>$3, hour=>$4, minute=>$5, second=>$6, time_zone=>'UTC')";
      } elsif ($v =~ /\A([0-9]{4})-([0-9]{2})-([0-9]{2})\z/) {
          require DateTime;
          eval { DateTime->new(year=>$1, month=>$2, day=>$3, time_zone=>'UTC') ; 1 }
              or die "Invalid date literal '$v': $@";
          return "DateTime->new(year=>$1, month=>$2, day=>$3, time_zone=>'UTC')";
      } else {
          die "Invalid date literal '$v'";
      }
  }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $dt = $cd->{data_term};
  
      $c->add_module($cd, 'Scalar::Util');
      $cd->{_ccl_check_type} = join(
          '',
          "(",
          "(Scalar::Util::blessed($dt) && $dt->isa('DateTime'))",
          " || ",
          "(Scalar::Util::looks_like_number($dt) && $dt >= 10**8 && $dt <= 2**31)",
          " || ",
          "($dt =~ /\\A([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z\\z/ && eval { require DateTime; DateTime->new(year=>\$1, month=>\$2, day=>\$3, hour=>\$4, minute=>\$5, second=>\$6, time_zone=>'UTC'); 1})",
          " || ",
          "($dt =~ /\\A([0-9]{4})-([0-9]{2})-([0-9]{2})\\z/ && eval { require DateTime; DateTime->new(year=>\$1, month=>\$2, day=>\$3, time_zone=>'UTC'); 1})",
          ")",
      );
  }
  
  sub before_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $self->set_tmp_data_term($cd, $self->expr_coerce_term($cd, $dt))
          if $cd->{has_constraint_clause}; 
  }
  
  sub after_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $self->restore_data_term($cd)
          if $cd->{has_constraint_clause};
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          if ($cd->{cl_is_expr}) {
              $ct = $self->expr_coerce_term($cd, $ct);
          } else {
              $ct = $self->expr_coerce_value($cd, $cv);
          }
          $c->add_ccl($cd, "DateTime->compare($dt, $ct)==0");
      } elsif ($which eq 'in') {
          $c->add_module('List::Util');
          if ($cd->{cl_is_expr}) {
              $c->_die($cd, "date's in clause with expression not yet supported");
          } else {
              $ct = join(', ', map { $self->expr_coerce_value($cd, $_) } @$cv);
          };
          $c->add_ccl($cd, "List::Util::first(sub{DateTime->compare($dt, \$_)==0}, $ct)");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->_die($cd, "date's comparison with expression not yet supported");
      }
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "DateTime->compare($dt, ".
                          $self->expr_coerce_value($cd, $cv).") >= 0");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "DateTime->compare($dt, ".
                          $self->expr_coerce_value($cd, $cv).") > 0");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "DateTime->compare($dt, ".
                          $self->expr_coerce_value($cd, $cv).") <= 0");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "DateTime->compare($dt, ".
                          $self->expr_coerce_value($cd, $cv).") < 0");
      } elsif ($which eq 'between') {
          $c->add_ccl($cd,
                      join(
                          '',
                          "DateTime->compare($dt, ",
                          $self->expr_coerce_value($cd, $cv->[0]).") >= 0 && ",
                          "DateTime->compare($dt, ",
                          $self->expr_coerce_value($cd, $cv->[1]).") <= 0",
                      ));
      } elsif ($which eq 'xbetween') {
          $c->add_ccl($cd,
                      join(
                          '',
                          "DateTime->compare($dt, ",
                          $self->expr_coerce_value($cd, $cv->[0]).") > 0 && ",
                          "DateTime->compare($dt, ",
                          $self->expr_coerce_value($cd, $cv->[1]).") < 0",
                      ));
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_DATE

$fatpacked{"Data/Sah/Compiler/perl/TH/duration.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_DURATION';
  package Data::Sah::Compiler::perl::TH::duration;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  use Scalar::Util qw(blessed looks_like_number);
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::duration';
  
  sub expr_coerce_term {
      my ($self, $cd, $t) = @_;
  
      my $c = $self->compiler;
  
  
  
      $c->add_module($cd, 'Scalar::Util');
  
      join(
          '',
          "(",
          "(Scalar::Util::blessed($t) && $t->isa('DateTime::Duration')) ? $t : ",
          "(Scalar::Util::looks_like_number($t) && $t >= 0 ? $t : (require DateTime::Duration && DateTime::Duration->new(seconds=>$t))",
          "$t =~ /\\AP(?:([0-9]+(?:\\.[0-9]+)?)Y)? (?:([0-9]+(?:\\.[0-9]+)?)M)? (?:([0-9]+(?:\\.[0-9]+)?)W)? (?:([0-9]+(?:\\.[0-9]+)?)D)? (?: T (?:([0-9]+(?:\\.[0-9]+)?)H)? (?:([0-9]+(?:\\.[0-9]+)?)M)? (?:([0-9]+(?:\\.[0-9]+)?)S)? )?\\z/x ? require DateTime::Duration && DateTime::Duration->new(years=>\$1||0, months=>\$2||0, weeks=>\$3||0, days=>\$4||0, hours=>\$5||0, minutes=>\$6||0, seconds=>\$7||0) : ",
          "do { my \$d; eval { require Time::Duration::Parse::AsHash; \$d = Time::Duration::Parse::AsHash::parse_duration($t) }; \$@ ? undef : require DateTime::Duration && DateTime::Duration->new(years=>\$d->{years}//0, months=>\$d->{months}//0, weeks=>\$d->{weeks}//0, days=>\$d->{days}//0, hours=>\$d->{hours}//0, minutes=>\$d->{minutes}//0, seconds=>\$d->{seconds}//0) } : die(\"BUG: can't coerce duration\")",
          ")",
      );
  }
  
  sub expr_coerce_value {
      my ($self, $cd, $v) = @_;
  
      my $c = $self->compiler;
  
      my $d;
  
      if (blessed($v) && $v->isa('DateTime::Duration')) {
          return join(
              '',
              "DateTime::Duration->new(",
              "years=>",   $v->years,   ",",
              "months=>",  $v->months,  ",",
              "weeks=>",   $v->weeks,   ",",
              "days=>",    $v->days,    ",",
              "hours=>",   $v->hours,   ",",
              "minutes=>", $v->minutes, ",",
              "seconds=>", $v->seconds, ",",
              ")",
          );
      } if (looks_like_number($v) && $v >= 0) {
          return "require DateTime::Duration && DateTime::Duration->new(seconds=>$v)";
      } elsif ($v =~ /\AP
                      (?:([0-9]+(?:\.[0-9]+)?)Y)?
                      (?:([0-9]+(?:\.[0-9]+)?)M)?
                      (?:([0-9]+(?:\.[0-9]+)?)W)?
                      (?:([0-9]+(?:\.[0-9]+)?)D)?
                      (?: T
                          (?:([0-9]+(?:\.[0-9]+)?)H)?
                          (?:([0-9]+(?:\.[0-9]+)?)M)?
                          (?:([0-9]+(?:\.[0-9]+)?)S)?
                      )?\z/x) {
          return "require DateTime::Duration && DateTime::Duration->new(years=>".($1||0).", months=>".($2||0).", weeks=>".($3||0).", days=>".($4||0).", hours=>".($5||0).", minutes=>".($6||0).", seconds=>".($7||0).")";
      } elsif (eval { require Time::Duration::Parse::AsHash; $d = Time::Duration::Parse::AsHash::parse_duration($v) } && !$@) {
          return "require DateTime::Duration && DateTime::Duration->new(years=>".($d->{years}||0).", months=>".($d->{months}||0).", weeks=>".($d->{weeks}||0).", days=>".($d->{days}||0).", hours=>".($d->{hours}||0).", minutes=>".($d->{minutes}||0).", seconds=>".($d->{seconds}||0).")";
      } else {
          die "Invalid duration literal '$v'";
      }
  }
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $dt = $cd->{data_term};
  
      $c->add_module($cd, 'Scalar::Util');
      $cd->{_ccl_check_type} = join(
          '',
          "(",
          "(Scalar::Util::blessed($dt) && $dt->isa('DateTime::Duration'))",
          " || ",
          "(Scalar::Util::looks_like_number($dt) && $dt >= 0)",
          " || ",
          "($dt =~ /\\AP(?:([0-9]+(?:\\.[0-9]+)?)Y)? (?:([0-9]+(?:\\.[0-9]+)?)M)? (?:([0-9]+(?:\\.[0-9]+)?)W)? (?:([0-9]+(?:\\.[0-9]+)?)D)? (?: T (?:([0-9]+(?:\\.[0-9]+)?)H)? (?:([0-9]+(?:\\.[0-9]+)?)M)? (?:([0-9]+(?:\\.[0-9]+)?)S)? )?\\z/x)", 
          " || ",
          "do { my \$d; eval { require Time::Duration::Parse::AsHash; \$d = Time::Duration::Parse::AsHash::parse_duration($dt) }; !\$@ }",
          ")",
      );
  }
  
  sub before_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
  
      $self->set_tmp_data_term($cd, $self->expr_coerce_term($cd, $dt))
          if $cd->{has_constraint_clause}; 
  }
  
  sub after_all_clauses {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      $self->restore_data_term($cd)
          if $cd->{has_constraint_clause};
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_DURATION

$fatpacked{"Data/Sah/Compiler/perl/TH/float.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_FLOAT';
  package Data::Sah::Compiler::perl::TH::float;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH::num';
  with 'Data::Sah::Type::float';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      if ($cd->{args}{core} || $cd->{args}{no_modules}) {
          $cd->{_ccl_check_type} = "$dt =~ ".'/\A(?:[+-]?(?:0|[1-9][0-9]*)(\.[0-9]+)?([eE][+-]?[0-9]+)?|((?i)\s*nan\s*)|((?i)\s*[+-]?inf(inity)?)\s*)\z/';
      } else {
          $c->add_sun_module($cd);
          $cd->{_ccl_check_type} = "$cd->{_sun_module}::isnum($dt)";
      }
  }
  
  sub clause_is_nan {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          if ($cd->{args}{core} || $cd->{args}{no_modules}) {
              $c->add_ccl(
                  $cd,
                  qq[$ct ? lc($dt+0) eq "nan" : defined($ct) ? lc($dt+0) ne "nan" : 1],
              );
          } else {
              $c->add_ccl(
                  $cd,
                  join(
                      "",
                      "$ct ? $cd->{_sun_module}::isnan($dt) : ",
                      "defined($ct) ? !$cd->{_sun_module}::isnan($dt) : 1",
                  )
              );
          }
      } else {
          if ($cd->{cl_value}) {
              if ($cd->{args}{core} || $cd->{args}{no_modules}) {
                  $c->add_ccl($cd, qq[lc($dt+0) eq "nan"]);
              } else {
                  $c->add_ccl($cd, "$cd->{_sun_module}::isnan($dt)");
              }
          } elsif (defined $cd->{cl_value}) {
              if ($cd->{args}{core} || $cd->{args}{no_modules}) {
                  $c->add_ccl($cd, qq[lc($dt+0) ne "nan"]);
              } else {
                  $c->add_ccl($cd, "!$cd->{_sun_module}::isnan($dt)");
              }
          }
      }
  }
  
  sub clause_is_neg_inf {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          if ($cd->{args}{core} || $cd->{args}{no_modules}) {
              $c->add_ccl(
                  $cd, join(
                      '',
                      qq[$ct ? $dt =~ /\\A\\s*-inf(inity)?\\s*\\z/i : ],
                      qq[defined($ct) ? $dt !~ /\\A\\s*inf(inity)?\\s*\\z/i : 1]
                  ));
          } else {
              $c->add_ccl(
                  $cd, join(
                      '',
                      "$ct ? $cd->{_sun_module}::isinf($dt) && $cd->{_sun_module}::isneg($dt) : ",
                      "defined($ct) ? !($cd->{_sun_module}::isinf($dt) && $cd->{_sun_module}::isneg($dt)) : 1",
                  ));
          }
      } else {
          if ($cd->{cl_value}) {
              if ($cd->{args}{core} || $cd->{args}{no_modules}) {
                  $c->add_ccl($cd, qq[$dt =~ /\\A\\s*-inf(inity)?\\s*\\z/i]);
              } else {
                  $c->add_ccl($cd, "$cd->{_sun_module}::isinf($dt) && $cd->{_sun_module}::isneg($dt)");
              }
          } elsif (defined $cd->{cl_value}) {
              if ($cd->{args}{core} || $cd->{args}{no_modules}) {
                  $c->add_ccl($cd, qq[$dt !~ /\\A\\s*-inf(inity)?\\s*\\z/i]);
              } else {
                  $c->add_ccl($cd, "!($cd->{_sun_module}::isinf($dt) && $cd->{_sun_module}::isneg($dt))");
              }
          }
      }
  }
  
  sub clause_is_pos_inf {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          if ($cd->{args}{core} || $cd->{args}{no_modules}) {
              $c->add_ccl(
                  $cd, join(
                      '',
                      qq[$ct ? $dt =~ /\\A\\s*inf(inity)?\\s*\\z/i : ],
                      qq[defined($ct) ? $dt !~ /\\A\\s*inf(inity)?\\s*\\z/i : 1]
                  ));
          } else {
              $c->add_ccl(
                  $cd, join(
                      '',
                      "$ct ? $cd->{_sun_module}::isinf($dt) && !$cd->{_sun_module}::isneg($dt) : ",
                      "defined($ct) ? !($cd->{_sun_module}::isinf($dt) && !$cd->{_sun_module}::isneg($dt)) : 1",
                  ));
          }
      } else {
          if ($cd->{cl_value}) {
              if ($cd->{args}{core} || $cd->{args}{no_modules}) {
                  $c->add_ccl($cd, qq[$dt =~ /\\A\\s*inf(inity)?\\s*\\z/i]);
              } else {
                  $c->add_ccl($cd, "$cd->{_sun_module}::isinf($dt) && !$cd->{_sun_module}::isneg($dt)");
              }
          } elsif (defined $cd->{cl_value}) {
              if ($cd->{args}{core} || $cd->{args}{no_modules}) {
                  $c->add_ccl($cd, qq[$dt !~ /\\A\\s*inf(inity)?\\s*\\z/i]);
              } else {
                  $c->add_ccl($cd, "!($cd->{_sun_module}::isinf($dt) && !$cd->{_sun_module}::isneg($dt))");
              }
          }
      }
  }
  
  sub clause_is_inf {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          if ($cd->{args}{core} || $cd->{args}{no_modules}) {
              $c->add_ccl(
                  $cd, join(
                      '',
                      qq[$ct ? $dt =~ /\\A\\s*-?inf(inity)?\\s*\\z/i : ],
                      qq[defined($ct) ? $dt+0 !~ /\\A-?inf\\z/ : 1]
                  ));
          } else {
              $c->add_ccl($cd, "$ct ? $cd->{_sun_module}::isinf($dt) : ".
                              "defined($ct) ? $cd->{_sun_module}::isinf($dt) : 1");
          }
      } else {
          if ($cd->{cl_value}) {
              if ($cd->{args}{core} || $cd->{args}{no_modules}) {
                  $c->add_ccl($cd, qq[$dt =~ /\\A\\s*-?inf(inity)?\\s*\\z/i]);
              } else {
                  $c->add_ccl($cd, "$cd->{_sun_module}::isinf($dt)");
              }
          } elsif (defined $cd->{cl_value}) {
              if ($cd->{args}{core} || $cd->{args}{no_modules}) {
                  $c->add_ccl($cd, qq[$dt !~ /\\A\\s*-?inf(inity)?\\s*\\z/i]);
              } else {
                  $c->add_ccl($cd, "!$cd->{_sun_module}::isinf($dt)");
              }
          }
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_FLOAT

$fatpacked{"Data/Sah/Compiler/perl/TH/hash.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_HASH';
  package Data::Sah::Compiler::perl::TH::hash;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::hash';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "ref($dt) eq 'HASH'";
  }
  
  my $FRZ = "Storable::freeze";
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_module($cd, 'Storable');
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$FRZ($dt) eq $FRZ($ct)");
      } elsif ($which eq 'in') {
          $c->add_smartmatch_pragma($cd);
          $c->add_ccl($cd, "$FRZ($dt) ~~ [map {$FRZ(\$_)} \@{ $ct }]");
      }
  }
  
  sub superclause_has_elems {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'len') {
          $c->add_ccl($cd, "keys(\%{$dt}) == $ct");
      } elsif ($which eq 'min_len') {
          $c->add_ccl($cd, "keys(\%{$dt}) >= $ct");
      } elsif ($which eq 'max_len') {
          $c->add_ccl($cd, "keys(\%{$dt}) <= $ct");
      } elsif ($which eq 'len_between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl(
                  $cd, "keys(\%{$dt}) >= $ct\->[0] && ".
                      "keys(\%{$dt}) >= $ct\->[1]");
          } else {
              $c->add_ccl(
                  $cd, "keys(\%{$dt}) >= $cv->[0] && ".
                      "keys(\%{$dt}) <= $cv->[1]");
          }
      } elsif ($which eq 'has') {
          $c->add_smartmatch_pragma($cd);
  
          $c->add_ccl($cd, "$ct ~~ [values \%{ $dt }]");
      } elsif ($which eq 'each_index') {
          $self_th->gen_each($cd, "sort keys(\%{$dt})", '', '$_');
      } elsif ($which eq 'each_elem') {
          $self_th->gen_each($cd, "sort keys(\%{$dt})", '_', "$dt\->{\$_}");
      } elsif ($which eq 'check_each_index') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'check_each_elem') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'uniq') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'exists') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      }
  }
  
  sub _clause_keys_or_re_keys {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      local $cd->{_subdata_level} = $cd->{_subdata_level} + 1;
      my $use_dpath = $cd->{args}{return_type} ne 'bool';
  
  
      my $jccl;
      {
          local $cd->{ccls} = [];
  
          my $lit_valid_keys;
          if ($which eq 'keys') {
              $lit_valid_keys = $c->literal([sort keys %$cv]);
          } else {
              $lit_valid_keys = "[".
                  join(",", map { "qr/".$c->_str2reliteral($cd, $_)."/" }
                           sort keys %$cv)."]";
          }
  
          if ($cd->{clset}{"$which.restrict"} // 1) {
              local $cd->{_debug_ccl_note} = "$which.restrict";
              $c->add_module($cd, "List::Util");
              $c->add_smartmatch_pragma($cd);
              $c->add_ccl(
                  $cd,
                  "!defined(List::Util::first(sub {!(\$_ ~~ $lit_valid_keys)}, ".
                      "keys %{$dt}))",
                  {
                      err_msg => 'TMP1',
                      err_expr => join(
                          "",
                          'sprintf(',
                          $c->literal($c->_xlt(
                              $cd, "hash contains ".
                                  "unknown field(s) (%s)")),
                          ',',
                          "join(', ', sort grep {!(\$_ ~~ $lit_valid_keys)} ",
                          "keys %{$dt})",
                          ')',
                      ),
                  },
              );
          }
          delete $cd->{uclset}{"$which.restrict"};
  
          my $cdef;
          if ($which eq 'keys') {
              $cdef = $cd->{clset}{"keys.create_default"} // 1;
              delete $cd->{uclset}{"keys.create_default"};
          }
  
          my $nkeys = scalar(keys %$cv);
          my $i = 0;
          for my $k (sort keys %$cv) {
              my $kre = $c->_str2reliteral($cd, $k);
              local $cd->{spath} = [@{ $cd->{spath} }, $k];
              ++$i;
              my $sch = $c->main->normalize_schema($cv->{$k});
              my $kdn = $k; $kdn =~ s/\W+/_/g;
              my $klit = $which eq 're_keys' ? '$_' : $c->literal($k);
              my $kdt = "$dt\->{$klit}";
              my %iargs = %{$cd->{args}};
              $iargs{outer_cd}             = $cd;
              $iargs{data_name}            = $kdn;
              $iargs{data_term}            = $kdt;
              $iargs{schema}               = $sch;
              $iargs{schema_is_normalized} = 1;
              $iargs{indent_level}++;
              my $icd = $c->compile(%iargs);
  
              my $sdef = $cdef && defined($sch->[1]{default});
  
              $c->add_var($cd, '_sahv_stack', []) if $use_dpath;
  
              my @code = (
                  ($c->indent_str($cd), "(push(@\$_sahv_dpath, undef), push(\@\$_sahv_stack, undef), \$_sahv_stack->[-1] = \n")
                      x !!($use_dpath && $i == 1),
  
                  ('(!defined(List::Util::first(sub {!(')
                      x !!($which eq 're_keys'),
  
                  $which eq 're_keys' ? "\$_ !~ /$kre/ || (" :
                      ($sdef ? "" : "!exists($kdt) || ("),
  
                  ($c->indent_str($cd), "(\$_sahv_dpath->[-1] = ".
                       ($which eq 're_keys' ? '$_' : $klit)."),\n")
                           x !!$use_dpath,
                  $icd->{result}, "\n",
  
                  $which eq 're_keys' || !$sdef ? ")" : "",
  
                  (")}, sort keys %{ $dt })))")
                      x !!($which eq 're_keys'),
  
                  ($c->indent_str($cd), "), pop(\@\$_sahv_dpath), pop(\@\$_sahv_stack)\n")
                      x !!($use_dpath && $i == $nkeys),
              );
              my $ires = join("", @code);
              local $cd->{_debug_ccl_note} = "$which: ".$c->literal($k);
              $c->add_ccl($cd, $ires);
          }
          $jccl = $c->join_ccls(
              $cd, $cd->{ccls}, {err_msg => ''});
      }
      $c->add_ccl($cd, $jccl, {});
  }
  
  sub clause_keys {
      my ($self, $cd) = @_;
      $self->_clause_keys_or_re_keys('keys', $cd);
  }
  
  sub clause_re_keys {
      my ($self, $cd) = @_;
      $self->_clause_keys_or_re_keys('re_keys', $cd);
  }
  
  sub clause_req_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
  
      $c->add_module($cd, "List::Util");
      $c->add_ccl(
        $cd,
        "do { my \$_sahv_h = $dt; !defined(List::Util::first(sub {!exists(\$_sahv_h\->{\$_})}, \@{ $ct })) }",
        {
          err_msg => 'TMP',
          err_expr =>
            "sprintf(".
            $c->literal($c->_xlt($cd, "hash has missing required field(s) (%s)")).
            ",join(', ', do { my \$_sahv_h = $dt; grep { !exists(\$_sahv_h\->{\$_}) } \@{ $ct } }))"
        }
      );
  }
  
  sub clause_allowed_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_module($cd, "List::Util");
      $c->add_smartmatch_pragma($cd);
      $c->add_ccl(
        $cd,
        "!defined(List::Util::first(sub {!(\$_ ~~ $ct)}, keys \%{ $dt }))",
        {
          err_msg => 'TMP',
          err_expr =>
            "sprintf(".
            $c->literal($c->_xlt($cd, "hash contains non-allowed field(s) (%s)")).
            ",join(', ', sort grep { !(\$_ ~~ $ct) } keys \%{ $dt }))"
        }
      );
  }
  
  sub clause_allowed_keys_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->_die_unimplemented_clause($cd, "with expr");
      }
  
      my $re = $c->_str2reliteral($cd, $cv);
      $c->add_module($cd, "List::Util");
      $c->add_smartmatch_pragma($cd);
      $c->add_ccl(
          $cd,
          "!defined(List::Util::first(sub {\$_ !~ /$re/}, keys \%{ $dt }))",
          {
            err_msg => 'TMP',
            err_expr =>
            "sprintf(".
            $c->literal($c->_xlt($cd, "hash contains non-allowed field(s) (%s)")).
            ",join(', ', sort grep { \$_ !~ /$re/ } keys \%{ $dt }))"
        }
      );
  }
  
  sub clause_forbidden_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_module($cd, "List::Util");
      $c->add_smartmatch_pragma($cd);
      $c->add_ccl(
        $cd,
        "!defined(List::Util::first(sub {\$_ ~~ $ct}, keys \%{ $dt }))",
        {
          err_msg => 'TMP',
          err_expr =>
            "sprintf(".
            $c->literal($c->_xlt($cd, "hash contains forbidden field(s) (%s)")).
            ",join(', ', sort grep { \$_ ~~ $ct } keys \%{ $dt }))"
        }
      );
  }
  
  sub clause_forbidden_keys_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->_die_unimplemented_clause($cd, "with expr");
      }
  
      my $re = $c->_str2reliteral($cd, $cv);
      $c->add_module($cd, "List::Util");
      $c->add_smartmatch_pragma($cd);
      $c->add_ccl(
          $cd,
          "!defined(List::Util::first(sub {\$_ =~ /$re/}, keys \%{ $dt }))",
          {
            err_msg => 'TMP',
            err_expr =>
            "sprintf(".
            $c->literal($c->_xlt($cd, "hash contains forbidden field(s) (%s)")).
            ",join(', ', sort grep { \$_ =~ /$re/ } keys \%{ $dt }))"
        }
      );
  }
  
  sub clause_choose_one_key {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
  
      $c->add_module($cd, "List::Util");
      $c->add_ccl(
        $cd,
        "do { my \$_sahv_h = $dt; List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} \@{ $ct }) <= 1 }",
        {},
      );
  }
  
  sub clause_choose_all_keys {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
  
      $c->add_module($cd, "List::Util");
      $c->add_ccl(
        $cd,
        "do { my \$_sahv_h = $dt; my \$_sahv_keys = $ct; my \$_sahv_tot = List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} \@\$_sahv_keys); \$_sahv_tot==0 || \$_sahv_tot==\@\$_sahv_keys }",
        {},
      );
  }
  
  sub clause_req_one_key {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
  
      $c->add_module($cd, "List::Util");
      $c->add_ccl(
        $cd,
        "do { my \$_sahv_h = $dt; List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} \@{ $ct }) == 1 }",
        {},
      );
  }
  
  sub clause_dep_any {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
  
      $c->add_module($cd, "List::Util");
      $c->add_ccl(
        $cd,
        "do { my \$_sahv_h = $dt; my \$_sahv_ct = $ct; ".
            "my \$_sahv_has_prereq = List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} \@{ \$_sahv_ct->[1] }) ? 1:0; ".
            "my \$_sahv_has_dep    = List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} (ref(\$_sahv_ct->[0]) eq 'ARRAY' ? \@{ \$_sahv_ct->[0] } : (\$_sahv_ct->[0]))) ? 1:0; ".
            "!\$_sahv_has_dep || \$_sahv_has_prereq }",
        {},
      );
  }
  
  sub clause_dep_all {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
  
      $c->add_module($cd, "List::Util");
      $c->add_ccl(
        $cd,
        "do { my \$_sahv_h = $dt; my \$_sahv_ct = $ct; ".
            "my \$_sahv_has_prereq = List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} \@{ \$_sahv_ct->[1] }) == \@{ \$_sahv_ct->[1] } ? 1:0; ".
            "my \$_sahv_has_dep    = List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} (ref(\$_sahv_ct->[0]) eq 'ARRAY' ? \@{ \$_sahv_ct->[0] } : (\$_sahv_ct->[0]))) ? 1:0; ".
            "!\$_sahv_has_dep || \$_sahv_has_prereq }",
        {},
      );
  }
  
  sub clause_req_dep_any {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
  
      $c->add_module($cd, "List::Util");
      $c->add_ccl(
        $cd,
        "do { my \$_sahv_h = $dt; my \$_sahv_ct = $ct; ".
            "my \$_sahv_has_prereq = List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} \@{ \$_sahv_ct->[1] }) ? 1:0; ".
            "my \$_sahv_has_dep    = List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} (ref(\$_sahv_ct->[0]) eq 'ARRAY' ? \@{ \$_sahv_ct->[0] } : (\$_sahv_ct->[0]))) ? 1:0; ".
            "\$_sahv_has_dep || !\$_sahv_has_prereq }",
        {},
      );
  }
  
  sub clause_req_dep_all {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
  
      $c->add_module($cd, "List::Util");
      $c->add_ccl(
        $cd,
        "do { my \$_sahv_h = $dt; my \$_sahv_ct = $ct; ".
            "my \$_sahv_has_prereq = List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} \@{ \$_sahv_ct->[1] }) == \@{ \$_sahv_ct->[1] } ? 1:0; ".
            "my \$_sahv_has_dep    = List::Util::sum(map {exists(\$_sahv_h\->{\$_}) ? 1:0} (ref(\$_sahv_ct->[0]) eq 'ARRAY' ? \@{ \$_sahv_ct->[0] } : (\$_sahv_ct->[0]))) ? 1:0; ".
            "\$_sahv_has_dep || !\$_sahv_has_prereq }",
        {},
      );
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_HASH

$fatpacked{"Data/Sah/Compiler/perl/TH/int.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_INT';
  package Data::Sah::Compiler::perl::TH::int;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH::num';
  with 'Data::Sah::Type::int';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      if ($cd->{args}{core} || $cd->{args}{no_modules}) {
          $cd->{_ccl_check_type} = "$dt =~ ".'/\A[+-]?(?:0|[1-9][0-9]*)\z/';
      } else {
          $c->add_sun_module($cd);
          $cd->{_ccl_check_type} =
              "$cd->{_sun_module}::isint($dt)";
      }
  }
  
  sub clause_div_by {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, "$dt % $ct == 0");
  }
  
  sub clause_mod {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, "$dt % $ct\->[0] == $ct\->[1]");
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_INT

$fatpacked{"Data/Sah/Compiler/perl/TH/num.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_NUM';
  package Data::Sah::Compiler::perl::TH::num;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::num';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
      my $dt = $cd->{data_term};
  
      if ($cd->{args}{core} || $cd->{args}{no_modules}) {
          $cd->{_ccl_check_type} = "$dt =~ ".'/\A(?:[+-]?(?:0|[1-9][0-9]*)(\.[0-9]+)?([eE][+-]?[0-9]+)?|((?i)\s*nan\s*)|((?i)\s*[+-]?inf(inity)?)\s*)\z/';
      } else {
          $c->add_sun_module($cd);
          $cd->{_ccl_check_type} = "$cd->{_sun_module}::isnum($dt)";
      }
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$dt == $ct");
      } elsif ($which eq 'in') {
          $c->add_smartmatch_pragma($cd);
          $c->add_ccl($cd, "$dt ~~ $ct");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "$dt >= $ct");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "$dt > $ct");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "$dt <= $ct");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "$dt < $ct");
      } elsif ($which eq 'between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt >= $ct\->[0] && $dt <= $ct\->[1]");
          } else {
              $c->add_ccl($cd, "$dt >= $cv->[0] && $dt <= $cv->[1]");
          }
      } elsif ($which eq 'xbetween') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt > $ct\->[0] && $dt < $ct\->[1]");
          } else {
              $c->add_ccl($cd, "$dt > $cv->[0] && $dt < $cv->[1]");
          }
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_NUM

$fatpacked{"Data/Sah/Compiler/perl/TH/obj.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_OBJ';
  package Data::Sah::Compiler::perl::TH::obj;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::obj';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $c->add_module($cd, 'Scalar::Util');
      $cd->{_ccl_check_type} = "Scalar::Util::blessed($dt)";
  }
  
  sub clause_can {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, "$dt->can($ct)");
  }
  
  sub clause_isa {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->add_ccl($cd, "$dt->isa($ct)");
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_OBJ

$fatpacked{"Data/Sah/Compiler/perl/TH/re.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_RE';
  package Data::Sah::Compiler::perl::TH::re;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::re';
  
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "ref($dt) eq 'Regexp' || !ref($dt) && ".
          "eval { my \$tmp = $dt; qr/\$tmp/; 1 }";
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_RE

$fatpacked{"Data/Sah/Compiler/perl/TH/str.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_STR';
  package Data::Sah::Compiler::perl::TH::str;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::str';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "!ref($dt)";
  }
  
  sub superclause_comparable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'is') {
          $c->add_ccl($cd, "$dt eq $ct");
      } elsif ($which eq 'in') {
          $c->add_smartmatch_pragma($cd);
          $c->add_ccl($cd, "$dt ~~ $ct");
      }
  }
  
  sub superclause_sortable {
      my ($self, $which, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'min') {
          $c->add_ccl($cd, "$dt ge $ct");
      } elsif ($which eq 'xmin') {
          $c->add_ccl($cd, "$dt gt $ct");
      } elsif ($which eq 'max') {
          $c->add_ccl($cd, "$dt le $ct");
      } elsif ($which eq 'xmax') {
          $c->add_ccl($cd, "$dt lt $ct");
      } elsif ($which eq 'between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt ge $ct\->[0] && $dt le $ct\->[1]");
          } else {
              $c->add_ccl($cd, "$dt ge ".$c->literal($cv->[0]).
                              " && $dt le ".$c->literal($cv->[1]));
          }
      } elsif ($which eq 'xbetween') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl($cd, "$dt gt $ct\->[0] && $dt lt $ct\->[1]");
          } else {
              $c->add_ccl($cd, "$dt gt ".$c->literal($cv->[0]).
                              " && $dt lt ".$c->literal($cv->[1]));
          }
      }
  }
  
  sub superclause_has_elems {
      my ($self_th, $which, $cd) = @_;
      my $c  = $self_th->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($which eq 'len') {
          $c->add_ccl($cd, "length($dt) == $ct");
      } elsif ($which eq 'min_len') {
          $c->add_ccl($cd, "length($dt) >= $ct");
      } elsif ($which eq 'max_len') {
          $c->add_ccl($cd, "length($dt) <= $ct");
      } elsif ($which eq 'len_between') {
          if ($cd->{cl_is_expr}) {
              $c->add_ccl(
                  $cd, "length($dt) >= $ct\->[0] && ".
                      "length($dt) >= $ct\->[1]");
          } else {
              $c->add_ccl(
                  $cd, "length($dt) >= $cv->[0] && ".
                      "length($dt) <= $cv->[1]");
          }
      } elsif ($which eq 'has') {
          $c->add_ccl($cd, "index($dt, $ct) >= 0");
      } elsif ($which eq 'each_index') {
          $self_th->gen_each($cd, "0..length($dt)-1", '_', '$_');
      } elsif ($which eq 'each_elem') {
          $self_th->gen_each($cd, "0..length($dt)-1", '_', "substr($dt, \$_, 1)");
      } elsif ($which eq 'check_each_index') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'check_each_elem') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'uniq') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      } elsif ($which eq 'exists') {
          $self_th->compiler->_die_unimplemented_clause($cd);
      }
  }
  
  sub clause_encoding {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      $c->_die($cd, "Only 'utf8' encoding is currently supported")
          unless $cv eq 'utf8';
  }
  
  sub clause_match {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->add_ccl($cd, join(
              "",
              "ref($ct) eq 'Regexp' ? $dt =~ $ct : ",
              "do { my \$re = $ct; eval { \$re = /\$re/; 1 } && ",
              "$dt =~ \$re }",
          ));
      } else {
          my $re = $c->_str2reliteral($cd, $cv);
          $c->add_ccl($cd, "$dt =~ qr($re)");
      }
  }
  
  sub clause_is_re {
      my ($self, $cd) = @_;
      my $c  = $self->compiler;
      my $cv = $cd->{cl_value};
      my $ct = $cd->{cl_term};
      my $dt = $cd->{data_term};
  
      if ($cd->{cl_is_expr}) {
          $c->add_ccl($cd, join(
              "",
              "do { my \$re = $dt; ",
              "(eval { \$re = qr/\$re/; 1 } ? 1:0) == ($ct ? 1:0) }",
          ));
      } else {
          $c->add_ccl($cd, join(
              "",
              "do { my \$re = $dt; ",
              ($cv ? "" : "!"), "(eval { \$re = qr/\$re/; 1 })",
              "}",
          ));
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_STR

$fatpacked{"Data/Sah/Compiler/perl/TH/undef.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_COMPILER_PERL_TH_UNDEF';
  package Data::Sah::Compiler::perl::TH::undef;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Mo qw(build default);
  use Role::Tiny::With;
  
  extends 'Data::Sah::Compiler::perl::TH';
  with 'Data::Sah::Type::undef';
  
  sub handle_type {
      my ($self, $cd) = @_;
      my $c = $self->compiler;
  
      my $dt = $cd->{data_term};
      $cd->{_ccl_check_type} = "!defined($dt)";
  }
  
  1;
  
  __END__
  
DATA_SAH_COMPILER_PERL_TH_UNDEF

$fatpacked{"Data/Sah/Human.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_HUMAN';
  package Data::Sah::Human;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  our $Log_Validator_Code = $ENV{LOG_SAH_VALIDATOR_CODE} // 0;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(gen_human_msg);
  
  sub gen_human_msg {
      require Data::Sah;
  
      my ($schema, $opts) = @_;
  
      state $hc = Data::Sah->new->get_compiler("human");
  
      my %args = (schema => $schema, %{$opts // {}});
      my $opt_source = delete $args{source};
  
      $args{log_result} = 1 if $Log_Validator_Code;
  
      my $cd = $hc->compile(%args);
      $opt_source ? $cd : $cd->{result};
  }
  
  1;
  
  __END__
  
DATA_SAH_HUMAN

$fatpacked{"Data/Sah/JS.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_JS';
  package Data::Sah::JS;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  our $Log_Validator_Code = $ENV{LOG_SAH_VALIDATOR_CODE} // 0;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(gen_validator);
  
  sub get_nodejs_path {
      require File::Which;
  
      my $path;
      for my $name (qw/nodejs node/) {
          $path = File::Which::which($name);
          next unless $path;
  
          my $cmd = "$path -e 'console.log(1+1)'";
          my $out = `$cmd`;
          if ($out =~ /\A2\n?\z/) {
              return $path;
          } else {
          }
      }
      return undef;
  }
  
  sub gen_validator {
      require Data::Sah;
  
      my ($schema, $opts) = @_;
  
      state $jsc = Data::Sah->new->get_compiler("js");
  
      my %args = (schema => $schema, %{$opts // {}});
      my $opt_source = delete $args{source};
  
      $args{log_result} = 1 if $Log_Validator_Code;
  
      my $v_src = $jsc->expr_validator_sub(%args);
      return $v_src if $opt_source;
  
      state $nodejs_path = get_nodejs_path();
      die "Can't find node.js in PATH" unless $nodejs_path;
  
  
      sub {
          require File::Temp;
          require JSON;
  
          my $data = shift;
  
          state $json = JSON->new->allow_nonref;
  
          my $src = "var validator = $v_src;\n\n".
              "console.log(JSON.stringify(validator(".
                  $json->encode($data).")))";
  
          my ($jsh, $jsfn) = File::Temp::tempfile();
          print $jsh $src;
          close($jsh) or die "Can't write JS code to file $jsfn: $!";
  
          my $cmd = "$nodejs_path $jsfn";
          my $out = `$cmd`;
          $json->decode($out);
      };
  }
  
  1;
  
  __END__
  
DATA_SAH_JS

$fatpacked{"Data/Sah/Lang.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_LANG';
  package Data::Sah::Lang;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  our @ISA    = qw(Exporter);
  our @EXPORT = qw(add_translations);
  
  sub add_translations {
      my %args = @_;
  
  }
  
  1;
  
  __END__
  
DATA_SAH_LANG

$fatpacked{"Data/Sah/Lang/fr_FR.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_LANG_FR_FR';
  package Data::Sah::Lang::fr_FR;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Tie::IxHash;
  
  
  our %translations;
  tie %translations, 'Tie::IxHash', (
  
  
      q[ ], 
      q[ ],
  
      q[, ],
      q[, ],
  
      q[: ],
      q[: ],
  
      q[. ],
      q[. ],
  
      q[(],
      q[(],
  
      q[)],
      q[)],
  
  
      q[must],
      q[doit],
  
      q[must not],
      q[ne doit pas],
  
      q[should],
      q[devrait],
  
      q[should not],
      q[ne devrait pas],
  
  
      q[field],
      q[champ],
  
      q[fields],
      q[champs],
  
      q[argument],
      q[argument],
  
      q[arguments],
      q[arguments],
  
  
      q[%s and %s],
      q[%s et %s],
  
      q[%s or %s],
      q[%s ou %s],
  
      q[one of %s],
      q[une des %s],
  
      q[all of %s],
      q[toutes les valeurs %s],
  
      q[%(modal_verb)s satisfy all of the following],
      q[%(modal_verb)s satisfaire à toutes les conditions suivantes],
  
      q[%(modal_verb)s satisfy one of the following],
      q[%(modal_verb)s satisfaire l'une des conditions suivantes],
  
      q[%(modal_verb)s satisfy none of the following],
      q[%(modal_verb)s satisfaire à aucune des conditions suivantes],
  
  
  
  
  
  
  
      q[integer],
      q[nombre entier],
  
      q[integers],
      q[nombres entiers],
  
      q[%(modal_verb)s be divisible by %s],
      q[%(modal_verb)s être divisible par %s],
  
      q[%(modal_verb)s leave a remainder of %2$s when divided by %1$s],
      q[%(modal_verb)s laisser un reste %2$s si divisé par %1$s],
  
  );
  
  1;
  
  __END__
  
DATA_SAH_LANG_FR_FR

$fatpacked{"Data/Sah/Lang/id_ID.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_LANG_ID_ID';
  package Data::Sah::Lang::id_ID;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Tie::IxHash;
  
  sub ordinate {
      my ($n, $noun) = @_;
      "$noun ke-$n";
  }
  
  our %translations;
  tie %translations, 'Tie::IxHash', (
  
  
      q[ ], 
      q[ ],
  
      q[, ],
      q[, ],
  
      q[: ],
      q[: ],
  
      q[. ],
      q[. ],
  
      q[(],
      q[(],
  
      q[)],
      q[)],
  
  
      q[must],
      q[harus],
  
      q[must not],
      q[tidak boleh],
  
      q[should],
      q[sebaiknya],
  
      q[should not],
      q[sebaiknya tidak],
  
  
      q[field],
      q[field],
  
      q[fields],
      q[field],
  
      q[argument],
      q[argumen],
  
      q[arguments],
      q[argumen],
  
  
      q[%s and %s],
      q[%s dan %s],
  
      q[%s or %s],
      q[%s atau %s],
  
      q[%s nor %s],
      q[%s maupun %s],
  
      q[one of %s],
      q[salah satu dari %s],
  
      q[all of %s],
      q[semua dari nilai-nilai %s],
  
      q[any of %s],
      q[satupun dari %s],
  
      q[none of %s],
      q[tak satupun dari %s],
  
      q[%(modal_verb)s satisfy all of the following],
      q[%(modal_verb)s memenuhi semua ketentuan ini],
  
      q[%(modal_verb)s satisfy none all of the following],
      q[%(modal_verb)s melanggar semua ketentuan ini],
  
      q[%(modal_verb)s satisfy one of the following],
      q[%(modal_verb)s memenuhi salah satu ketentuan ini],
  
  
      q[default value is %s],
      q[jika tidak diisi diset ke %s],
  
      q[required %s],
      q[%s wajib diisi],
  
      q[optional %s],
      q[%s opsional],
  
      q[forbidden %s],
      q[%s tidak boleh diisi],
  
  
      q[%(modal_verb)s have the value %s],
      q[%(modal_verb)s bernilai %s],
  
      q[%(modal_verb)s be one of %s],
      q[%(modal_verb)s salah satu dari %s],
  
  
      q[length %(modal_verb)s be %s],
      q[panjang %(modal_verb)s %s],
  
      q[length %(modal_verb)s be at least %s],
      q[panjang %(modal_verb)s minimal %s],
  
      q[length %(modal_verb)s be at most %s],
      q[panjang %(modal_verb)s maksimal %s],
  
      q[length %(modal_verb)s be between %s and %s],
      q[panjang %(modal_verb)s antara %s dan %s],
  
      q[%(modal_verb)s have %s in its elements],
      q[%(modal_verb)s mengandung %s di elemennya],
  
  
      q[%(modal_verb)s be at least %s],
      q[%(modal_verb)s minimal %s],
  
      q[%(modal_verb)s be larger than %s],
      q[%(modal_verb)s lebih besar dari %s],
  
      q[%(modal_verb)s be at most %s],
      q[%(modal_verb)s maksimal %s],
  
      q[%(modal_verb)s be smaller than %s],
      q[%(modal_verb)s lebih kecil dari %s],
  
      q[%(modal_verb)s be between %s and %s],
      q[%(modal_verb)s antara %s dan %s],
  
      q[%(modal_verb)s be larger than %s and smaller than %s],
      q[%(modal_verb)s lebih besar dari %s dan lebih kecil dari %s],
  
  
      q[undefined value],
      q[nilai tak terdefinisi],
  
      q[undefined values],
      q[nilai tak terdefinisi],
  
  
      q[%(modal_verb)s be %s],
      q[%(modal_verb)s %s],
  
      q[as well as %s],
      q[juga %s],
  
      q[%(modal_verb)s be all of the following],
      q[%(modal_verb)s merupakan semua ini],
  
  
      q[%(modal_verb)s be either %s],
      q[%s],
  
      q[or %s],
      q[atau %s],
  
      q[%(modal_verb)s be one of the following],
      q[%(modal_verb)s merupakan salah satu dari],
  
  
      q[array],
      q[larik],
  
      q[arrays],
      q[larik],
  
      q[%s of %s],
      q[%s %s],
  
      q[each array element %(modal_verb)s be],
      q[setiap elemen larik %(modal_verb)s],
  
      q[%s %(modal_verb)s be],
      q[%s %(modal_verb)s],
  
      q[element],
      q[elemen],
  
      q[each array subscript %(modal_verb)s be],
      q[setiap subskrip larik %(modal_verb)s],
  
  
      q[boolean value],
      q[nilai boolean],
  
      q[boolean values],
      q[nilai boolean],
  
      q[%(modal_verb)s be true],
      q[%(modal_verb)s bernilai benar],
  
      q[%(modal_verb)s be false],
      q[%(modal_verb)s bernilai salah],
  
  
      q[code],
      q[kode],
  
      q[codes],
      q[kode],
  
  
      q[decimal number],
      q[bilangan desimal],
  
      q[decimal numbers],
      q[bilangan desimal],
  
      q[%(modal_verb)s be a NaN],
      q[%(modal_verb)s NaN],
  
      q[%(modal_verb_neg)s be a NaN],
      q[%(modal_verb_neg)s NaN],
  
      q[%(modal_verb)s be an infinity],
      q[%(modal_verb)s tak hingga],
  
      q[%(modal_verb_neg)s be an infinity],
      q[%(modal_verb_neg)s tak hingga],
  
      q[%(modal_verb)s be a positive infinity],
      q[%(modal_verb)s positif tak hingga],
  
      q[%(modal_verb_neg)s be a positive infinity],
      q[%(modal_verb_neg)s positif tak hingga],
  
      q[%(modal_verb)s be a negative infinity],
      q[%(modal_verb)s negatif tak hingga],
  
      q[%(modal_verb)s be a negative infinity],
      q[%(modal_verb)s negatif tak hingga],
  
  
      q[hash],
      q[hash],
  
      q[hashes],
      q[hash],
  
      q[field %s %(modal_verb)s be],
      q[field %s %(modal_verb)s],
  
      q[field name %(modal_verb)s be],
      q[nama field %(modal_verb)s],
  
      q[each field %(modal_verb)s be],
      q[setiap field %(modal_verb)s],
  
      q[hash contains unknown field(s) (%s)],
      q[hash mengandung field yang tidak dikenali (%s)],
  
      q[hash contains unknown field(s) (%s)],
      q[hash mengandung field yang tidak dikenali (%s)],
  
      q[%(modal_verb)s have required fields %s],
      q[%(modal_verb)s mengandung field wajib %s],
  
      q[hash has missing required field(s) (%s)],
      q[hash kekurangan field wajib (%s)],
  
      q[%(modal_verb)s have %s in its field values],
      q[%(modal_verb)s mengandung %s di nilai field],
  
      q[%(modal_verb)s only have these allowed fields %s],
      q[%(modal_verb)s hanya mengandung field yang diizinkan %s],
  
      q[%(modal_verb)s only have fields matching regex pattern %s],
      q[%(modal_verb)s hanya mengandung field yang namanya mengikuti pola regex %s],
  
      q[%(modal_verb_neg)s have these forbidden fields %s],
      q[%(modal_verb_neg)s mengandung field yang dilarang %s],
  
      q[%(modal_verb_neg)s have fields matching regex pattern %s],
      q[%(modal_verb_neg)s mengandung field yang namanya mengikuti pola regex %s],
  
      q[hash contains non-allowed field(s) (%s)],
      q[hash mengandung field yang tidak diizinkan (%s)],
  
      q[hash contains forbidden field(s) (%s)],
      q[hash mengandung field yang dilarang (%s)],
  
      q[fields whose names match regex pattern %s %(modal_verb)s be],
      q[field yang namanya cocok dengan pola regex %s %(modal_verb)s],
  
  
      q[integer],
      q[bilangan bulat],
  
      q[integers],
      q[bilangan bulat],
  
      q[%(modal_verb)s be divisible by %s],
      q[%(modal_verb)s dapat dibagi oleh %s],
  
      q[%(modal_verb)s be odd],
      q[%(modal_verb)s ganjil],
  
      q[%(modal_verb)s be even],
      q[%(modal_verb)s genap],
  
      q[%(modal_verb)s leave a remainder of %2$s when divided by %1$s],
      q[jika dibagi %1$s %(modal_verb)s menyisakan %2$s],
  
  
      q[number],
      q[bilangan],
  
      q[numbers],
      q[bilangan],
  
  
      q[object],
      q[objek],
  
      q[objects],
      q[objek],
  
  
      q[regex pattern],
      q[pola regex],
  
      q[regex patterns],
      q[pola regex],
  
  
      q[text],
      q[teks],
  
      q[texts],
      q[teks],
  
      q[%(modal_verb)s match regex pattern %s],
      q[%(modal_verb)s cocok dengan pola regex %s],
  
      q[%(modal_verb)s be a regex pattern],
      q[%(modal_verb)s pola regex],
  
      q[each subscript of text %(modal_verb)s be],
      q[setiap subskrip dari teks %(modal_verb)s],
  
      q[each character of the text %(modal_verb)s be],
      q[setiap karakter dari teks %(modal_verb)s],
  
      q[character],
      q[karakter],
  
  
  
      q[buffer],
      q[buffer],
  
      q[buffers],
      q[buffer],
  
  
      q[Does not satisfy the following schema: %s],
      q[Tidak memenuhi skema ini: %s],
  
      q[Not of type %s],
      q[Tidak bertipe %s],
  
      q[Required but not specified],
      q[Wajib tapi belum diisi],
  
      q[Forbidden but specified],
      q[Dilarang tapi diisi],
  
      q[Structure contains unknown field(s) [%%s]],
      q[Struktur mengandung field yang tidak dikenal [%%s]],
  
  );
  
  1;
  
  __END__
  
DATA_SAH_LANG_ID_ID

$fatpacked{"Data/Sah/Lang/zh_CN.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_LANG_ZH_CN';
  package Data::Sah::Lang::zh_CN;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Tie::IxHash;
  
  
  our %translations;
  tie %translations, 'Tie::IxHash', (
  
  
      q[ ], 
      q[],
  
      q[, ],
      q[，],
  
      q[: ],
      q[：],
  
      q[. ],
      q[。],
  
      q[(],
      q[（],
  
      q[)],
      q[）],
  
  
      q[must],
      q[必须],
  
      q[must not],
      q[必须不],
  
      q[should],
      q[应],
  
      q[should not],
      q[应不],
  
  
      q[field],
      q[字段],
  
      q[fields],
      q[字段],
  
      q[argument],
      q[参数],
  
      q[arguments],
      q[参数],
  
  
      q[%s and %s],
      q[%s和%s],
  
      q[%s or %s],
      q[%s或%s],
  
      q[one of %s],
      q[这些值%s之一],
  
      q[all of %s],
      q[所有这些值%s],
  
      q[%(modal_verb)s satisfy all of the following],
      q[%(modal_verb)s满足所有这些条件],
  
      q[%(modal_verb)s satisfy one of the following],
      q[%(modal_verb)s满足这些条件之一],
  
      q[%(modal_verb)s satisfy none of the following],
      q[%(modal_verb_neg)s满足所有这些条件],
  
  
  
  
  
  
  
      q[integer],
      q[整数],
  
      q[integers],
      q[整数],
  
      q[%(modal_verb)s be divisible by %s],
      q[%(modal_verb)s被%s整除],
  
      q[%(modal_verb)s leave a remainder of %2$s when divided by %1$s],
      q[除以%1$s时余数%(modal_verb)s为%2$s],
  
  );
  
  1;
  
  __END__
  
DATA_SAH_LANG_ZH_CN

$fatpacked{"Data/Sah/Normalize.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_NORMALIZE';
  package Data::Sah::Normalize;
  
  use 5.010001;
  use strict;
  use warnings;
  
  our $DATE = '2015-09-06'; 
  our $VERSION = '0.04'; 
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(
                         normalize_clset
                         normalize_schema
  
                         $type_re
                         $clause_name_re
                         $clause_re
                         $attr_re
                         $funcset_re
                         $compiler_re
                 );
  
  our $type_re        = qr/\A(?:[A-Za-z_]\w*::)*[A-Za-z_]\w*\z/;
  our $clause_name_re = qr/\A[A-Za-z_]\w*\z/;
  our $clause_re      = qr/\A[A-Za-z_]\w*(?:\.[A-Za-z_]\w*)*\z/;
  our $attr_re        = $clause_re;
  our $funcset_re     = qr/\A(?:[A-Za-z_]\w*::)*[A-Za-z_]\w*\z/;
  our $compiler_re    = qr/\A[A-Za-z_]\w*\z/;
  our $clause_attr_on_empty_clause_re = qr/\A(?:\.[A-Za-z_]\w*)+\z/;
  
  sub normalize_clset($;$) {
      my ($clset0, $opts) = @_;
      $opts //= {};
  
      my $clset = {};
      for my $c (sort keys %$clset0) {
          my $c0 = $c;
  
          my $v = $clset0->{$c};
  
          my $expr;
          if ($c =~ s/=\z//) {
              $expr++;
              die "Conflict between '$c=' and '$c'" if exists $clset0->{$c};
              $clset->{"$c.is_expr"} = 1;
              }
  
          my $sc = "";
          my $cn;
          {
              my $errp = "Invalid clause name syntax '$c0'"; 
              if (!$expr && $c =~ s/\A!(?=.)//) {
                  die "$errp, syntax should be !CLAUSE"
                      unless $c =~ $clause_name_re;
                  $sc = "!";
              } elsif (!$expr && $c =~ s/(?<=.)\|\z//) {
                  die "$errp, syntax should be CLAUSE|"
                      unless $c =~ $clause_name_re;
                  $sc = "|";
              } elsif (!$expr && $c =~ s/(?<=.)\&\z//) {
                  die "$errp, syntax should be CLAUSE&"
                      unless $c =~ $clause_name_re;
                  $sc = "&";
              } elsif (!$expr && $c =~ /\A([^.]+)(?:\.(.+))?\((\w+)\)\z/) {
                  my ($c2, $a, $lang) = ($1, $2, $3);
                  die "$errp, syntax should be CLAUSE(LANG) or C.ATTR(LANG)"
                      unless $c2 =~ $clause_name_re &&
                          (!defined($a) || $a =~ $attr_re);
                  $sc = "(LANG)";
                  $cn = $c2 . (defined($a) ? ".$a" : "") . ".alt.lang.$lang";
              } elsif ($c !~ $clause_re &&
                           $c !~ $clause_attr_on_empty_clause_re) {
                  die "$errp, please use letter/digit/underscore only";
              }
          }
  
          if ($sc eq '!') {
              die "Conflict between clause shortcuts '!$c' and '$c'"
                  if exists $clset0->{$c};
              die "Conflict between clause shortcuts '!$c' and '$c|'"
                  if exists $clset0->{"$c|"};
              die "Conflict between clause shortcuts '!$c' and '$c&'"
                  if exists $clset0->{"$c&"};
              $clset->{$c} = $v;
              $clset->{"$c.op"} = "not";
          } elsif ($sc eq '&') {
              die "Conflict between clause shortcuts '$c&' and '$c'"
                  if exists $clset0->{$c};
              die "Conflict between clause shortcuts '$c&' and '$c|'"
                  if exists $clset0->{"$c|"};
              die "Clause 'c&' value must be an array"
                  unless ref($v) eq 'ARRAY';
              $clset->{$c} = $v;
              $clset->{"$c.op"} = "and";
          } elsif ($sc eq '|') {
              die "Conflict between clause shortcuts '$c|' and '$c'"
                  if exists $clset0->{$c};
              die "Clause 'c|' value must be an array"
                  unless ref($v) eq 'ARRAY';
              $clset->{$c} = $v;
              $clset->{"$c.op"} = "or";
          } elsif ($sc eq '(LANG)') {
              die "Conflict between clause '$c' and '$cn'"
                  if exists $clset0->{$cn};
              $clset->{$cn} = $v;
          } else {
              $clset->{$c} = $v;
          }
  
      }
      $clset->{req} = 1 if $opts->{has_req};
  
  
      $clset;
  }
  
  sub normalize_schema($) {
      my $s = shift;
  
      my $ref = ref($s);
      if (!defined($s)) {
  
          die "Schema is missing";
  
      } elsif (!$ref) {
  
          my $has_req = $s =~ s/\*\z//;
          $s =~ $type_re or die "Invalid type syntax $s, please use ".
              "letter/digit/underscore only";
          return [$s, $has_req ? {req=>1} : {}, {}];
  
      } elsif ($ref eq 'ARRAY') {
  
          my $t = $s->[0];
          my $has_req = $t && $t =~ s/\*\z//;
          if (!defined($t)) {
              die "For array form, at least 1 element is needed for type";
          } elsif (ref $t) {
              die "For array form, first element must be a string";
          }
          $t =~ $type_re or die "Invalid type syntax $s, please use ".
              "letter/digit/underscore only";
  
          my $clset0;
          my $extras;
          if (defined($s->[1])) {
              if (ref($s->[1]) eq 'HASH') {
                  $clset0 = $s->[1];
                  $extras = $s->[2];
                  die "For array form, there should not be more than 3 elements"
                      if @$s > 3;
              } else {
                  die "For array in the form of [t, c1=>1, ...], there must be ".
                      "3 elements (or 5, 7, ...)"
                          unless @$s % 2;
                  $clset0 = { @{$s}[1..@$s-1] };
              }
          } else {
              $clset0 = {};
          }
  
          my $clset = normalize_clset($clset0, {has_req=>$has_req});
          if (defined $extras) {
              die "For array form with 3 elements, extras must be hash"
                  unless ref($extras) eq 'HASH';
              die "'def' in extras must be a hash"
                  if exists $extras->{def} && ref($extras->{def}) ne 'HASH';
              return [$t, $clset, { %{$extras} }];
          } else {
              return [$t, $clset, {}];
          }
      }
  
      die "Schema must be a string or arrayref (not $ref)";
  }
  
  1;
  
  __END__
  
DATA_SAH_NORMALIZE

$fatpacked{"Data/Sah/Type/BaseType.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_BASETYPE';
  package Data::Sah::Type::BaseType;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  
  use 5.010;
  use strict;
  use warnings;
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  
  requires 'handle_type';
  
  has_clause 'v',
      prio=>0, tags=>['meta', 'defhash'],
      arg=>['float*'=>{is=>1}];
  
  has_clause 'defhash_v',
      prio=>0, tags=>['meta', 'defhash'],
      arg=>['float*'=>{is=>1}];
  
  has_clause 'schema_v',
      prio=>0, tags=>['meta'],
      arg=>['float*'=>{}];
  
  has_clause 'base_v',
      prio=>0, tags=>['meta'],
      arg=>['float*'=>{}];
  
  has_clause 'ok',
      tags       => ['constraint'],
      prio       => 1,
      arg        => 'any',
      allow_expr => 1,
      ;
  has_clause 'default',
      prio       => 1,
      tags       => [],
      arg        => 'any',
      allow_expr => 1,
      attrs      => {
          temp => {
              arg        => [bool => default=>0],
              allow_expr => 0,
          },
      },
      ;
  has_clause 'default_lang',
      tags       => ['meta', 'defhash'],
      prio       => 2,
      arg        => ['str*'=>{default=>'en_US'}],
      ;
  has_clause 'name',
      tags       => ['meta', 'defhash'],
      prio       => 2,
      arg        => 'str*'
      ;
  has_clause 'summary',
      prio       => 2,
      tags       => ['meta', 'defhash'],
      arg        => 'str*',
      ;
  has_clause 'description',
      tags       => ['meta', 'defhash'],
      prio       => 2,
      arg        => 'str*',
      ;
  has_clause 'tags',
      tags       => ['meta', 'defhash'],
      prio       => 2,
      arg        => ['array*', of=>'str*'],
      ;
  has_clause 'req',
      tags       => ['constraint'],
      prio       => 3,
      arg        => 'bool',
      allow_expr => 1,
      ;
  has_clause 'forbidden',
      tags       => ['constraint'],
      prio       => 3,
      arg        => 'bool',
      allow_expr => 1,
      ;
  
  
  
  
  
  
  has_clause 'clause',
      tags       => ['constraint'],
      prio       => 50,
      arg        => ['array*' => elems => ['clname*', 'any']],
      ;
  has_clause 'clset',
      prio=>50, tags=>['constraint'],
      arg=>['clset*']
      ;
  
  1;
  
  __END__
  
DATA_SAH_TYPE_BASETYPE

$fatpacked{"Data/Sah/Type/Comparable.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_COMPARABLE';
  package Data::Sah::Type::Comparable;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  
  requires 'superclause_comparable';
  
  has_clause 'in',
      tags       => ['constraint'],
      arg        => '(any[])*',
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_comparable('in', $cd);
      };
  has_clause 'is',
      tags       => ['constraint'],
      arg        => 'any',
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_comparable('is', $cd);
      };
  
  1;
  
  __END__
  
DATA_SAH_TYPE_COMPARABLE

$fatpacked{"Data/Sah/Type/HasElems.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_HASELEMS';
  package Data::Sah::Type::HasElems;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  
  requires 'superclause_has_elems';
  
  has_clause 'max_len',
      prio       => 51,
      arg        => ['int*' => {min=>0}],
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('max_len', $cd);
      };
  
  has_clause 'min_len',
      arg        => ['int*' => {min=>0}],
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('min_len', $cd);
      };
  
  has_clause 'len_between',
      arg        => ['array*' => {elems => ['int*', 'int*']}],
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('len_between', $cd);
      };
  
  has_clause 'len',
      arg        => ['int*' => {min=>0}],
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('len', $cd);
      };
  
  has_clause 'has',
      arg        => 'any',
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('has', $cd);
      };
  
  has_clause 'each_index',
      arg        => 'schema*',
      allow_expr => 0,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('each_index', $cd);
      };
  
  has_clause 'each_elem',
      arg        => 'schema*',
      allow_expr => 0,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('each_elem', $cd);
      };
  
  has_clause 'check_each_index',
      arg        => 'schema*',
      allow_expr => 0,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('check_each_index', $cd);
      };
  
  has_clause 'check_each_elem',
      arg        => 'schema*',
      allow_expr => 0,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('check_each_elem', $cd);
      };
  
  has_clause 'uniq',
      arg        => 'schema*',
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('uniq', $cd);
      };
  
  has_clause 'exists',
      arg        => 'schema*',
      allow_expr => 0,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_has_elems('exists', $cd);
      };
  
  
  
  
  1;
  
  __END__
  
DATA_SAH_TYPE_HASELEMS

$fatpacked{"Data/Sah/Type/Sortable.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_SORTABLE';
  package Data::Sah::Type::Sortable;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  
  requires 'superclause_sortable';
  
  has_clause 'min',
      tags       => ['constraint'],
      arg        => 'any*',
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_sortable('min', $cd);
      },
      ;
  has_clause 'xmin',
      tags       => ['constraint'],
      arg        => 'any*',
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_sortable('xmin', $cd);
      },
      ;
  has_clause 'max',
      prio       => 51,
      tags       => ['constraint'],
      arg        => 'any*',
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_sortable('max', $cd);
      },
      ;
  has_clause 'xmax',
      prio       => 51,
      tags       => ['constraint'],
      arg        => 'any*',
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_sortable('xmax', $cd);
      },
      ;
  has_clause 'between',
      tags       => ['constraint'],
      arg        => '[any*, any*]*',
      allow_expr => 1,
      code       => sub {
          my ($self, $cd) = @_;
          $self->superclause_sortable('between', $cd);
      },
      ;
  has_clause 'xbetween',
      tags       => ['constraint'],
      arg        => '[any*, any*]*',
      allow_expr => 1,
      code => sub {
          my ($self, $cd) = @_;
          $self->superclause_sortable('xbetween', $cd);
      },
      ;
  
  1;
  
  __END__
  
DATA_SAH_TYPE_SORTABLE

$fatpacked{"Data/Sah/Type/all.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_ALL';
  package Data::Sah::Type::all;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  
  has_clause 'of',
      tags       => ['constraint'],
      arg        => ['array*' => {min_len=>1, each_elem => 'schema*'}],
      allow_expr => 0,
      ;
  
  1;
  
  __END__
  
DATA_SAH_TYPE_ALL

$fatpacked{"Data/Sah/Type/any.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_ANY';
  package Data::Sah::Type::any;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  
  has_clause 'of',
      tags       => ['constraint'],
      arg        => ['array*' => {min_len=>1, each_elem => 'schema*'}],
      allow_expr => 0,
      ;
  
  1;
  
  __END__
  
DATA_SAH_TYPE_ANY

$fatpacked{"Data/Sah/Type/array.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_ARRAY';
  package Data::Sah::Type::array;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause', 'has_clause_alias';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  with 'Data::Sah::Type::Comparable';
  with 'Data::Sah::Type::HasElems';
  
  has_clause 'elems',
      tags       => ['constraint'],
      arg        => ['array*' => {of=>'schema*'}],
      allow_expr => 0,
      attrs      => {
          create_default => {
              arg        => [bool => default=>1],
              allow_expr => 0, 
          },
      },
      ;
  has_clause_alias each_elem => 'of';
  
  1;
  
  __END__
  
DATA_SAH_TYPE_ARRAY

$fatpacked{"Data/Sah/Type/bool.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_BOOL';
  package Data::Sah::Type::bool;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  with 'Data::Sah::Type::Comparable';
  with 'Data::Sah::Type::Sortable';
  
  has_clause 'is_true',
      tags       => ['constraint'],
      arg        => 'bool',
      allow_expr => 1,
      ;
  
  1;
  
  __END__
  
DATA_SAH_TYPE_BOOL

$fatpacked{"Data/Sah/Type/buf.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_BUF';
  package Data::Sah::Type::buf;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::str';
  
  1;
  
  __END__
  
DATA_SAH_TYPE_BUF

$fatpacked{"Data/Sah/Type/cistr.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_CISTR';
  package Data::Sah::Type::cistr;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::str';
  
  1;
  
  __END__
  
DATA_SAH_TYPE_CISTR

$fatpacked{"Data/Sah/Type/code.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_CODE';
  package Data::Sah::Type::code;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  
  1;
  
  __END__
  
DATA_SAH_TYPE_CODE

$fatpacked{"Data/Sah/Type/date.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_DATE';
  package Data::Sah::Type::date;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  with 'Data::Sah::Type::Comparable';
  with 'Data::Sah::Type::Sortable';
  
  
  1;
  
  __END__
  
DATA_SAH_TYPE_DATE

$fatpacked{"Data/Sah/Type/duration.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_DURATION';
  package Data::Sah::Type::duration;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  
  
  1;
  
  __END__
  
DATA_SAH_TYPE_DURATION

$fatpacked{"Data/Sah/Type/float.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_FLOAT';
  package Data::Sah::Type::float;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::num';
  
  has_clause 'is_nan',
      tags        => ['constraint'],
      arg         => ['bool'],
      allow_expr  => 1,
      allow_multi => 0,
      ;
  
  has_clause 'is_inf',
      tags        => ['constraint'],
      arg         => ['bool'],
      allow_expr  => 1,
      allow_multi => 1,
      ;
  
  has_clause 'is_pos_inf',
      tags        => ['constraint'],
      arg         => ['bool'],
      allow_expr  => 1,
      allow_multi => 1,
      ;
  
  has_clause 'is_neg_inf',
      tags        => ['constraint'],
      arg         => ['bool'],
      allow_expr  => 1,
      allow_multi => 1,
      ;
  
  1;
  
  __END__
  
DATA_SAH_TYPE_FLOAT

$fatpacked{"Data/Sah/Type/hash.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_HASH';
  package Data::Sah::Type::hash;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause', 'has_clause_alias';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  with 'Data::Sah::Type::Comparable';
  with 'Data::Sah::Type::HasElems';
  
  has_clause_alias each_elem => 'of';
  
  has_clause "keys",
      tags       => ['constraint'],
      arg        => ['hash*' => {values => 'schema*'}],
      allow_expr => 0,
      attrs      => {
          restrict => {
              arg        => [bool => default=>1],
              allow_expr => 0, 
          },
          create_default => {
              arg        => [bool => default=>1],
              allow_expr => 0, 
          },
      },
      ;
  has_clause "re_keys",
      prio       => 51,
      tags       => ['constraint'],
      arg        => ['hash*' => {keys => 're*', values => 'schema*'}],
      allow_expr => 0,
      attrs      => {
          restrict => {
              arg        => [bool => default=>1],
              allow_expr => 0, 
          },
      },
      ;
  has_clause "req_keys",
      tags       => ['constraint'],
      arg        => ['array*'],
      allow_expr => 1,
      ;
  has_clause "allowed_keys",
      tags       => ['constraint'],
      arg        => ['array*'],
      allow_expr => 1,
      ;
  has_clause "allowed_keys_re",
      prio       => 51,
      tags       => ['constraint'],
      arg        => 're*',
      allow_expr => 1,
      ;
  has_clause "forbidden_keys",
      tags       => ['constraint'],
      arg        => ['array*'],
      allow_expr => 1,
      ;
  has_clause "forbidden_keys_re",
      prio       => 51,
      tags       => ['constraint'],
      arg        => 're*',
      allow_expr => 1,
      ;
  has_clause_alias each_index => 'each_key';
  has_clause_alias each_elem => 'each_value';
  has_clause_alias check_each_index => 'check_each_key';
  has_clause_alias check_each_elem => 'check_each_value';
  
  has_clause "choose_one_key",
      prio       => 50,
      tags       => ['constraint'],
      arg        => ['array*', {of=>'str*', min_len=>1}],
      allow_expr => 0, 
      ;
  has_clause_alias choose_one_key => 'choose_one';
  has_clause "choose_all_keys",
      prio       => 50,
      tags       => ['constraint'],
      arg        => ['array*', {of=>'str*', min_len=>1}],
      allow_expr => 0, 
      ;
  has_clause_alias choose_all_keys => 'choose_all';
  has_clause "req_one_key",
      prio       => 50,
      tags       => ['constraint'],
      arg        => ['array*', {of=>'str*', min_len=>1}],
      allow_expr => 0, 
      ;
  has_clause_alias req_one_key => 'req_one';
  has_clause_alias req_keys => 'req_all_keys';
  has_clause_alias req_keys => 'req_all';
  
  my $dep_arg = ['array*', {elems=>[ 'str*', ['array*',of=>'str*'] ]}];
  
  has_clause "dep_any",
      prio       => 50,
      tags       => ['constraint'],
      arg        => $dep_arg,
      allow_expr => 0, 
      ;
  has_clause "dep_all",
      prio       => 50,
      tags       => ['constraint'],
      arg        => $dep_arg,
      allow_expr => 0, 
      ;
  has_clause "req_dep_any",
      prio       => 50,
      tags       => ['constraint'],
      arg        => $dep_arg,
      allow_expr => 0, 
      ;
  has_clause "req_dep_all",
      prio       => 50,
      tags       => ['constraint'],
      arg        => $dep_arg,
      allow_expr => 0, 
      ;
  
  
  
  1;
  
  __END__
  
DATA_SAH_TYPE_HASH

$fatpacked{"Data/Sah/Type/int.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_INT';
  package Data::Sah::Type::int;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::num';
  
  has_clause 'mod',
      tags       => ['constraint'],
      arg        => ['array*' => {elems => [['int*' => {'!is'=>0}], 'int*']}],
      allow_expr => 1,
      ;
  has_clause 'div_by',
      tags       => ['constraint'],
      arg        => ['int*' => {'!is'=>0}],
      allow_expr => 1,
      ;
  
  1;
  
  __END__
  
DATA_SAH_TYPE_INT

$fatpacked{"Data/Sah/Type/num.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_NUM';
  package Data::Sah::Type::num;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  with 'Data::Sah::Type::Comparable';
  with 'Data::Sah::Type::Sortable';
  
  1;
  
  __END__
  
DATA_SAH_TYPE_NUM

$fatpacked{"Data/Sah/Type/obj.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_OBJ';
  package Data::Sah::Type::obj;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  
  has_clause 'can',
      tags       => ['constraint'],
      arg        => 'str*', 
      allow_expr => 1,
      ;
  has_clause 'isa',
      tags       => ['constraint'],
      arg        => 'str*', 
      allow_expr => 1,
      ;
  
  1;
  
  __END__
  
DATA_SAH_TYPE_OBJ

$fatpacked{"Data/Sah/Type/re.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_RE';
  package Data::Sah::Type::re;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  
  1;
  
  __END__
  
DATA_SAH_TYPE_RE

$fatpacked{"Data/Sah/Type/str.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_STR';
  package Data::Sah::Type::str;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Data::Sah::Util::Role 'has_clause';
  use Role::Tiny;
  use Role::Tiny::With;
  
  with 'Data::Sah::Type::BaseType';
  with 'Data::Sah::Type::Comparable';
  with 'Data::Sah::Type::Sortable';
  with 'Data::Sah::Type::HasElems';
  
  my $t_re = 'regex*|{*=>regex*}';
  
  has_clause 'encoding',
      tags       => ['constraint'],
      arg        => 'str*',
      allow_expr => 0,
      ;
  has_clause 'match',
      tags       => ['constraint'],
      arg        => $t_re,
      allow_expr => 1,
      ;
  has_clause 'is_re',
      tags       => ['constraint'],
      arg        => 'bool',
      allow_expr => 1,
      ;
  
  1;
  
  __END__
  
DATA_SAH_TYPE_STR

$fatpacked{"Data/Sah/Type/undef.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_TYPE_UNDEF';
  package Data::Sah::Type::undef;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use Role::Tiny;
  use Data::Sah::Util::Role 'has_clause';
  
  1;
  
  __END__
  
DATA_SAH_TYPE_UNDEF

$fatpacked{"Data/Sah/Util/Func.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_UTIL_FUNC';
  package Data::Sah::Util::Func;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         add_func
                 );
  
  sub add_func {
      my ($funcset, $func, %opts) = @_;
  }
  
  1;
  
  __END__
  
DATA_SAH_UTIL_FUNC

$fatpacked{"Data/Sah/Util/Role.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_UTIL_ROLE';
  package Data::Sah::Util::Role;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Sub::Install qw(install_sub);
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         has_clause has_clause_alias
                         has_func   has_func_alias
                 );
  
  sub has_clause {
      my ($name, %args) = @_;
      my $caller = caller;
      my $into   = $args{into} // $caller;
  
      if ($args{code}) {
          install_sub({code => $args{code}, into => $into,
                       as => "clause_$name"});
      } else {
          eval "package $into; use Role::Tiny; ".
              "requires 'clause_$name';";
      }
      install_sub({code => sub {
                       state $meta = {
                           names      => [$name],
                           tags       => $args{tags},
                           prio       => $args{prio} // 50,
                           arg        => $args{arg},
                           allow_expr => $args{allow_expr},
                           attrs      => $args{attrs} // {},
                       };
                       $meta;
                   },
                   into => $into,
                   as => "clausemeta_$name"});
      has_clause_alias($name, $args{alias}  , $into);
      has_clause_alias($name, $args{aliases}, $into);
  }
  
  sub has_clause_alias {
      my ($name, $aliases, $into) = @_;
      my $caller   = caller;
      $into      //= $caller;
      my @aliases = !$aliases ? () :
          ref($aliases) eq 'ARRAY' ? @$aliases : $aliases;
      my $meta = $into->${\("clausemeta_$name")};
  
      for my $alias (@aliases) {
          push @{ $meta->{names} }, $alias;
          eval
              "package $into;".
              "sub clause_$alias { shift->clause_$name(\@_) } ".
              "sub clausemeta_$alias { shift->clausemeta_$name(\@_) } ";
          $@ and die "Can't make clause alias $alias -> $name: $@";
      }
  }
  
  sub has_func {
      my ($name, %args) = @_;
      my $caller = caller;
      my $into   = $args{into} // $caller;
  
      if ($args{code}) {
          install_sub({code => $args{code}, into => $into, as => "func_$name"});
      } else {
          eval "package $into; use Role::Tiny; requires 'func_$name';";
      }
      install_sub({code => sub {
                       state $meta = {
                           names => [$name],
                           args  => $args{args},
                       };
                       $meta;
                   },
                   into => $into,
                   as => "funcmeta_$name"});
      my @aliases =
          map { (!$args{$_} ? () :
                     ref($args{$_}) eq 'ARRAY' ? @{ $args{$_} } : $args{$_}) }
              qw/alias aliases/;
      has_func_alias($name, $args{alias}  , $into);
      has_func_alias($name, $args{aliases}, $into);
  }
  
  sub has_func_alias {
      my ($name, $aliases, $into) = @_;
      my $caller   = caller;
      $into      //= $caller;
      my @aliases = !$aliases ? () :
          ref($aliases) eq 'ARRAY' ? @$aliases : $aliases;
      my $meta = $into->${\("funcmeta_$name")};
  
      for my $alias (@aliases) {
          push @{ $meta->{names} }, $alias;
          eval
              "package $into;".
              "sub func_$alias { shift->func_$name(\@_) } ".
              "sub funcmeta_$alias { shift->funcmeta_$name(\@_) } ";
          $@ and die "Can't make func alias $alias -> $name: $@";
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_UTIL_ROLE

$fatpacked{"Data/Sah/Util/Type.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_UTIL_TYPE';
  package Data::Sah::Util::Type;
  
  our $DATE = '2015-12-17'; 
  our $VERSION = '0.43'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(get_type is_simple is_numeric is_collection is_ref);
  
  my $type_metas = {
      all   => {scalar=>0, numeric=>0, ref=>0},
      any   => {scalar=>0, numeric=>0, ref=>0},
      array => {scalar=>0, numeric=>0, ref=>1},
      bool  => {scalar=>1, numeric=>0, ref=>0},
      buf   => {scalar=>1, numeric=>0, ref=>0},
      cistr => {scalar=>1, numeric=>0, ref=>0},
      code  => {scalar=>1, numeric=>0, ref=>1},
      float => {scalar=>1, numeric=>1, ref=>0},
      hash  => {scalar=>0, numeric=>0, ref=>1},
      int   => {scalar=>1, numeric=>1, ref=>0},
      num   => {scalar=>1, numeric=>1, ref=>0},
      obj   => {scalar=>1, numeric=>0, ref=>1},
      re    => {scalar=>1, numeric=>0, ref=>1, simple=>1},
      str   => {scalar=>1, numeric=>0, ref=>0},
      undef => {scalar=>1, numeric=>0, ref=>0},
      date     => {scalar=>1, numeric=>0, ref=>0},
      duration => {scalar=>1, numeric=>0, ref=>0},
  };
  
  sub get_type {
      my $sch = shift;
  
      if (ref($sch) eq 'ARRAY') {
          $sch = $sch->[0];
      }
  
      if (defined($sch) && !ref($sch)) {
          $sch =~ s/\*\z//;
          return $sch;
      } else {
          return undef;
      }
  }
  
  sub _normalize {
      require Data::Sah::Normalize;
  
      my ($sch, $opts) = @_;
      return $sch if $opts->{schema_is_normalized};
      return Data::Sah::Normalize::normalize_schema($sch);
  }
  
  sub _handle_any_all {
      my ($sch, $opts, $crit) = @_;
      $sch = _normalize($sch, $opts);
      return 0 if $sch->[1]{'of.op'};
      my $of = $sch->[1]{of};
      return 0 unless $of && ref($of) eq 'ARRAY' && @$of;
      for (@$of) {
          return 0 unless $crit->($_);
      }
      1;
  }
  
  sub is_simple {
      my ($sch, $opts) = @_;
      $opts //= {};
  
      my $type = get_type($sch) or return undef;
      my $tmeta = $type_metas->{$type} or return undef;
      if ($type eq 'any' || $type eq 'all') {
          return _handle_any_all($sch, $opts, sub { is_simple(shift) });
      }
      return $tmeta->{simple} // ($tmeta->{scalar} && !$tmeta->{ref});
  }
  
  sub is_collection {
      my ($sch, $opts) = @_;
      $opts //= {};
  
      my $type = get_type($sch) or return undef;
      my $tmeta = $type_metas->{$type} or return undef;
      if ($type eq 'any' || $type eq 'all') {
          return _handle_any_all($sch, $opts, sub { is_collection(shift) });
      }
      return !$tmeta->{scalar};
  }
  
  sub is_numeric {
      my ($sch, $opts) = @_;
      $opts //= {};
  
      my $type = get_type($sch) or return undef;
      my $tmeta = $type_metas->{$type} or return undef;
      if ($type eq 'any' || $type eq 'all') {
          return _handle_any_all($sch, $opts, sub { is_numeric(shift) });
      }
      return $tmeta->{numeric};
  }
  
  sub is_ref {
      my ($sch, $opts) = @_;
      $opts //= {};
  
      my $type = get_type($sch) or return undef;
      my $tmeta = $type_metas->{$type} or return undef;
      if ($type eq 'any' || $type eq 'all') {
          return _handle_any_all($sch, $opts, sub { is_ref(shift) });
      }
      return $tmeta->{ref};
  }
  
  1;
  
  __END__
  
DATA_SAH_UTIL_TYPE

$fatpacked{"Data/Sah/Util/Type/Date.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_UTIL_TYPE_DATE';
  package Data::Sah::Util::Type::Date;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Scalar::Util qw(blessed looks_like_number);
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         coerce_date
                         coerce_duration
                 );
  
  our $DATE_MODULE = $ENV{DATA_SAH_DATE_MODULE} // $ENV{PERL_DATE_MODULE} //
      "DateTime"; 
  
  my $re_ymd = qr/\A([0-9]{4})-([0-9]{2})-([0-9]{2})\z/;
  my $re_ymdThmsZ = qr/\A([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z\z/;
  
  sub coerce_date {
      my $val = shift;
      if (!defined($val)) {
          return undef;
      }
  
      if ($DATE_MODULE eq 'DateTime') {
          require DateTime;
          if (blessed($val) && $val->isa('DateTime')) {
              return $val;
          } elsif (looks_like_number($val) && $val >= 10**8 && $val <= 2**31) {
              return DateTime->from_epoch(epoch => $val);
          } elsif ($val =~ $re_ymd) {
              my $d;
              eval { $d = DateTime->new(year=>$1, month=>$2, day=>$3, time_zone=>'UTC') };
              return undef if $@;
              return $d;
          } elsif ($val =~ $re_ymdThmsZ) {
              my $d;
              eval { $d = DateTime->new(year=>$1, month=>$2, day=>$3, hour=>$4, minute=>$5, second=>$6, time_zone=>'UTC') };
              return undef if $@;
              return $d;
          } elsif (blessed($val) && $val->isa('Time::Moment')) {
              return DateTime->from_epoch(epoch => $val->epoch);
          } elsif (blessed($val) && $val->isa('Time::Piece')) {
              return DateTime->from_epoch(epoch => $val->epoch);
          } else {
              return undef;
          }
      } elsif ($DATE_MODULE eq 'Time::Moment') {
          require Time::Moment;
          if (blessed($val) && $val->isa('Time::Moment')) {
              return $val;
          } elsif (looks_like_number($val) && $val >= 10**8 && $val <= 2**31) {
              return Time::Moment->from_epoch(int($val), $val-int($val));
          } elsif ($val =~ $re_ymd) {
              my $d;
              eval { $d = Time::Moment->new(year=>$1, month=>$2, day=>$3) };
              return undef if $@;
              return $d;
          } elsif ($val =~ $re_ymdThmsZ) {
              my $d;
              eval { $d = Time::Moment->new(year=>$1, month=>$2, day=>$3, hour=>$4, minute=>$5, second=>$6) };
              return undef if $@;
              return $d;
          } elsif (blessed($val) && $val->isa('DateTime')) {
              return Time::Moment->from_epoch($val->epoch);
          } elsif (blessed($val) && $val->isa('Time::Piece')) {
              return Time::Moment->from_epoch($val->epoch);
          } else {
              return undef;
          }
      } elsif ($DATE_MODULE eq 'Time::Piece') {
          require Time::Piece;
          if (blessed($val) && $val->isa('Time::Piece')) {
              return $val;
          } elsif (looks_like_number($val) && $val >= 10**8 && $val <= 2**31) {
              return scalar Time::Piece->gmtime($val);
          } elsif ($val =~ $re_ymd) {
              my $d;
              eval { $d = Time::Piece->strptime($val, "%Y-%m-%d") };
              return undef if $@;
              return $d;
          } elsif ($val =~ $re_ymdThmsZ) {
              my $d;
              eval { $d = Time::Piece->strptime($val, "%Y-%m-%dT%H:%M:%SZ") };
              return undef if $@;
              return $d;
          } elsif (blessed($val) && $val->isa('DateTime')) {
              return scalar Time::Piece->gmtime(epoch => $val->epoch);
          } elsif (blessed($val) && $val->isa('Time::Moment')) {
              return scalar Time::Piece->gmtime(epoch => $val->epoch);
          } else {
              return undef;
          }
      } else {
          die "BUG: Unknown Perl date module '$DATE_MODULE'";
      }
  }
  
  sub coerce_duration {
      my $val = shift;
      if (!defined($val)) {
          return undef;
      } elsif (blessed($val) && $val->isa('DateTime::Duration')) {
          return $val;
      } elsif ($val =~ /\AP
                        (?: ([0-9]+(?:\.[0-9]+)?)Y )?
                        (?: ([0-9]+(?:\.[0-9]+)?)M )?
                        (?: ([0-9]+(?:\.[0-9]+)?)W )?
                        (?: ([0-9]+(?:\.[0-9]+)?)D )?
                        (?:
                            T
                            (?: ([0-9]+(?:\.[0-9]+)?)H )?
                            (?: ([0-9]+(?:\.[0-9]+)?)M )?
                            (?: ([0-9]+(?:\.[0-9]+)?)S )?
                        )?
                        \z/x) {
          require DateTime::Duration;
          my $d;
          eval {
              $d = DateTime::Duration->new(
                  years   => $1 // 0,
                  months  => $2 // 0,
                  weeks   => $3 // 0,
                  days    => $4 // 0,
                  hours   => $5 // 0,
                  minutes => $6 // 0,
                  seconds => $7 // 0,
              );
          };
          return undef if $@;
          return $d;
      } else {
          return undef;
      }
  }
  
  1;
  
  __END__
  
DATA_SAH_UTIL_TYPE_DATE

$fatpacked{"Data/Sah/Util/TypeX.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'DATA_SAH_UTIL_TYPEX';
  package Data::Sah::Util::TypeX;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         add_clause
                 );
  
  sub add_clause {
      my ($type, $clause, %opts) = @_;
  
  
  }
  
  1;
  
  __END__
  
DATA_SAH_UTIL_TYPEX

$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;
  __END__
  
  
  
DATE_FORMAT

$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';
   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
  
  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';
   shift; # package
  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;
  
  __END__
  
  
  
DATE_PARSE

$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;
  
  __END__
  
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);
  	foreach 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;
  
  __END__
  
EXPORTER_TINY

$fatpacked{"File/Which.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'FILE_WHICH';
  package File::Which;
  
  use 5.008001;
  use strict;
  use warnings;
  use Exporter   ();
  use File::Spec ();
  
  our $VERSION = '1.18'; 
  
  
  our @ISA       = 'Exporter';
  our @EXPORT    = 'which';
  our @EXPORT_OK = 'where';
  
  use constant {
    IS_VMS => ($^O eq 'VMS'),
    IS_MAC => ($^O eq 'MacOS'),
    IS_DOS => ($^O eq 'MSWin32' or $^O eq 'dos' or $^O eq 'os2'),
    IS_CYG => ($^O eq 'cygwin'),
  };
  
  my @PATHEXT = ('');
  if ( IS_DOS ) {
    if ( $ENV{PATHEXT} ) {
      push @PATHEXT, split ';', $ENV{PATHEXT};
    } else {
      push @PATHEXT, qw{.com .exe .bat};
    }
  } elsif ( IS_VMS ) {
    push @PATHEXT, qw{.exe .com};
  } elsif ( IS_CYG ) {
    push @PATHEXT, qw{.exe .com};
  }
  
  
  sub which {
    my ($exec) = @_;
  
    return undef unless $exec;
  
    my $all = wantarray;
    my @results = ();
  
    if ( IS_VMS ) {
      my $symbol = `SHOW SYMBOL $exec`;
      chomp($symbol);
      unless ( $? ) {
        return $symbol unless $all;
        push @results, $symbol;
      }
    }
    if ( IS_MAC ) {
      my @aliases = split /\,/, $ENV{Aliases};
      foreach my $alias ( @aliases ) {
        if ( lc($alias) eq lc($exec) ) {
          chomp(my $file = `Alias $alias`);
          last unless $file;  
          return $file unless $all;
          push @results, $file;
          last;
        }
      }
    }
  
    return $exec
            if !IS_VMS and !IS_MAC and !IS_DOS and $exec =~ /\// and -f $exec and -x $exec;
  
    my @path = File::Spec->path;
    if ( IS_DOS or IS_VMS or IS_MAC ) {
      unshift @path, File::Spec->curdir;
    }
  
    foreach my $base ( map { File::Spec->catfile($_, $exec) } @path ) {
      for my $ext ( @PATHEXT ) {
        my $file = $base.$ext;
  
        next if -d $file;
  
        if (
          -x _
          or (
            IS_MAC
            ||
            (
              ( IS_DOS or IS_CYG )
              and
              grep {
                $file =~ /$_\z/i
              } @PATHEXT[1..$#PATHEXT]
            )
            and -e _
          )
        ) {
          return $file unless $all;
          push @results, $file;
        }
      }
    }
  
    if ( $all ) {
      return @results;
    } else {
      return undef;
    }
  }
  
  
  sub where {
    my @res = which($_[0]);
    return @res;
  }
  
  1;
  
  __END__
  
  
FILE_WHICH

$fatpacked{"Function/Fallback/CoreOrPP.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'FUNCTION_FALLBACK_COREORPP';
  package Function::Fallback::CoreOrPP;
  
  use 5.010001;
  use strict;
  use warnings;
  
  our $VERSION = '0.07'; 
  
  our $USE_NONCORE_XS_FIRST = 1;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(
                         clone
                         clone_list
                         unbless
                         uniq
                 );
  
  sub clone {
      my $data = shift;
      goto FALLBACK unless $USE_NONCORE_XS_FIRST;
      goto FALLBACK unless eval { require Data::Clone; 1 };
  
    STANDARD:
      return Data::Clone::clone($data);
  
    FALLBACK:
      require Clone::PP;
      return Clone::PP::clone($data);
  }
  
  sub clone_list {
      map { clone($_) } @_;
  }
  
  sub _unbless_fallback {
      my $ref = shift;
  
      my $r = ref($ref);
      return $ref unless $r;
  
      my ($r2, $r3) = "$ref" =~ /(.+)=(.+?)\(/
          or return $ref;
  
      if ($r3 eq 'HASH') {
          return { %$ref };
      } elsif ($r3 eq 'ARRAY') {
          return [ @$ref ];
      } elsif ($r3 eq 'SCALAR') {
          return \( my $copy = ${$ref} );
      } else {
          die "Can't handle $ref";
      }
  }
  
  sub unbless {
      my $ref = shift;
  
      goto FALLBACK unless $USE_NONCORE_XS_FIRST;
      goto FALLBACK unless eval { require Acme::Damn; 1 };
  
    STANDARD:
      return Acme::Damn::damn($ref);
  
    FALLBACK:
      return _unbless_fallback($ref);
  }
  
  sub uniq {
      goto FALLBACK unless $USE_NONCORE_XS_FIRST;
      goto FALLBACK unless eval { require List::MoreUtils; 1 };
  
    STANDARD:
      return List::MoreUtils::uniq(@_);
  
    FALLBACK:
      my %h;
      my @res;
      for (@_) {
          push @res, $_ unless $h{$_}++;
      }
      return @res;
  }
  
  1;
  
  __END__
  
FUNCTION_FALLBACK_COREORPP

$fatpacked{"Getopt/Long/Negate/EN.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'GETOPT_LONG_NEGATE_EN';
  package Getopt::Long::Negate::EN;
  
  our $DATE = '2016-01-03'; 
  our $VERSION = '0.03'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter qw(import);
  our @EXPORT_OK = qw(negations_for_option);
  
  sub negations_for_option {
      my $word = shift;
  
      if    ($word =~ /\Awith([_-].+)/   ) { return ("without$1") }
      elsif ($word =~ /\Awithout([_-].+)/) { return ("with$1")    }
  
      elsif ($word =~ /\Ais([_-].+)/     ) { return ("isnt$1")    }
      elsif ($word =~ /\Aisnt([_-].+)/   ) { return ("is$1")      }
      elsif ($word =~ /\Aare([_-].+)/    ) { return ("arent$1")   }
      elsif ($word =~ /\Aarent([_-].+)/  ) { return ("are$1")     }
  
      elsif ($word =~ /\Ahas([_-].+)/    ) { return ("hasnt$1")   }
      elsif ($word =~ /\Ahave([_-].+)/   ) { return ("havent$1")  }
      elsif ($word =~ /\Ahasnt([_-].+)/  ) { return ("has$1")     }
      elsif ($word =~ /\Ahavent([_-].+)/ ) { return ("have$1")    }
  
      elsif ($word =~ /\Acan([_-].+)/    ) { return ("cant$1")    }
      elsif ($word =~ /\Acant([_-].+)/   ) { return ("can$1")     }
  
      elsif ($word =~ /\Ano[_-](.+)/     ) { return ($1)          }
  
      else {
          return ("no-$word", "no$word");
      }
  }
  
  1;
  
  __END__
  
GETOPT_LONG_NEGATE_EN

$fatpacked{"Getopt/Long/Util.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'GETOPT_LONG_UTIL';
  package Getopt::Long::Util;
  
  our $DATE = '2016-01-08'; 
  our $VERSION = '0.84'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(
                         parse_getopt_long_opt_spec
                         humanize_getopt_long_opt_spec
                         detect_getopt_long_script
                 );
  
  our %SPEC;
  
  $SPEC{parse_getopt_long_opt_spec} = {
      v => 1.1,
      summary => 'Parse a single Getopt::Long option specification',
      description => <<'_',
  
  Will produce a hash with some keys:
  
  * `is_arg` (if true, then option specification is the special `<>` for argument
    callback)
  * `opts` (array of option names, in the order specified in the opt spec)
  * `type` (string, type name)
  * `desttype` (either '', or '@' or '%'),
  * `is_neg` (true for `--opt!`)
  * `is_inc` (true for `--opt+`)
  * `min_vals` (int, usually 0 or 1)
  * `max_vals` (int, usually 0 or 1 except for option that requires multiple
    values)
  
  Will return undef if it can't parse the string.
  
  _
      args => {
          optspec => {
              schema => 'str*',
              req => 1,
              pos => 0,
          },
      },
      args_as => 'array',
      result_naked => 1,
      result => {
          schema => 'hash*',
      },
      examples => [
          {
              args => {optspec => 'help|h|?'},
              result => {dash_prefix=>'', opts=>['help', 'h', '?']},
          },
          {
              args => {optspec=>'--foo=s'},
              result => {dash_prefix=>'--', opts=>['foo'], type=>'s', desttype=>''},
          },
      ],
  };
  sub parse_getopt_long_opt_spec {
      my $optspec = shift;
      return {is_arg=>1, dash_prefix=>'', opts=>[]}
          if $optspec eq '<>';
      $optspec =~ qr/\A
                 (?P<dash_prefix>-{0,2})
                 (?P<name>[A-Za-z0-9_][A-Za-z0-9_-]*)
                 (?P<aliases> (?: \| (?:[^:|!+=:-][^:|!+=:]*) )*)?
                 (?:
                     (?P<is_neg>!) |
                     (?P<is_inc>\+) |
                     (?:
                         =
                         (?P<type>[siof])
                         (?P<desttype>|[%@])?
                         (?:
                             \{
                             (?: (?P<min_vals>\d+), )?
                             (?P<max_vals>\d+)
                             \}
                         )?
                     ) |
                     (?:
                         :
                         (?P<opttype>[siof])
                         (?P<desttype>|[%@])
                     ) |
                     (?:
                         :
                         (?P<optnum>\d+)
                         (?P<desttype>|[%@])
                     )
                     (?:
                         :
                         (?P<optplus>\+)
                         (?P<desttype>|[%@])
                     )
                 )?
                 \z/x
                     or return undef;
      my %res = %+;
  
      if ($res{aliases}) {
          my @als;
          for my $al (split /\|/, $res{aliases}) {
              next unless length $al;
              next if $al eq $res{name};
              next if grep {$_ eq $al} @als;
              push @als, $al;
          }
          $res{opts} = [$res{name}, @als];
      } else {
          $res{opts} = [$res{name}];
      }
      delete $res{name};
      delete $res{aliases};
  
      $res{is_neg} = 1 if $res{is_neg};
      $res{is_inc} = 1 if $res{is_inc};
  
      \%res;
  }
  
  $SPEC{humanize_getopt_long_opt_spec} = {
      v => 1.1,
      description => <<'_',
  
  Convert `Getopt::Long` option specification like `help|h|?` or `--foo=s` or
  `debug!` into, respectively, `--help, -h, -?` or `--foo=s` or `--(no)debug`.
  Will die if can't parse the string. The output is suitable for including in
  help/usage text.
  
  _
      args => {
          optspec => {
              schema => 'str*',
              req => 1,
              pos => 0,
          },
      },
      args_as => 'array',
      result_naked => 1,
      result => {
          schema => 'str*',
      },
  };
  sub humanize_getopt_long_opt_spec {
      my $optspec = shift;
  
      my $parse = parse_getopt_long_opt_spec($optspec)
          or die "Can't parse opt spec $optspec";
  
      return "argument" if $parse->{is_arg};
  
      my $res = '';
      my $i = 0;
      for (@{ $parse->{opts} }) {
          $i++;
          $res .= ", " if length($res);
          if ($parse->{is_neg} && length($_) > 1) {
              $res .= "--(no)$_";
          } else {
              if (length($_) > 1) {
                  $res .= "--$_";
              } else {
                  $res .= "-$_";
              }
              $res .= "=$parse->{type}" if $i==1 && $parse->{type};
          }
      }
      $res;
  }
  
  $SPEC{detect_getopt_long_script} = {
      v => 1.1,
      summary => 'Detect whether a file is a Getopt::Long-based CLI script',
      description => <<'_',
  
  The criteria are:
  
  * the file must exist and readable;
  
  * (optional, if `include_noexec` is false) file must have its executable mode
    bit set;
  
  * content must start with a shebang C<#!>;
  
  * either: must be perl script (shebang line contains 'perl') and must contain
    something like `use Getopt::Long`;
  
  _
      args => {
          filename => {
              summary => 'Path to file to be checked',
              schema => 'str*',
              description => <<'_',
  
  Either `filename` or `string` must be specified.
  
  _
          },
          string => {
              summary => 'Path to file to be checked',
              schema => 'buf*',
              description => <<'_',
  
  Either `file` or `string` must be specified.
  
  _
          },
          include_noexec => {
              summary => 'Include scripts that do not have +x mode bit set',
              schema  => 'bool*',
              default => 1,
          },
      },
  };
  sub detect_getopt_long_script {
      my %args = @_;
  
      (defined($args{filename}) xor defined($args{string}))
          or return [400, "Please specify either filename or string"];
      my $include_noexec  = $args{include_noexec}  // 1;
  
      my $yesno = 0;
      my $reason = "";
  
      my $str = $args{string};
    DETECT:
      {
          if (defined $args{filename}) {
              my $fn = $args{filename};
              unless (-f $fn) {
                  $reason = "'$fn' is not a file";
                  last;
              };
              if (!$include_noexec && !(-x _)) {
                  $reason = "'$fn' is not an executable";
                  last;
              }
              my $fh;
              unless (open $fh, "<", $fn) {
                  $reason = "Can't be read";
                  last;
              }
              read $fh, $str, 2;
              unless ($str eq '#!') {
                  $reason = "Does not start with a shebang (#!) sequence";
                  last;
              }
              my $shebang = <$fh>;
              unless ($shebang =~ /perl/) {
                  $reason = "Does not have 'perl' in the shebang line";
                  last;
              }
              seek $fh, 0, 0;
              {
                  local $/;
                  $str = <$fh>;
              }
          }
          unless ($str =~ /\A#!/) {
              $reason = "Does not start with a shebang (#!) sequence";
              last;
          }
          unless ($str =~ /\A#!.*perl/) {
              $reason = "Does not have 'perl' in the shebang line";
              last;
          }
          if ($str =~ /^\s*(use|require)\s+Getopt::Long(\s|;)/m) {
              $yesno = 1;
              last DETECT;
          }
          $reason = "Can't find any statement requiring Getopt::Long module";
      } 
  
      [200, "OK", $yesno, {"func.reason"=>$reason}];
  }
  
  
  __END__
  
GETOPT_LONG_UTIL

$fatpacked{"HTTP/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'HTTP_TINY';
  package HTTP::Tiny;
  use strict;
  use warnings;
  
  our $VERSION = '0.054';
  
  use Carp ();
  
  
  my @attributes;
  BEGIN {
      @attributes = qw(
          cookie_jar default_headers http_proxy https_proxy keep_alive
          local_address max_redirect max_size proxy no_proxy timeout
          SSL_options verify_SSL
      );
      my %persist_ok = map {; $_ => 1 } qw(
          cookie_jar default_headers max_redirect max_size
      );
      no strict 'refs';
      no warnings 'uninitialized';
      for my $accessor ( @attributes ) {
          *{$accessor} = sub {
              @_ > 1
                  ? do {
                      delete $_[0]->{handle} if !$persist_ok{$accessor} && $_[1] ne $_[0]->{$accessor};
                      $_[0]->{$accessor} = $_[1]
                  }
                  : $_[0]->{$accessor};
          };
      }
  }
  
  sub agent {
      my($self, $agent) = @_;
      if( @_ > 1 ){
          $self->{agent} =
              (defined $agent && $agent =~ / $/) ? $agent . $self->_agent : $agent;
      }
      return $self->{agent};
  }
  
  sub new {
      my($class, %args) = @_;
  
      my $self = {
          max_redirect => 5,
          timeout      => 60,
          keep_alive   => 1,
          verify_SSL   => $args{verify_SSL} || $args{verify_ssl} || 0, 
          no_proxy     => $ENV{no_proxy},
      };
  
      bless $self, $class;
  
      $class->_validate_cookie_jar( $args{cookie_jar} ) if $args{cookie_jar};
  
      for my $key ( @attributes ) {
          $self->{$key} = $args{$key} if exists $args{$key}
      }
  
      $self->agent( exists $args{agent} ? $args{agent} : $class->_agent );
  
      $self->_set_proxies;
  
      return $self;
  }
  
  sub _set_proxies {
      my ($self) = @_;
  
  
      if (! exists $self->{proxy} ) {
          $self->{proxy} = $ENV{all_proxy} || $ENV{ALL_PROXY};
      }
  
      if ( defined $self->{proxy} ) {
          $self->_split_proxy( 'generic proxy' => $self->{proxy} ); 
      }
      else {
          delete $self->{proxy};
      }
  
      if (! exists $self->{http_proxy} ) {
          local $ENV{HTTP_PROXY} if $ENV{REQUEST_METHOD};
          $self->{http_proxy} = $ENV{http_proxy} || $ENV{HTTP_PROXY} || $self->{proxy};
      }
  
      if ( defined $self->{http_proxy} ) {
          $self->_split_proxy( http_proxy => $self->{http_proxy} ); 
          $self->{_has_proxy}{http} = 1;
      }
      else {
          delete $self->{http_proxy};
      }
  
      if (! exists $self->{https_proxy} ) {
          $self->{https_proxy} = $ENV{https_proxy} || $ENV{HTTPS_PROXY} || $self->{proxy};
      }
  
      if ( $self->{https_proxy} ) {
          $self->_split_proxy( https_proxy => $self->{https_proxy} ); 
          $self->{_has_proxy}{https} = 1;
      }
      else {
          delete $self->{https_proxy};
      }
  
      unless ( ref $self->{no_proxy} eq 'ARRAY' ) {
          $self->{no_proxy} =
              (defined $self->{no_proxy}) ? [ split /\s*,\s*/, $self->{no_proxy} ] : [];
      }
  
      return;
  }
  
  
  for my $sub_name ( qw/get head put post delete/ ) {
      my $req_method = uc $sub_name;
      no strict 'refs';
      eval <<"HERE"; 
      sub $sub_name {
          my (\$self, \$url, \$args) = \@_;
          \@_ == 2 || (\@_ == 3 && ref \$args eq 'HASH')
          or Carp::croak(q/Usage: \$http->$sub_name(URL, [HASHREF])/ . "\n");
          return \$self->request('$req_method', \$url, \$args || {});
      }
  HERE
  }
  
  
  sub post_form {
      my ($self, $url, $data, $args) = @_;
      (@_ == 3 || @_ == 4 && ref $args eq 'HASH')
          or Carp::croak(q/Usage: $http->post_form(URL, DATAREF, [HASHREF])/ . "\n");
  
      my $headers = {};
      while ( my ($key, $value) = each %{$args->{headers} || {}} ) {
          $headers->{lc $key} = $value;
      }
      delete $args->{headers};
  
      return $self->request('POST', $url, {
              %$args,
              content => $self->www_form_urlencode($data),
              headers => {
                  %$headers,
                  'content-type' => 'application/x-www-form-urlencoded'
              },
          }
      );
  }
  
  
  sub mirror {
      my ($self, $url, $file, $args) = @_;
      @_ == 3 || (@_ == 4 && ref $args eq 'HASH')
        or Carp::croak(q/Usage: $http->mirror(URL, FILE, [HASHREF])/ . "\n");
      if ( -e $file and my $mtime = (stat($file))[9] ) {
          $args->{headers}{'if-modified-since'} ||= $self->_http_date($mtime);
      }
      my $tempfile = $file . int(rand(2**31));
  
      require Fcntl;
      sysopen my $fh, $tempfile, Fcntl::O_CREAT()|Fcntl::O_EXCL()|Fcntl::O_WRONLY()
         or Carp::croak(qq/Error: Could not create temporary file $tempfile for downloading: $!\n/);
      binmode $fh;
      $args->{data_callback} = sub { print {$fh} $_[0] };
      my $response = $self->request('GET', $url, $args);
      close $fh
          or Carp::croak(qq/Error: Caught error closing temporary file $tempfile: $!\n/);
  
      if ( $response->{success} ) {
          rename $tempfile, $file
              or Carp::croak(qq/Error replacing $file with $tempfile: $!\n/);
          my $lm = $response->{headers}{'last-modified'};
          if ( $lm and my $mtime = $self->_parse_http_date($lm) ) {
              utime $mtime, $mtime, $file;
          }
      }
      $response->{success} ||= $response->{status} eq '304';
      unlink $tempfile;
      return $response;
  }
  
  
  my %idempotent = map { $_ => 1 } qw/GET HEAD PUT DELETE OPTIONS TRACE/;
  
  sub request {
      my ($self, $method, $url, $args) = @_;
      @_ == 3 || (@_ == 4 && ref $args eq 'HASH')
        or Carp::croak(q/Usage: $http->request(METHOD, URL, [HASHREF])/ . "\n");
      $args ||= {}; 
  
      my $response;
      for ( 0 .. 1 ) {
          $response = eval { $self->_request($method, $url, $args) };
          last unless $@ && $idempotent{$method}
              && $@ =~ m{^(?:Socket closed|Unexpected end)};
      }
  
      if (my $e = $@) {
          if ( ref $e eq 'HASH' && exists $e->{status} ) {
              return $e;
          }
  
          $e = "$e";
          $response = {
              url     => $url,
              success => q{},
              status  => 599,
              reason  => 'Internal Exception',
              content => $e,
              headers => {
                  'content-type'   => 'text/plain',
                  'content-length' => length $e,
              }
          };
      }
      return $response;
  }
  
  
  sub www_form_urlencode {
      my ($self, $data) = @_;
      (@_ == 2 && ref $data)
          or Carp::croak(q/Usage: $http->www_form_urlencode(DATAREF)/ . "\n");
      (ref $data eq 'HASH' || ref $data eq 'ARRAY')
          or Carp::croak("form data must be a hash or array reference\n");
  
      my @params = ref $data eq 'HASH' ? %$data : @$data;
      @params % 2 == 0
          or Carp::croak("form data reference must have an even number of terms\n");
  
      my @terms;
      while( @params ) {
          my ($key, $value) = splice(@params, 0, 2);
          if ( ref $value eq 'ARRAY' ) {
              unshift @params, map { $key => $_ } @$value;
          }
          else {
              push @terms, join("=", map { $self->_uri_escape($_) } $key, $value);
          }
      }
  
      return join("&", (ref $data eq 'ARRAY') ? (@terms) : (sort @terms) );
  }
  
  
  my %DefaultPort = (
      http => 80,
      https => 443,
  );
  
  sub _agent {
      my $class = ref($_[0]) || $_[0];
      (my $default_agent = $class) =~ s{::}{-}g;
      return $default_agent . "/" . $class->VERSION;
  }
  
  sub _request {
      my ($self, $method, $url, $args) = @_;
  
      my ($scheme, $host, $port, $path_query, $auth) = $self->_split_url($url);
  
      my $request = {
          method    => $method,
          scheme    => $scheme,
          host      => $host,
          port      => $port,
          host_port => ($port == $DefaultPort{$scheme} ? $host : "$host:$port"),
          uri       => $path_query,
          headers   => {},
      };
  
      my $handle = delete $self->{handle};
      if ( $handle ) {
          unless ( $handle->can_reuse( $scheme, $host, $port ) ) {
              $handle->close;
              undef $handle;
          }
      }
      $handle ||= $self->_open_handle( $request, $scheme, $host, $port );
  
      $self->_prepare_headers_and_cb($request, $args, $url, $auth);
      $handle->write_request($request);
  
      my $response;
      do { $response = $handle->read_response_header }
          until (substr($response->{status},0,1) ne '1');
  
      $self->_update_cookie_jar( $url, $response ) if $self->{cookie_jar};
  
      if ( my @redir_args = $self->_maybe_redirect($request, $response, $args) ) {
          $handle->close;
          return $self->_request(@redir_args, $args);
      }
  
      my $known_message_length;
      if ($method eq 'HEAD' || $response->{status} =~ /^[23]04/) {
          $known_message_length = 1;
      }
      else {
          my $data_cb = $self->_prepare_data_cb($response, $args);
          $known_message_length = $handle->read_body($data_cb, $response);
      }
  
      if ( $self->{keep_alive}
          && $known_message_length
          && $response->{protocol} eq 'HTTP/1.1'
          && ($response->{headers}{connection} || '') ne 'close'
      ) {
          $self->{handle} = $handle;
      }
      else {
          $handle->close;
      }
  
      $response->{success} = substr( $response->{status}, 0, 1 ) eq '2';
      $response->{url} = $url;
      return $response;
  }
  
  sub _open_handle {
      my ($self, $request, $scheme, $host, $port) = @_;
  
      my $handle  = HTTP::Tiny::Handle->new(
          timeout         => $self->{timeout},
          SSL_options     => $self->{SSL_options},
          verify_SSL      => $self->{verify_SSL},
          local_address   => $self->{local_address},
          keep_alive      => $self->{keep_alive}
      );
  
      if ($self->{_has_proxy}{$scheme} && ! grep { $host =~ /\Q$_\E$/ } @{$self->{no_proxy}}) {
          return $self->_proxy_connect( $request, $handle );
      }
      else {
          return $handle->connect($scheme, $host, $port);
      }
  }
  
  sub _proxy_connect {
      my ($self, $request, $handle) = @_;
  
      my @proxy_vars;
      if ( $request->{scheme} eq 'https' ) {
          Carp::croak(qq{No https_proxy defined}) unless $self->{https_proxy};
          @proxy_vars = $self->_split_proxy( https_proxy => $self->{https_proxy} );
          if ( $proxy_vars[0] eq 'https' ) {
              Carp::croak(qq{Can't proxy https over https: $request->{uri} via $self->{https_proxy}});
          }
      }
      else {
          Carp::croak(qq{No http_proxy defined}) unless $self->{http_proxy};
          @proxy_vars = $self->_split_proxy( http_proxy => $self->{http_proxy} );
      }
  
      my ($p_scheme, $p_host, $p_port, $p_auth) = @proxy_vars;
  
      if ( length $p_auth && ! defined $request->{headers}{'proxy-authorization'} ) {
          $self->_add_basic_auth_header( $request, 'proxy-authorization' => $p_auth );
      }
  
      $handle->connect($p_scheme, $p_host, $p_port);
  
      if ($request->{scheme} eq 'https') {
          $self->_create_proxy_tunnel( $request, $handle );
      }
      else {
          $request->{uri} = "$request->{scheme}://$request->{host_port}$request->{uri}";
      }
  
      return $handle;
  }
  
  sub _split_proxy {
      my ($self, $type, $proxy) = @_;
  
      my ($scheme, $host, $port, $path_query, $auth) = eval { $self->_split_url($proxy) };
  
      unless(
          defined($scheme) && length($scheme) && length($host) && length($port)
          && $path_query eq '/'
      ) {
          Carp::croak(qq{$type URL must be in format http[s]://[auth@]<host>:<port>/\n});
      }
  
      return ($scheme, $host, $port, $auth);
  }
  
  sub _create_proxy_tunnel {
      my ($self, $request, $handle) = @_;
  
      $handle->_assert_ssl;
  
      my $agent = exists($request->{headers}{'user-agent'})
          ? $request->{headers}{'user-agent'} : $self->{agent};
  
      my $connect_request = {
          method    => 'CONNECT',
          uri       => "$request->{host}:$request->{port}",
          headers   => {
              host => "$request->{host}:$request->{port}",
              'user-agent' => $agent,
          }
      };
  
      if ( $request->{headers}{'proxy-authorization'} ) {
          $connect_request->{headers}{'proxy-authorization'} =
              delete $request->{headers}{'proxy-authorization'};
      }
  
      $handle->write_request($connect_request);
      my $response;
      do { $response = $handle->read_response_header }
          until (substr($response->{status},0,1) ne '1');
  
      unless (substr($response->{status},0,1) eq '2') {
          die $response;
      }
  
      $handle->start_ssl( $request->{host} );
  
      return;
  }
  
  sub _prepare_headers_and_cb {
      my ($self, $request, $args, $url, $auth) = @_;
  
      for ($self->{default_headers}, $args->{headers}) {
          next unless defined;
          while (my ($k, $v) = each %$_) {
              $request->{headers}{lc $k} = $v;
          }
      }
  
      if (exists $request->{headers}{'host'}) {
          die(qq/The 'Host' header must not be provided as header option\n/);
      }
  
      $request->{headers}{'host'}         = $request->{host_port};
      $request->{headers}{'user-agent'} ||= $self->{agent};
      $request->{headers}{'connection'}   = "close"
          unless $self->{keep_alive};
  
      if ( defined $args->{content} ) {
          if (ref $args->{content} eq 'CODE') {
              $request->{headers}{'content-type'} ||= "application/octet-stream";
              $request->{headers}{'transfer-encoding'} = 'chunked'
                unless $request->{headers}{'content-length'}
                    || $request->{headers}{'transfer-encoding'};
              $request->{cb} = $args->{content};
          }
          elsif ( length $args->{content} ) {
              my $content = $args->{content};
              if ( $] ge '5.008' ) {
                  utf8::downgrade($content, 1)
                      or die(qq/Wide character in request message body\n/);
              }
              $request->{headers}{'content-type'} ||= "application/octet-stream";
              $request->{headers}{'content-length'} = length $content
                unless $request->{headers}{'content-length'}
                    || $request->{headers}{'transfer-encoding'};
              $request->{cb} = sub { substr $content, 0, length $content, '' };
          }
          $request->{trailer_cb} = $args->{trailer_callback}
              if ref $args->{trailer_callback} eq 'CODE';
      }
  
      if ( $self->{cookie_jar} ) {
          my $cookies = $self->cookie_jar->cookie_header( $url );
          $request->{headers}{cookie} = $cookies if length $cookies;
      }
  
      if ( length $auth && ! defined $request->{headers}{authorization} ) {
          $self->_add_basic_auth_header( $request, 'authorization' => $auth );
      }
  
      return;
  }
  
  sub _add_basic_auth_header {
      my ($self, $request, $header, $auth) = @_;
      require MIME::Base64;
      $request->{headers}{$header} =
          "Basic " . MIME::Base64::encode_base64($auth, "");
      return;
  }
  
  sub _prepare_data_cb {
      my ($self, $response, $args) = @_;
      my $data_cb = $args->{data_callback};
      $response->{content} = '';
  
      if (!$data_cb || $response->{status} !~ /^2/) {
          if (defined $self->{max_size}) {
              $data_cb = sub {
                  $_[1]->{content} .= $_[0];
                  die(qq/Size of response body exceeds the maximum allowed of $self->{max_size}\n/)
                    if length $_[1]->{content} > $self->{max_size};
              };
          }
          else {
              $data_cb = sub { $_[1]->{content} .= $_[0] };
          }
      }
      return $data_cb;
  }
  
  sub _update_cookie_jar {
      my ($self, $url, $response) = @_;
  
      my $cookies = $response->{headers}->{'set-cookie'};
      return unless defined $cookies;
  
      my @cookies = ref $cookies ? @$cookies : $cookies;
  
      $self->cookie_jar->add( $url, $_ ) for @cookies;
  
      return;
  }
  
  sub _validate_cookie_jar {
      my ($class, $jar) = @_;
  
      for my $method ( qw/add cookie_header/ ) {
          Carp::croak(qq/Cookie jar must provide the '$method' method\n/)
              unless ref($jar) && ref($jar)->can($method);
      }
  
      return;
  }
  
  sub _maybe_redirect {
      my ($self, $request, $response, $args) = @_;
      my $headers = $response->{headers};
      my ($status, $method) = ($response->{status}, $request->{method});
      if (($status eq '303' or ($status =~ /^30[127]/ && $method =~ /^GET|HEAD$/))
          and $headers->{location}
          and ++$args->{redirects} <= $self->{max_redirect}
      ) {
          my $location = ($headers->{location} =~ /^\//)
              ? "$request->{scheme}://$request->{host_port}$headers->{location}"
              : $headers->{location} ;
          return (($status eq '303' ? 'GET' : $method), $location);
      }
      return;
  }
  
  sub _split_url {
      my $url = pop;
  
      my ($scheme, $host, $path_query) = $url =~ m<\A([^:/?#]+)://([^/?#]*)([^#]*)>
        or die(qq/Cannot parse URL: '$url'\n/);
  
      $scheme     = lc $scheme;
      $path_query = "/$path_query" unless $path_query =~ m<\A/>;
  
      my $auth = '';
      if ( (my $i = index $host, '@') != -1 ) {
          $auth = substr $host, 0, $i, ''; 
          substr $host, 0, 1, '';          
  
          $auth =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg;
      }
      my $port = $host =~ s/:(\d*)\z// && length $1 ? $1
               : $scheme eq 'http'                  ? 80
               : $scheme eq 'https'                 ? 443
               : undef;
  
      return ($scheme, (length $host ? lc $host : "localhost") , $port, $path_query, $auth);
  }
  
  my $DoW = "Sun|Mon|Tue|Wed|Thu|Fri|Sat";
  my $MoY = "Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec";
  sub _http_date {
      my ($sec, $min, $hour, $mday, $mon, $year, $wday) = gmtime($_[1]);
      return sprintf("%s, %02d %s %04d %02d:%02d:%02d GMT",
          substr($DoW,$wday*4,3),
          $mday, substr($MoY,$mon*4,3), $year+1900,
          $hour, $min, $sec
      );
  }
  
  sub _parse_http_date {
      my ($self, $str) = @_;
      require Time::Local;
      my @tl_parts;
      if ($str =~ /^[SMTWF][a-z]+, +(\d{1,2}) ($MoY) +(\d\d\d\d) +(\d\d):(\d\d):(\d\d) +GMT$/) {
          @tl_parts = ($6, $5, $4, $1, (index($MoY,$2)/4), $3);
      }
      elsif ($str =~ /^[SMTWF][a-z]+, +(\d\d)-($MoY)-(\d{2,4}) +(\d\d):(\d\d):(\d\d) +GMT$/ ) {
          @tl_parts = ($6, $5, $4, $1, (index($MoY,$2)/4), $3);
      }
      elsif ($str =~ /^[SMTWF][a-z]+ +($MoY) +(\d{1,2}) +(\d\d):(\d\d):(\d\d) +(?:[^0-9]+ +)?(\d\d\d\d)$/ ) {
          @tl_parts = ($5, $4, $3, $2, (index($MoY,$1)/4), $6);
      }
      return eval {
          my $t = @tl_parts ? Time::Local::timegm(@tl_parts) : -1;
          $t < 0 ? undef : $t;
      };
  }
  
  my %escapes = map { chr($_) => sprintf("%%%02X", $_) } 0..255;
  $escapes{' '}="+";
  my $unsafe_char = qr/[^A-Za-z0-9\-\._~]/;
  
  sub _uri_escape {
      my ($self, $str) = @_;
      if ( $] ge '5.008' ) {
          utf8::encode($str);
      }
      else {
          $str = pack("U*", unpack("C*", $str)) 
              if ( length $str == do { use bytes; length $str } );
          $str = pack("C*", unpack("C*", $str)); 
      }
      $str =~ s/($unsafe_char)/$escapes{$1}/ge;
      return $str;
  }
  
  package
      HTTP::Tiny::Handle; 
  use strict;
  use warnings;
  
  use Errno      qw[EINTR EPIPE];
  use IO::Socket qw[SOCK_STREAM];
  
  my $SOCKET_CLASS =
      $ENV{PERL_HTTP_TINY_IPV4_ONLY} ? 'IO::Socket::INET' :
      eval { require IO::Socket::IP; IO::Socket::IP->VERSION(0.25) } ? 'IO::Socket::IP' :
      'IO::Socket::INET';
  
  sub BUFSIZE () { 32768 } 
  
  my $Printable = sub {
      local $_ = shift;
      s/\r/\\r/g;
      s/\n/\\n/g;
      s/\t/\\t/g;
      s/([^\x20-\x7E])/sprintf('\\x%.2X', ord($1))/ge;
      $_;
  };
  
  my $Token = qr/[\x21\x23-\x27\x2A\x2B\x2D\x2E\x30-\x39\x41-\x5A\x5E-\x7A\x7C\x7E]/;
  
  sub new {
      my ($class, %args) = @_;
      return bless {
          rbuf             => '',
          timeout          => 60,
          max_line_size    => 16384,
          max_header_lines => 64,
          verify_SSL       => 0,
          SSL_options      => {},
          %args
      }, $class;
  }
  
  sub connect {
      @_ == 4 || die(q/Usage: $handle->connect(scheme, host, port)/ . "\n");
      my ($self, $scheme, $host, $port) = @_;
  
      if ( $scheme eq 'https' ) {
          $self->_assert_ssl;
      }
      elsif ( $scheme ne 'http' ) {
        die(qq/Unsupported URL scheme '$scheme'\n/);
      }
      $self->{fh} = $SOCKET_CLASS->new(
          PeerHost  => $host,
          PeerPort  => $port,
          $self->{local_address} ?
              ( LocalAddr => $self->{local_address} ) : (),
          Proto     => 'tcp',
          Type      => SOCK_STREAM,
          Timeout   => $self->{timeout},
          KeepAlive => !!$self->{keep_alive}
      ) or die(qq/Could not connect to '$host:$port': $@\n/);
  
      binmode($self->{fh})
        or die(qq/Could not binmode() socket: '$!'\n/);
  
      $self->start_ssl($host) if $scheme eq 'https';
  
      $self->{scheme} = $scheme;
      $self->{host} = $host;
      $self->{port} = $port;
      $self->{pid} = $$;
      $self->{tid} = _get_tid();
  
      return $self;
  }
  
  sub start_ssl {
      my ($self, $host) = @_;
  
      if ( ref($self->{fh}) eq 'IO::Socket::SSL' ) {
          unless ( $self->{fh}->stop_SSL ) {
              my $ssl_err = IO::Socket::SSL->errstr;
              die(qq/Error halting prior SSL connection: $ssl_err/);
          }
      }
  
      my $ssl_args = $self->_ssl_args($host);
      IO::Socket::SSL->start_SSL(
          $self->{fh},
          %$ssl_args,
          SSL_create_ctx_callback => sub {
              my $ctx = shift;
              Net::SSLeay::CTX_set_mode($ctx, Net::SSLeay::MODE_AUTO_RETRY());
          },
      );
  
      unless ( ref($self->{fh}) eq 'IO::Socket::SSL' ) {
          my $ssl_err = IO::Socket::SSL->errstr;
          die(qq/SSL connection failed for $host: $ssl_err\n/);
      }
  }
  
  sub close {
      @_ == 1 || die(q/Usage: $handle->close()/ . "\n");
      my ($self) = @_;
      CORE::close($self->{fh})
        or die(qq/Could not close socket: '$!'\n/);
  }
  
  sub write {
      @_ == 2 || die(q/Usage: $handle->write(buf)/ . "\n");
      my ($self, $buf) = @_;
  
      if ( $] ge '5.008' ) {
          utf8::downgrade($buf, 1)
              or die(qq/Wide character in write()\n/);
      }
  
      my $len = length $buf;
      my $off = 0;
  
      local $SIG{PIPE} = 'IGNORE';
  
      while () {
          $self->can_write
            or die(qq/Timed out while waiting for socket to become ready for writing\n/);
          my $r = syswrite($self->{fh}, $buf, $len, $off);
          if (defined $r) {
              $len -= $r;
              $off += $r;
              last unless $len > 0;
          }
          elsif ($! == EPIPE) {
              die(qq/Socket closed by remote server: $!\n/);
          }
          elsif ($! != EINTR) {
              if ($self->{fh}->can('errstr')){
                  my $err = $self->{fh}->errstr();
                  die (qq/Could not write to SSL socket: '$err'\n /);
              }
              else {
                  die(qq/Could not write to socket: '$!'\n/);
              }
  
          }
      }
      return $off;
  }
  
  sub read {
      @_ == 2 || @_ == 3 || die(q/Usage: $handle->read(len [, allow_partial])/ . "\n");
      my ($self, $len, $allow_partial) = @_;
  
      my $buf  = '';
      my $got = length $self->{rbuf};
  
      if ($got) {
          my $take = ($got < $len) ? $got : $len;
          $buf  = substr($self->{rbuf}, 0, $take, '');
          $len -= $take;
      }
  
      while ($len > 0) {
          $self->can_read
            or die(q/Timed out while waiting for socket to become ready for reading/ . "\n");
          my $r = sysread($self->{fh}, $buf, $len, length $buf);
          if (defined $r) {
              last unless $r;
              $len -= $r;
          }
          elsif ($! != EINTR) {
              if ($self->{fh}->can('errstr')){
                  my $err = $self->{fh}->errstr();
                  die (qq/Could not read from SSL socket: '$err'\n /);
              }
              else {
                  die(qq/Could not read from socket: '$!'\n/);
              }
          }
      }
      if ($len && !$allow_partial) {
          die(qq/Unexpected end of stream\n/);
      }
      return $buf;
  }
  
  sub readline {
      @_ == 1 || die(q/Usage: $handle->readline()/ . "\n");
      my ($self) = @_;
  
      while () {
          if ($self->{rbuf} =~ s/\A ([^\x0D\x0A]* \x0D?\x0A)//x) {
              return $1;
          }
          if (length $self->{rbuf} >= $self->{max_line_size}) {
              die(qq/Line size exceeds the maximum allowed size of $self->{max_line_size}\n/);
          }
          $self->can_read
            or die(qq/Timed out while waiting for socket to become ready for reading\n/);
          my $r = sysread($self->{fh}, $self->{rbuf}, BUFSIZE, length $self->{rbuf});
          if (defined $r) {
              last unless $r;
          }
          elsif ($! != EINTR) {
              if ($self->{fh}->can('errstr')){
                  my $err = $self->{fh}->errstr();
                  die (qq/Could not read from SSL socket: '$err'\n /);
              }
              else {
                  die(qq/Could not read from socket: '$!'\n/);
              }
          }
      }
      die(qq/Unexpected end of stream while looking for line\n/);
  }
  
  sub read_header_lines {
      @_ == 1 || @_ == 2 || die(q/Usage: $handle->read_header_lines([headers])/ . "\n");
      my ($self, $headers) = @_;
      $headers ||= {};
      my $lines   = 0;
      my $val;
  
      while () {
           my $line = $self->readline;
  
           if (++$lines >= $self->{max_header_lines}) {
               die(qq/Header lines exceeds maximum number allowed of $self->{max_header_lines}\n/);
           }
           elsif ($line =~ /\A ([^\x00-\x1F\x7F:]+) : [\x09\x20]* ([^\x0D\x0A]*)/x) {
               my ($field_name) = lc $1;
               if (exists $headers->{$field_name}) {
                   for ($headers->{$field_name}) {
                       $_ = [$_] unless ref $_ eq "ARRAY";
                       push @$_, $2;
                       $val = \$_->[-1];
                   }
               }
               else {
                   $val = \($headers->{$field_name} = $2);
               }
           }
           elsif ($line =~ /\A [\x09\x20]+ ([^\x0D\x0A]*)/x) {
               $val
                 or die(qq/Unexpected header continuation line\n/);
               next unless length $1;
               $$val .= ' ' if length $$val;
               $$val .= $1;
           }
           elsif ($line =~ /\A \x0D?\x0A \z/x) {
              last;
           }
           else {
              die(q/Malformed header line: / . $Printable->($line) . "\n");
           }
      }
      return $headers;
  }
  
  sub write_request {
      @_ == 2 || die(q/Usage: $handle->write_request(request)/ . "\n");
      my($self, $request) = @_;
      $self->write_request_header(@{$request}{qw/method uri headers/});
      $self->write_body($request) if $request->{cb};
      return;
  }
  
  my %HeaderCase = (
      'content-md5'      => 'Content-MD5',
      'etag'             => 'ETag',
      'te'               => 'TE',
      'www-authenticate' => 'WWW-Authenticate',
      'x-xss-protection' => 'X-XSS-Protection',
  );
  
  sub write_header_lines {
      (@_ == 2 || @_ == 3 && ref $_[1] eq 'HASH') || die(q/Usage: $handle->write_header_lines(headers[,prefix])/ . "\n");
      my($self, $headers, $prefix_data) = @_;
  
      my $buf = (defined $prefix_data ? $prefix_data : '');
      while (my ($k, $v) = each %$headers) {
          my $field_name = lc $k;
          if (exists $HeaderCase{$field_name}) {
              $field_name = $HeaderCase{$field_name};
          }
          else {
              $field_name =~ /\A $Token+ \z/xo
                or die(q/Invalid HTTP header field name: / . $Printable->($field_name) . "\n");
              $field_name =~ s/\b(\w)/\u$1/g;
              $HeaderCase{lc $field_name} = $field_name;
          }
          for (ref $v eq 'ARRAY' ? @$v : $v) {
              $_ = '' unless defined $_;
              $buf .= "$field_name: $_\x0D\x0A";
          }
      }
      $buf .= "\x0D\x0A";
      return $self->write($buf);
  }
  
  sub read_body {
      @_ == 3 || die(q/Usage: $handle->read_body(callback, response)/ . "\n");
      my ($self, $cb, $response) = @_;
      my $te = $response->{headers}{'transfer-encoding'} || '';
      my $chunked = grep { /chunked/i } ( ref $te eq 'ARRAY' ? @$te : $te ) ;
      return $chunked
          ? $self->read_chunked_body($cb, $response)
          : $self->read_content_body($cb, $response);
  }
  
  sub write_body {
      @_ == 2 || die(q/Usage: $handle->write_body(request)/ . "\n");
      my ($self, $request) = @_;
      if ($request->{headers}{'content-length'}) {
          return $self->write_content_body($request);
      }
      else {
          return $self->write_chunked_body($request);
      }
  }
  
  sub read_content_body {
      @_ == 3 || @_ == 4 || die(q/Usage: $handle->read_content_body(callback, response, [read_length])/ . "\n");
      my ($self, $cb, $response, $content_length) = @_;
      $content_length ||= $response->{headers}{'content-length'};
  
      if ( defined $content_length ) {
          my $len = $content_length;
          while ($len > 0) {
              my $read = ($len > BUFSIZE) ? BUFSIZE : $len;
              $cb->($self->read($read, 0), $response);
              $len -= $read;
          }
          return length($self->{rbuf}) == 0;
      }
  
      my $chunk;
      $cb->($chunk, $response) while length( $chunk = $self->read(BUFSIZE, 1) );
  
      return;
  }
  
  sub write_content_body {
      @_ == 2 || die(q/Usage: $handle->write_content_body(request)/ . "\n");
      my ($self, $request) = @_;
  
      my ($len, $content_length) = (0, $request->{headers}{'content-length'});
      while () {
          my $data = $request->{cb}->();
  
          defined $data && length $data
            or last;
  
          if ( $] ge '5.008' ) {
              utf8::downgrade($data, 1)
                  or die(qq/Wide character in write_content()\n/);
          }
  
          $len += $self->write($data);
      }
  
      $len == $content_length
        or die(qq/Content-Length mismatch (got: $len expected: $content_length)\n/);
  
      return $len;
  }
  
  sub read_chunked_body {
      @_ == 3 || die(q/Usage: $handle->read_chunked_body(callback, $response)/ . "\n");
      my ($self, $cb, $response) = @_;
  
      while () {
          my $head = $self->readline;
  
          $head =~ /\A ([A-Fa-f0-9]+)/x
            or die(q/Malformed chunk head: / . $Printable->($head) . "\n");
  
          my $len = hex($1)
            or last;
  
          $self->read_content_body($cb, $response, $len);
  
          $self->read(2) eq "\x0D\x0A"
            or die(qq/Malformed chunk: missing CRLF after chunk data\n/);
      }
      $self->read_header_lines($response->{headers});
      return 1;
  }
  
  sub write_chunked_body {
      @_ == 2 || die(q/Usage: $handle->write_chunked_body(request)/ . "\n");
      my ($self, $request) = @_;
  
      my $len = 0;
      while () {
          my $data = $request->{cb}->();
  
          defined $data && length $data
            or last;
  
          if ( $] ge '5.008' ) {
              utf8::downgrade($data, 1)
                  or die(qq/Wide character in write_chunked_body()\n/);
          }
  
          $len += length $data;
  
          my $chunk  = sprintf '%X', length $data;
             $chunk .= "\x0D\x0A";
             $chunk .= $data;
             $chunk .= "\x0D\x0A";
  
          $self->write($chunk);
      }
      $self->write("0\x0D\x0A");
      $self->write_header_lines($request->{trailer_cb}->())
          if ref $request->{trailer_cb} eq 'CODE';
      return $len;
  }
  
  sub read_response_header {
      @_ == 1 || die(q/Usage: $handle->read_response_header()/ . "\n");
      my ($self) = @_;
  
      my $line = $self->readline;
  
      $line =~ /\A (HTTP\/(0*\d+\.0*\d+)) [\x09\x20]+ ([0-9]{3}) [\x09\x20]+ ([^\x0D\x0A]*) \x0D?\x0A/x
        or die(q/Malformed Status-Line: / . $Printable->($line). "\n");
  
      my ($protocol, $version, $status, $reason) = ($1, $2, $3, $4);
  
      die (qq/Unsupported HTTP protocol: $protocol\n/)
          unless $version =~ /0*1\.0*[01]/;
  
      return {
          status       => $status,
          reason       => $reason,
          headers      => $self->read_header_lines,
          protocol     => $protocol,
      };
  }
  
  sub write_request_header {
      @_ == 4 || die(q/Usage: $handle->write_request_header(method, request_uri, headers)/ . "\n");
      my ($self, $method, $request_uri, $headers) = @_;
  
      return $self->write_header_lines($headers, "$method $request_uri HTTP/1.1\x0D\x0A");
  }
  
  sub _do_timeout {
      my ($self, $type, $timeout) = @_;
      $timeout = $self->{timeout}
          unless defined $timeout && $timeout >= 0;
  
      my $fd = fileno $self->{fh};
      defined $fd && $fd >= 0
        or die(qq/select(2): 'Bad file descriptor'\n/);
  
      my $initial = time;
      my $pending = $timeout;
      my $nfound;
  
      vec(my $fdset = '', $fd, 1) = 1;
  
      while () {
          $nfound = ($type eq 'read')
              ? select($fdset, undef, undef, $pending)
              : select(undef, $fdset, undef, $pending) ;
          if ($nfound == -1) {
              $! == EINTR
                or die(qq/select(2): '$!'\n/);
              redo if !$timeout || ($pending = $timeout - (time - $initial)) > 0;
              $nfound = 0;
          }
          last;
      }
      $! = 0;
      return $nfound;
  }
  
  sub can_read {
      @_ == 1 || @_ == 2 || die(q/Usage: $handle->can_read([timeout])/ . "\n");
      my $self = shift;
      if ( ref($self->{fh}) eq 'IO::Socket::SSL' ) {
          return 1 if $self->{fh}->pending;
      }
      return $self->_do_timeout('read', @_)
  }
  
  sub can_write {
      @_ == 1 || @_ == 2 || die(q/Usage: $handle->can_write([timeout])/ . "\n");
      my $self = shift;
      return $self->_do_timeout('write', @_)
  }
  
  sub _assert_ssl {
      die(qq/IO::Socket::SSL 1.42 must be installed for https support\n/)
          unless eval {require IO::Socket::SSL; IO::Socket::SSL->VERSION(1.42)};
      die(qq/Net::SSLeay 1.49 must be installed for https support\n/)
          unless eval {require Net::SSLeay; Net::SSLeay->VERSION(1.49)};
  }
  
  sub can_reuse {
      my ($self,$scheme,$host,$port) = @_;
      return 0 if
          $self->{pid} != $$
          || $self->{tid} != _get_tid()
          || length($self->{rbuf})
          || $scheme ne $self->{scheme}
          || $host ne $self->{host}
          || $port ne $self->{port}
          || eval { $self->can_read(0) }
          || $@ ;
          return 1;
  }
  
  sub _find_CA_file {
      my $self = shift();
  
      return $self->{SSL_options}->{SSL_ca_file}
          if $self->{SSL_options}->{SSL_ca_file} and -e $self->{SSL_options}->{SSL_ca_file};
  
      return Mozilla::CA::SSL_ca_file()
          if eval { require Mozilla::CA };
  
      foreach my $ca_bundle (
          "/etc/ssl/certs/ca-certificates.crt",     
          "/etc/pki/tls/certs/ca-bundle.crt",       
          "/etc/ssl/ca-bundle.pem",                 
          "/etc/openssl/certs/ca-certificates.crt", 
          "/etc/ssl/cert.pem",                      
          "/usr/local/share/certs/ca-root-nss.crt", 
          "/etc/pki/tls/cacert.pem",                
          "/etc/certs/ca-certificates.crt",         
      ) {
          return $ca_bundle if -e $ca_bundle;
      }
  
      die qq/Couldn't find a CA bundle with which to verify the SSL certificate.\n/
        . qq/Try installing Mozilla::CA from CPAN\n/;
  }
  
  sub _get_tid {
      no warnings 'reserved'; 
      return threads->can("tid") ? threads->tid : 0;
  }
  
  sub _ssl_args {
      my ($self, $host) = @_;
  
      my %ssl_args;
  
      if ( Net::SSLeay::OPENSSL_VERSION_NUMBER() >= 0x01000000 ) {
          $ssl_args{SSL_hostname} = $host,          
      }
  
      if ($self->{verify_SSL}) {
          $ssl_args{SSL_verifycn_scheme}  = 'http'; 
          $ssl_args{SSL_verifycn_name}    = $host;  
          $ssl_args{SSL_verify_mode}      = 0x01;   
          $ssl_args{SSL_ca_file}          = $self->_find_CA_file;
      }
      else {
          $ssl_args{SSL_verifycn_scheme}  = 'none'; 
          $ssl_args{SSL_verify_mode}      = 0x00;   
      }
  
      for my $k ( keys %{$self->{SSL_options}} ) {
          $ssl_args{$k} = $self->{SSL_options}{$k} if $k =~ m/^SSL_/;
      }
  
      return \%ssl_args;
  }
  
  1;
  
  __END__
  
HTTP_TINY

$fatpacked{"HTTP/Tiny/UNIX.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'HTTP_TINY_UNIX';
  package HTTP::Tiny::UNIX;
  
  use 5.010001;
  use strict;
  use warnings;
  
  our $DATE = '2014-07-04'; 
  our $VERSION = '0.04'; 
  
  
  use parent qw(HTTP::Tiny);
  
  use IO::Socket::UNIX;
  
  sub _split_url {
      my ($self, $url) = @_;
  
      if ($url =~ m<\A[^:/?#]+://>) {
          $self->{_unix} = 0;
          return $self->SUPER::_split_url($url);
      }
  
      my ($scheme, $sock_path, $path_query) =
          $url =~ m<\A(\w+):(.+?)/(/[^#]*)>
              or die "Cannot parse HTTP-over-Unix URL: '$url'\n";
  
      $self->{_unix} = 1;
      $self->{_path_query} = $path_query;
  
      $scheme = lc $scheme;
      die "Only http scheme is supported\n" unless $scheme eq 'http';
  
      return  ($scheme, $sock_path, -1,    $path_query, '');
  }
  
  sub _open_handle {
      my ($self, $request, $scheme, $host, $port) = @_;
  
      return $self->SUPER::_open_handle($request, $scheme, $host, $port)
          unless $self->{_unix};
  
      my $handle = HTTP::Tiny::Handle::UNIX->new(
          timeout => $self->{timeout},
      );
  
      $handle->connect($scheme, $host, $port, $self);
  }
  
  package
      HTTP::Tiny::Handle::UNIX;
  
  use parent -norequire, 'HTTP::Tiny::Handle';
  
  use IO::Socket;
  
  sub connect {
      my ($self, $scheme, $host, $port, $tiny) = @_;
  
      my $path = $host;
  
      local($^W) = 0;
      my $sock = IO::Socket::UNIX->new(
          Peer    => $path,
          Type    => SOCK_STREAM,
          Timeout => $self->{timeout},
          Host    => 'localhost',
      );
  
      unless ($sock) {
          $@ =~ s/^.*?: //;
          die "Can't open Unix socket $path\: $@";
      }
  
      eval { $sock->blocking(0); };
  
      $self->{fh} = $sock;
  
      $self->{scheme} = $scheme;
      $self->{host} = $host;
      $self->{port} = $port;
      $self->{_unix} = 1;
      $self->{_tiny} = $tiny;
      $self;
  }
  
  sub write_request_header {
      my ($self, $method, $request_uri, $headers) = @_;
  
      return $self->write_request_header($method, $request_uri, $headers)
          unless $self->{_unix};
  
      return $self->write_header_lines($headers, "$method $self->{_tiny}{_path_query} HTTP/1.1\x0D\x0A");
  }
  
  1;
  
  __END__
  
HTTP_TINY_UNIX

$fatpacked{"JSON.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'JSON';
  package JSON;
  
  
  use strict;
  use Carp ();
  use base qw(Exporter);
  @JSON::EXPORT = qw(from_json to_json jsonToObj objToJson encode_json decode_json);
  
  BEGIN {
      $JSON::VERSION = '2.90';
      $JSON::DEBUG   = 0 unless (defined $JSON::DEBUG);
      $JSON::DEBUG   = $ENV{ PERL_JSON_DEBUG } if exists $ENV{ PERL_JSON_DEBUG };
  }
  
  my $Module_XS  = 'JSON::XS';
  my $Module_PP  = 'JSON::PP';
  my $Module_bp  = 'JSON::backportPP'; 
  my $PP_Version = '2.27203';
  my $XS_Version = '2.34';
  
  
  
  my @PublicMethods = qw/
      ascii latin1 utf8 pretty indent space_before space_after relaxed canonical allow_nonref 
      allow_blessed convert_blessed filter_json_object filter_json_single_key_object 
      shrink max_depth max_size encode decode decode_prefix allow_unknown
  /;
  
  my @Properties = qw/
      ascii latin1 utf8 indent space_before space_after relaxed canonical allow_nonref
      allow_blessed convert_blessed shrink max_depth max_size allow_unknown
  /;
  
  my @XSOnlyMethods = qw/allow_tags/; 
  
  my @PPOnlyMethods = qw/
      indent_length sort_by
      allow_singlequote allow_bignum loose allow_barekey escape_slash as_nonblessed
  /; 
  
  
  my $_INSTALL_DONT_DIE  = 1; 
  my $_INSTALL_ONLY      = 2; 
  my $_ALLOW_UNSUPPORTED = 0;
  my $_UNIV_CONV_BLESSED = 0;
  my $_USSING_bpPP       = 0;
  
  
  
  unless ($JSON::Backend) {
      $JSON::DEBUG and  Carp::carp("Check used worker module...");
  
      my $backend = exists $ENV{PERL_JSON_BACKEND} ? $ENV{PERL_JSON_BACKEND} : 1;
  
      if ($backend eq '1' or $backend =~ /JSON::XS\s*,\s*JSON::PP/) {
          _load_xs($_INSTALL_DONT_DIE) or _load_pp();
      }
      elsif ($backend eq '0' or $backend eq 'JSON::PP') {
          _load_pp();
      }
      elsif ($backend eq '2' or $backend eq 'JSON::XS') {
          _load_xs();
      }
      elsif ($backend eq 'JSON::backportPP') {
          $_USSING_bpPP = 1;
          _load_pp();
      }
      else {
          Carp::croak "The value of environmental variable 'PERL_JSON_BACKEND' is invalid.";
      }
  }
  
  
  sub import {
      my $pkg = shift;
      my @what_to_export;
      my $no_export;
  
      for my $tag (@_) {
          if ($tag eq '-support_by_pp') {
              if (!$_ALLOW_UNSUPPORTED++) {
                  JSON::Backend::XS
                      ->support_by_pp(@PPOnlyMethods) if ($JSON::Backend eq $Module_XS);
              }
              next;
          }
          elsif ($tag eq '-no_export') {
              $no_export++, next;
          }
          elsif ( $tag eq '-convert_blessed_universally' ) {
              eval q|
                  require B;
                  *UNIVERSAL::TO_JSON = sub {
                      my $b_obj = B::svref_2object( $_[0] );
                      return    $b_obj->isa('B::HV') ? { %{ $_[0] } }
                              : $b_obj->isa('B::AV') ? [ @{ $_[0] } ]
                              : undef
                              ;
                  }
              | if ( !$_UNIV_CONV_BLESSED++ );
              next;
          }
          push @what_to_export, $tag;
      }
  
      return if ($no_export);
  
      __PACKAGE__->export_to_level(1, $pkg, @what_to_export);
  }
  
  
  
  sub jsonToObj {
      my $alternative = 'from_json';
      if (defined $_[0] and UNIVERSAL::isa($_[0], 'JSON')) {
          shift @_; $alternative = 'decode';
      }
      Carp::carp "'jsonToObj' will be obsoleted. Please use '$alternative' instead.";
      return JSON::from_json(@_);
  };
  
  sub objToJson {
      my $alternative = 'to_json';
      if (defined $_[0] and UNIVERSAL::isa($_[0], 'JSON')) {
          shift @_; $alternative = 'encode';
      }
      Carp::carp "'objToJson' will be obsoleted. Please use '$alternative' instead.";
      JSON::to_json(@_);
  };
  
  
  
  sub to_json ($@) {
      if (
          ref($_[0]) eq 'JSON'
          or (@_ > 2 and $_[0] eq 'JSON')
      ) {
          Carp::croak "to_json should not be called as a method.";
      }
      my $json = JSON->new;
  
      if (@_ == 2 and ref $_[1] eq 'HASH') {
          my $opt  = $_[1];
          for my $method (keys %$opt) {
              $json->$method( $opt->{$method} );
          }
      }
  
      $json->encode($_[0]);
  }
  
  
  sub from_json ($@) {
      if ( ref($_[0]) eq 'JSON' or $_[0] eq 'JSON' ) {
          Carp::croak "from_json should not be called as a method.";
      }
      my $json = JSON->new;
  
      if (@_ == 2 and ref $_[1] eq 'HASH') {
          my $opt  = $_[1];
          for my $method (keys %$opt) {
              $json->$method( $opt->{$method} );
          }
      }
  
      return $json->decode( $_[0] );
  }
  
  
  
  sub true  { $JSON::true  }
  
  sub false { $JSON::false }
  
  sub null  { undef; }
  
  
  sub require_xs_version { $XS_Version; }
  
  sub backend {
      my $proto = shift;
      $JSON::Backend;
  }
  
  
  
  sub is_xs {
      return $_[0]->backend eq $Module_XS;
  }
  
  
  sub is_pp {
      return not $_[0]->is_xs;
  }
  
  
  sub pureperl_only_methods { @PPOnlyMethods; }
  
  
  sub property {
      my ($self, $name, $value) = @_;
  
      if (@_ == 1) {
          my %props;
          for $name (@Properties) {
              my $method = 'get_' . $name;
              if ($name eq 'max_size') {
                  my $value = $self->$method();
                  $props{$name} = $value == 1 ? 0 : $value;
                  next;
              }
              $props{$name} = $self->$method();
          }
          return \%props;
      }
      elsif (@_ > 3) {
          Carp::croak('property() can take only the option within 2 arguments.');
      }
      elsif (@_ == 2) {
          if ( my $method = $self->can('get_' . $name) ) {
              if ($name eq 'max_size') {
                  my $value = $self->$method();
                  return $value == 1 ? 0 : $value;
              }
              $self->$method();
          }
      }
      else {
          $self->$name($value);
      }
  
  }
  
  
  
  
  sub _load_xs {
      my $opt = shift;
  
      $JSON::DEBUG and Carp::carp "Load $Module_XS.";
  
      JSON::Boolean::_overrride_overload($Module_XS);
      JSON::Boolean::_overrride_overload($Module_PP);
  
      eval qq|
          use $Module_XS $XS_Version ();
      |;
  
      if ($@) {
          if (defined $opt and $opt & $_INSTALL_DONT_DIE) {
              $JSON::DEBUG and Carp::carp "Can't load $Module_XS...($@)";
              return 0;
          }
          Carp::croak $@;
      }
  
      unless (defined $opt and $opt & $_INSTALL_ONLY) {
          _set_module( $JSON::Backend = $Module_XS );
          my $data = join("", <DATA>); 
          close(DATA);
          eval $data;
          JSON::Backend::XS->init;
      }
  
      return 1;
  };
  
  
  sub _load_pp {
      my $opt = shift;
      my $backend = $_USSING_bpPP ? $Module_bp : $Module_PP;
  
      $JSON::DEBUG and Carp::carp "Load $backend.";
  
      JSON::Boolean::_overrride_overload($Module_XS);
      JSON::Boolean::_overrride_overload($backend);
  
      if ( $_USSING_bpPP ) {
          eval qq| require $backend |;
      }
      else {
          eval qq| use $backend $PP_Version () |;
      }
  
      if ($@) {
          if ( $backend eq $Module_PP ) {
              $JSON::DEBUG and Carp::carp "Can't load $Module_PP ($@), so try to load $Module_bp";
              $_USSING_bpPP++;
              $backend = $Module_bp;
              JSON::Boolean::_overrride_overload($backend);
              local $^W; 
              eval qq| require $Module_bp |;
          }
          Carp::croak $@ if $@;
      }
  
      unless (defined $opt and $opt & $_INSTALL_ONLY) {
          _set_module( $JSON::Backend = $Module_PP ); 
          JSON::Backend::PP->init;
      }
  };
  
  
  sub _set_module {
      return if defined $JSON::true;
  
      my $module = shift;
  
      local $^W;
      no strict qw(refs);
  
      $JSON::true  = ${"$module\::true"};
      $JSON::false = ${"$module\::false"};
  
      push @JSON::ISA, $module;
      if ( JSON->is_xs and JSON->backend->VERSION < 3 ) {
          eval 'package JSON::PP::Boolean';
          push @{"$module\::Boolean::ISA"}, qw(JSON::PP::Boolean);
      }
  
      *{"JSON::is_bool"} = \&{"$module\::is_bool"};
  
      for my $method ($module eq $Module_XS ? @PPOnlyMethods : @XSOnlyMethods) {
          *{"JSON::$method"} = sub {
              Carp::carp("$method is not supported in $module.");
              $_[0];
          };
      }
  
      return 1;
  }
  
  
  
  
  package JSON::Boolean;
  
  my %Installed;
  
  sub _overrride_overload {
      return; 
      return if ($Installed{ $_[0] }++);
  
      my $boolean = $_[0] . '::Boolean';
  
      eval sprintf(q|
          package %s;
          use overload (
              '""' => sub { ${$_[0]} == 1 ? 'true' : 'false' },
              'eq' => sub {
                  my ($obj, $op) = ref ($_[0]) ? ($_[0], $_[1]) : ($_[1], $_[0]);
                  if ($op eq 'true' or $op eq 'false') {
                      return "$obj" eq 'true' ? 'true' eq $op : 'false' eq $op;
                  }
                  else {
                      return $obj ? 1 == $op : 0 == $op;
                  }
              },
          );
      |, $boolean);
  
      if ($@) { Carp::croak $@; }
  
      if ( exists $INC{'JSON/XS.pm'} and $boolean eq 'JSON::XS::Boolean' ) {
          local $^W;
          my $true  = do { bless \(my $dummy = 1), $boolean };
          my $false = do { bless \(my $dummy = 0), $boolean };
          *JSON::XS::true  = sub () { $true };
          *JSON::XS::false = sub () { $false };
      }
      elsif ( exists $INC{'JSON/PP.pm'} and $boolean eq 'JSON::PP::Boolean' ) {
          local $^W;
          my $true  = do { bless \(my $dummy = 1), $boolean };
          my $false = do { bless \(my $dummy = 0), $boolean };
          *JSON::PP::true  = sub { $true };
          *JSON::PP::false = sub { $false };
      }
  
      return 1;
  }
  
  
  
  package JSON::Backend::PP;
  
  sub init {
      local $^W;
      no strict qw(refs); 
      *{"JSON::decode_json"} = \&{"JSON::PP::decode_json"};
      *{"JSON::encode_json"} = \&{"JSON::PP::encode_json"};
      *{"JSON::PP::is_xs"}  = sub { 0 };
      *{"JSON::PP::is_pp"}  = sub { 1 };
      return 1;
  }
  
  
  package JSON;
  
  1;
  __DATA__
  
  
  #
  # Helper classes for Backend Module (XS)
  #
  
  package JSON::Backend::XS;
  
  use constant INDENT_LENGTH_FLAG => 15 << 12;
  
  use constant UNSUPPORTED_ENCODE_FLAG => {
      ESCAPE_SLASH      => 0x00000010,
      ALLOW_BIGNUM      => 0x00000020,
      AS_NONBLESSED     => 0x00000040,
      EXPANDED          => 0x10000000, # for developer's
  };
  
  use constant UNSUPPORTED_DECODE_FLAG => {
      LOOSE             => 0x00000001,
      ALLOW_BIGNUM      => 0x00000002,
      ALLOW_BAREKEY     => 0x00000004,
      ALLOW_SINGLEQUOTE => 0x00000008,
      EXPANDED          => 0x20000000, # for developer's
  };
  
  
  sub init {
      local $^W;
      no strict qw(refs);
      *{"JSON::decode_json"} = \&{"JSON::XS::decode_json"};
      *{"JSON::encode_json"} = \&{"JSON::XS::encode_json"};
      *{"JSON::XS::is_xs"}  = sub { 1 };
      *{"JSON::XS::is_pp"}  = sub { 0 };
      return 1;
  }
  
  
  sub support_by_pp {
      my ($class, @methods) = @_;
  
      local $^W;
      no strict qw(refs);
  
      my $JSON_XS_encode_orignal     = \&JSON::XS::encode;
      my $JSON_XS_decode_orignal     = \&JSON::XS::decode;
      my $JSON_XS_incr_parse_orignal = \&JSON::XS::incr_parse;
  
      *JSON::XS::decode     = \&JSON::Backend::XS::Supportable::_decode;
      *JSON::XS::encode     = \&JSON::Backend::XS::Supportable::_encode;
      *JSON::XS::incr_parse = \&JSON::Backend::XS::Supportable::_incr_parse;
  
      *{JSON::XS::_original_decode}     = $JSON_XS_decode_orignal;
      *{JSON::XS::_original_encode}     = $JSON_XS_encode_orignal;
      *{JSON::XS::_original_incr_parse} = $JSON_XS_incr_parse_orignal;
  
      push @JSON::Backend::XS::Supportable::ISA, 'JSON';
  
      my $pkg = 'JSON::Backend::XS::Supportable';
  
      *{JSON::new} = sub {
          my $proto = JSON::XS->new; $$proto = 0;
          bless  $proto, $pkg;
      };
  
  
      for my $method (@methods) {
          my $flag = uc($method);
          my $type |= (UNSUPPORTED_ENCODE_FLAG->{$flag} || 0);
             $type |= (UNSUPPORTED_DECODE_FLAG->{$flag} || 0);
  
          next unless($type);
  
          $pkg->_make_unsupported_method($method => $type);
      }
  
  #    push @{"JSON::XS::Boolean::ISA"}, qw(JSON::PP::Boolean);
  #    push @{"JSON::PP::Boolean::ISA"}, qw(JSON::Boolean);
  
      $JSON::DEBUG and Carp::carp("set -support_by_pp mode.");
  
      return 1;
  }
  
  
  
  
  #
  # Helper classes for XS
  #
  
  package JSON::Backend::XS::Supportable;
  
  $Carp::Internal{'JSON::Backend::XS::Supportable'} = 1;
  
  sub _make_unsupported_method {
      my ($pkg, $method, $type) = @_;
  
      local $^W;
      no strict qw(refs);
  
      *{"$pkg\::$method"} = sub {
          local $^W;
          if (defined $_[1] ? $_[1] : 1) {
              ${$_[0]} |= $type;
          }
          else {
              ${$_[0]} &= ~$type;
          }
          $_[0];
      };
  
      *{"$pkg\::get_$method"} = sub {
          ${$_[0]} & $type ? 1 : '';
      };
  
  }
  
  
  sub _set_for_pp {
      JSON::_load_pp( $_INSTALL_ONLY );
  
      my $type  = shift;
      my $pp    = JSON::PP->new;
      my $prop = $_[0]->property;
  
      for my $name (keys %$prop) {
          $pp->$name( $prop->{$name} ? $prop->{$name} : 0 );
      }
  
      my $unsupported = $type eq 'encode' ? JSON::Backend::XS::UNSUPPORTED_ENCODE_FLAG
                                          : JSON::Backend::XS::UNSUPPORTED_DECODE_FLAG;
      my $flags       = ${$_[0]} || 0;
  
      for my $name (keys %$unsupported) {
          next if ($name eq 'EXPANDED'); # for developer's
          my $enable = ($flags & $unsupported->{$name}) ? 1 : 0;
          my $method = lc $name;
          $pp->$method($enable);
      }
  
      $pp->indent_length( $_[0]->get_indent_length );
  
      return $pp;
  }
  
  sub _encode { # using with PP encode
      if (${$_[0]}) {
          _set_for_pp('encode' => @_)->encode($_[1]);
      }
      else {
          $_[0]->_original_encode( $_[1] );
      }
  }
  
  
  sub _decode { # if unsupported-flag is set, use PP
      if (${$_[0]}) {
          _set_for_pp('decode' => @_)->decode($_[1]);
      }
      else {
          $_[0]->_original_decode( $_[1] );
      }
  }
  
  
  sub decode_prefix { # if unsupported-flag is set, use PP
      _set_for_pp('decode' => @_)->decode_prefix($_[1]);
  }
  
  
  sub _incr_parse {
      if (${$_[0]}) {
          _set_for_pp('decode' => @_)->incr_parse($_[1]);
      }
      else {
          $_[0]->_original_incr_parse( $_[1] );
      }
  }
  
  
  sub get_indent_length {
      ${$_[0]} << 4 >> 16;
  }
  
  
  sub indent_length {
      my $length = $_[1];
  
      if (!defined $length or $length > 15 or $length < 0) {
          Carp::carp "The acceptable range of indent_length() is 0 to 15.";
      }
      else {
          local $^W;
          $length <<= 12;
          ${$_[0]} &= ~ JSON::Backend::XS::INDENT_LENGTH_FLAG;
          ${$_[0]} |= $length;
          *JSON::XS::encode = \&JSON::Backend::XS::Supportable::_encode;
      }
  
      $_[0];
  }
  
  
  1;
  __END__
  
  =head1 NAME
  
  JSON - JSON (JavaScript Object Notation) encoder/decoder
  
  =head1 SYNOPSIS
  
   use JSON; # imports encode_json, decode_json, to_json and from_json.
   
   # simple and fast interfaces (expect/generate UTF-8)
   
   $utf8_encoded_json_text = encode_json $perl_hash_or_arrayref;
   $perl_hash_or_arrayref  = decode_json $utf8_encoded_json_text;
   
   # OO-interface
   
   $json = JSON->new->allow_nonref;
   
   $json_text   = $json->encode( $perl_scalar );
   $perl_scalar = $json->decode( $json_text );
   
   $pretty_printed = $json->pretty->encode( $perl_scalar ); # pretty-printing
   
   # If you want to use PP only support features, call with '-support_by_pp'
   # When XS unsupported feature is enable, using PP (de|en)code instead of XS ones.
   
   use JSON -support_by_pp;
   
   # option-acceptable interfaces (expect/generate UNICODE by default)
   
   $json_text   = to_json( $perl_scalar, { ascii => 1, pretty => 1 } );
   $perl_scalar = from_json( $json_text, { utf8  => 1 } );
   
   # Between (en|de)code_json and (to|from)_json, if you want to write
   # a code which communicates to an outer world (encoded in UTF-8),
   # recommend to use (en|de)code_json.
   
  =head1 VERSION
  
      2.90
  
  This version is compatible with JSON::XS B<2.34> and later.
  (Not yet compatble to JSON::XS B<3.0x>.)
  
  
  =head1 NOTE
  
  JSON::PP was earlier included in the C<JSON> distribution, but
  has since Perl 5.14 been a core module. For this reason,
  L<JSON::PP> was removed from the JSON distribution and can now
  be found also in the Perl5 repository at
  
  =over
  
  =item * L<http://perl5.git.perl.org/perl.git>
  
  =back
  
  (The newest JSON::PP version still exists in CPAN.)
  
  Instead, the C<JSON> distribution will include JSON::backportPP
  for backwards computability. JSON.pm should thus work as it did
  before.
  
  =head1 DESCRIPTION
  
   *************************** CAUTION **************************************
   *                                                                        *
   * INCOMPATIBLE CHANGE (JSON::XS version 2.90)                            *
   *                                                                        *
   * JSON.pm had patched JSON::XS::Boolean and JSON::PP::Boolean internally *
   * on loading time for making these modules inherit JSON::Boolean.        *
   * But since JSON::XS v3.0 it use Types::Serialiser as boolean class.     *
   * Then now JSON.pm breaks boolean classe overload features and           *
   * -support_by_pp if JSON::XS v3.0 or later is installed.                 *
   *                                                                        *
   * JSON::true and JSON::false returned JSON::Boolean objects.             *
   * For workaround, they return JSON::PP::Boolean objects in this version. *
   *                                                                        *
   *     isa_ok(JSON::true, 'JSON::PP::Boolean');                           *
   *                                                                        *
   * And it discards a feature:                                             *
   *                                                                        *
   *     ok(JSON::true eq 'true');                                          *
   *                                                                        *
   * In other word, JSON::PP::Boolean overload numeric only.                *
   *                                                                        *
   *     ok( JSON::true == 1 );                                             *
   *                                                                        *
   **************************************************************************
  
   ************************** CAUTION ********************************
   * This is 'JSON module version 2' and there are many differences  *
   * to version 1.xx                                                 *
   * Please check your applications using old version.              *
   *   See to 'INCOMPATIBLE CHANGES TO OLD VERSION'                  *
   *******************************************************************
  
  JSON (JavaScript Object Notation) is a simple data format.
  See to L<http://www.json.org/> and C<RFC4627>(L<http://www.ietf.org/rfc/rfc4627.txt>).
  
  This module converts Perl data structures to JSON and vice versa using either
  L<JSON::XS> or L<JSON::PP>.
  
  JSON::XS is the fastest and most proper JSON module on CPAN which must be
  compiled and installed in your environment.
  JSON::PP is a pure-Perl module which is bundled in this distribution and
  has a strong compatibility to JSON::XS.
  
  This module try to use JSON::XS by default and fail to it, use JSON::PP instead.
  So its features completely depend on JSON::XS or JSON::PP.
  
  See to L<BACKEND MODULE DECISION>.
  
  To distinguish the module name 'JSON' and the format type JSON,
  the former is quoted by CE<lt>E<gt> (its results vary with your using media),
  and the latter is left just as it is.
  
  Module name : C<JSON>
  
  Format type : JSON
  
  =head2 FEATURES
  
  =over
  
  =item * correct unicode handling
  
  This module (i.e. backend modules) knows how to handle Unicode, documents
  how and when it does so, and even documents what "correct" means.
  
  Even though there are limitations, this feature is available since Perl version 5.6.
  
  JSON::XS requires Perl 5.8.2 (but works correctly in 5.8.8 or later), so in older versions
  C<JSON> should call JSON::PP as the backend which can be used since Perl 5.005.
  
  With Perl 5.8.x JSON::PP works, but from 5.8.0 to 5.8.2, because of a Perl side problem,
  JSON::PP works slower in the versions. And in 5.005, the Unicode handling is not available.
  See to L<JSON::PP/UNICODE HANDLING ON PERLS> for more information.
  
  See also to L<JSON::XS/A FEW NOTES ON UNICODE AND PERL>
  and L<JSON::XS/ENCODING/CODESET_FLAG_NOTES>.
  
  
  =item * round-trip integrity
  
  When you serialise a perl data structure using only data types supported
  by JSON and Perl, the deserialised data structure is identical on the Perl
  level. (e.g. the string "2.0" doesn't suddenly become "2" just because
  it looks like a number). There I<are> minor exceptions to this, read the
  L</MAPPING> section below to learn about those.
  
  
  =item * strict checking of JSON correctness
  
  There is no guessing, no generating of illegal JSON texts by default,
  and only JSON is accepted as input by default (the latter is a security
  feature).
  
  See to L<JSON::XS/FEATURES> and L<JSON::PP/FEATURES>.
  
  =item * fast
  
  This module returns a JSON::XS object itself if available.
  Compared to other JSON modules and other serialisers such as Storable,
  JSON::XS usually compares favorably in terms of speed, too.
  
  If not available, C<JSON> returns a JSON::PP object instead of JSON::XS and
  it is very slow as pure-Perl.
  
  =item * simple to use
  
  This module has both a simple functional interface as well as an
  object oriented interface interface.
  
  =item * reasonably versatile output formats
  
  You can choose between the most compact guaranteed-single-line format possible
  (nice for simple line-based protocols), a pure-ASCII format (for when your transport
  is not 8-bit clean, still supports the whole Unicode range), or a pretty-printed
  format (for when you want to read that stuff). Or you can combine those features
  in whatever way you like.
  
  =back
  
  =head1 FUNCTIONAL INTERFACE
  
  Some documents are copied and modified from L<JSON::XS/FUNCTIONAL INTERFACE>.
  C<to_json> and C<from_json> are additional functions.
  
  =head2 encode_json
  
      $json_text = encode_json $perl_scalar
  
  Converts the given Perl data structure to a UTF-8 encoded, binary string.
  
  This function call is functionally identical to:
  
      $json_text = JSON->new->utf8->encode($perl_scalar)
  
  =head2 decode_json
  
      $perl_scalar = decode_json $json_text
  
  The opposite of C<encode_json>: expects an UTF-8 (binary) string and tries
  to parse that as an UTF-8 encoded JSON text, returning the resulting
  reference.
  
  This function call is functionally identical to:
  
      $perl_scalar = JSON->new->utf8->decode($json_text)
  
  
  =head2 to_json
  
     $json_text = to_json($perl_scalar)
  
  Converts the given Perl data structure to a json string.
  
  This function call is functionally identical to:
  
     $json_text = JSON->new->encode($perl_scalar)
  
  Takes a hash reference as the second.
  
     $json_text = to_json($perl_scalar, $flag_hashref)
  
  So,
  
     $json_text = to_json($perl_scalar, {utf8 => 1, pretty => 1})
  
  equivalent to:
  
     $json_text = JSON->new->utf8(1)->pretty(1)->encode($perl_scalar)
  
  If you want to write a modern perl code which communicates to outer world,
  you should use C<encode_json> (supposed that JSON data are encoded in UTF-8).
  
  =head2 from_json
  
     $perl_scalar = from_json($json_text)
  
  The opposite of C<to_json>: expects a json string and tries
  to parse it, returning the resulting reference.
  
  This function call is functionally identical to:
  
      $perl_scalar = JSON->decode($json_text)
  
  Takes a hash reference as the second.
  
      $perl_scalar = from_json($json_text, $flag_hashref)
  
  So,
  
      $perl_scalar = from_json($json_text, {utf8 => 1})
  
  equivalent to:
  
      $perl_scalar = JSON->new->utf8(1)->decode($json_text)
  
  If you want to write a modern perl code which communicates to outer world,
  you should use C<decode_json> (supposed that JSON data are encoded in UTF-8).
  
  =head2 JSON::is_bool
  
      $is_boolean = JSON::is_bool($scalar)
  
  Returns true if the passed scalar represents either JSON::true or
  JSON::false, two constants that act like C<1> and C<0> respectively
  and are also used to represent JSON C<true> and C<false> in Perl strings.
  
  =head2 JSON::true
  
  Returns JSON true value which is blessed object.
  It C<isa> JSON::Boolean object.
  
  =head2 JSON::false
  
  Returns JSON false value which is blessed object.
  It C<isa> JSON::Boolean object.
  
  =head2 JSON::null
  
  Returns C<undef>.
  
  See L<MAPPING>, below, for more information on how JSON values are mapped to
  Perl.
  
  =head1 HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER
  
  This section supposes that your perl version is 5.8 or later.
  
  If you know a JSON text from an outer world - a network, a file content, and so on,
  is encoded in UTF-8, you should use C<decode_json> or C<JSON> module object
  with C<utf8> enable. And the decoded result will contain UNICODE characters.
  
    # from network
    my $json        = JSON->new->utf8;
    my $json_text   = CGI->new->param( 'json_data' );
    my $perl_scalar = $json->decode( $json_text );
    
    # from file content
    local $/;
    open( my $fh, '<', 'json.data' );
    $json_text   = <$fh>;
    $perl_scalar = decode_json( $json_text );
  
  If an outer data is not encoded in UTF-8, firstly you should C<decode> it.
  
    use Encode;
    local $/;
    open( my $fh, '<', 'json.data' );
    my $encoding = 'cp932';
    my $unicode_json_text = decode( $encoding, <$fh> ); # UNICODE
    
    # or you can write the below code.
    #
    # open( my $fh, "<:encoding($encoding)", 'json.data' );
    # $unicode_json_text = <$fh>;
  
  In this case, C<$unicode_json_text> is of course UNICODE string.
  So you B<cannot> use C<decode_json> nor C<JSON> module object with C<utf8> enable.
  Instead of them, you use C<JSON> module object with C<utf8> disable or C<from_json>.
  
    $perl_scalar = $json->utf8(0)->decode( $unicode_json_text );
    # or
    $perl_scalar = from_json( $unicode_json_text );
  
  Or C<encode 'utf8'> and C<decode_json>:
  
    $perl_scalar = decode_json( encode( 'utf8', $unicode_json_text ) );
    # this way is not efficient.
  
  And now, you want to convert your C<$perl_scalar> into JSON data and
  send it to an outer world - a network or a file content, and so on.
  
  Your data usually contains UNICODE strings and you want the converted data to be encoded
  in UTF-8, you should use C<encode_json> or C<JSON> module object with C<utf8> enable.
  
    print encode_json( $perl_scalar ); # to a network? file? or display?
    # or
    print $json->utf8->encode( $perl_scalar );
  
  If C<$perl_scalar> does not contain UNICODE but C<$encoding>-encoded strings
  for some reason, then its characters are regarded as B<latin1> for perl
  (because it does not concern with your $encoding).
  You B<cannot> use C<encode_json> nor C<JSON> module object with C<utf8> enable.
  Instead of them, you use C<JSON> module object with C<utf8> disable or C<to_json>.
  Note that the resulted text is a UNICODE string but no problem to print it.
  
    # $perl_scalar contains $encoding encoded string values
    $unicode_json_text = $json->utf8(0)->encode( $perl_scalar );
    # or 
    $unicode_json_text = to_json( $perl_scalar );
    # $unicode_json_text consists of characters less than 0x100
    print $unicode_json_text;
  
  Or C<decode $encoding> all string values and C<encode_json>:
  
    $perl_scalar->{ foo } = decode( $encoding, $perl_scalar->{ foo } );
    # ... do it to each string values, then encode_json
    $json_text = encode_json( $perl_scalar );
  
  This method is a proper way but probably not efficient.
  
  See to L<Encode>, L<perluniintro>.
  
  
  =head1 COMMON OBJECT-ORIENTED INTERFACE
  
  =head2 new
  
      $json = JSON->new
  
  Returns a new C<JSON> object inherited from either JSON::XS or JSON::PP
  that can be used to de/encode JSON strings.
  
  All boolean flags described below are by default I<disabled>.
  
  The mutators for flags all return the JSON object again and thus calls can
  be chained:
  
     my $json = JSON->new->utf8->space_after->encode({a => [1,2]})
     => {"a": [1, 2]}
  
  =head2 ascii
  
      $json = $json->ascii([$enable])
      
      $enabled = $json->get_ascii
  
  If $enable is true (or missing), then the encode method will not generate characters outside
  the code range 0..127. Any Unicode characters outside that range will be escaped using either
  a single \uXXXX or a double \uHHHH\uLLLLL escape sequence, as per RFC4627.
  
  If $enable is false, then the encode method will not escape Unicode characters unless
  required by the JSON syntax or other flags. This results in a faster and more compact format.
  
  This feature depends on the used Perl version and environment.
  
  See to L<JSON::PP/UNICODE HANDLING ON PERLS> if the backend is PP.
  
    JSON->new->ascii(1)->encode([chr 0x10401])
    => ["\ud801\udc01"]
  
  =head2 latin1
  
      $json = $json->latin1([$enable])
      
      $enabled = $json->get_latin1
  
  If $enable is true (or missing), then the encode method will encode the resulting JSON
  text as latin1 (or iso-8859-1), escaping any characters outside the code range 0..255.
  
  If $enable is false, then the encode method will not escape Unicode characters
  unless required by the JSON syntax or other flags.
  
    JSON->new->latin1->encode (["\x{89}\x{abc}"]
    => ["\x{89}\\u0abc"]    # (perl syntax, U+abc escaped, U+89 not)
  
  =head2 utf8
  
      $json = $json->utf8([$enable])
      
      $enabled = $json->get_utf8
  
  If $enable is true (or missing), then the encode method will encode the JSON result
  into UTF-8, as required by many protocols, while the decode method expects to be handled
  an UTF-8-encoded string. Please note that UTF-8-encoded strings do not contain any
  characters outside the range 0..255, they are thus useful for bytewise/binary I/O.
  
  In future versions, enabling this option might enable autodetection of the UTF-16 and UTF-32
  encoding families, as described in RFC4627.
  
  If $enable is false, then the encode method will return the JSON string as a (non-encoded)
  Unicode string, while decode expects thus a Unicode string. Any decoding or encoding
  (e.g. to UTF-8 or UTF-16) needs to be done yourself, e.g. using the Encode module.
  
  
  Example, output UTF-16BE-encoded JSON:
  
    use Encode;
    $jsontext = encode "UTF-16BE", JSON::XS->new->encode ($object);
  
  Example, decode UTF-32LE-encoded JSON:
  
    use Encode;
    $object = JSON::XS->new->decode (decode "UTF-32LE", $jsontext);
  
  See to L<JSON::PP/UNICODE HANDLING ON PERLS> if the backend is PP.
  
  
  =head2 pretty
  
      $json = $json->pretty([$enable])
  
  This enables (or disables) all of the C<indent>, C<space_before> and
  C<space_after> (and in the future possibly more) flags in one call to
  generate the most readable (or most compact) form possible.
  
  Equivalent to:
  
     $json->indent->space_before->space_after
  
  The indent space length is three and JSON::XS cannot change the indent
  space length.
  
  =head2 indent
  
      $json = $json->indent([$enable])
      
      $enabled = $json->get_indent
  
  If C<$enable> is true (or missing), then the C<encode> method will use a multiline
  format as output, putting every array member or object/hash key-value pair
  into its own line, identifying them properly.
  
  If C<$enable> is false, no newlines or indenting will be produced, and the
  resulting JSON text is guaranteed not to contain any C<newlines>.
  
  This setting has no effect when decoding JSON texts.
  
  The indent space length is three.
  With JSON::PP, you can also access C<indent_length> to change indent space length.
  
  
  =head2 space_before
  
      $json = $json->space_before([$enable])
      
      $enabled = $json->get_space_before
  
  If C<$enable> is true (or missing), then the C<encode> method will add an extra
  optional space before the C<:> separating keys from values in JSON objects.
  
  If C<$enable> is false, then the C<encode> method will not add any extra
  space at those places.
  
  This setting has no effect when decoding JSON texts.
  
  Example, space_before enabled, space_after and indent disabled:
  
     {"key" :"value"}
  
  
  =head2 space_after
  
      $json = $json->space_after([$enable])
      
      $enabled = $json->get_space_after
  
  If C<$enable> is true (or missing), then the C<encode> method will add an extra
  optional space after the C<:> separating keys from values in JSON objects
  and extra whitespace after the C<,> separating key-value pairs and array
  members.
  
  If C<$enable> is false, then the C<encode> method will not add any extra
  space at those places.
  
  This setting has no effect when decoding JSON texts.
  
  Example, space_before and indent disabled, space_after enabled:
  
     {"key": "value"}
  
  
  =head2 relaxed
  
      $json = $json->relaxed([$enable])
      
      $enabled = $json->get_relaxed
  
  If C<$enable> is true (or missing), then C<decode> will accept some
  extensions to normal JSON syntax (see below). C<encode> will not be
  affected in anyway. I<Be aware that this option makes you accept invalid
  JSON texts as if they were valid!>. I suggest only to use this option to
  parse application-specific files written by humans (configuration files,
  resource files etc.)
  
  If C<$enable> is false (the default), then C<decode> will only accept
  valid JSON texts.
  
  Currently accepted extensions are:
  
  =over 4
  
  =item * list items can have an end-comma
  
  JSON I<separates> array elements and key-value pairs with commas. This
  can be annoying if you write JSON texts manually and want to be able to
  quickly append elements, so this extension accepts comma at the end of
  such items not just between them:
  
     [
        1,
        2, <- this comma not normally allowed
     ]
     {
        "k1": "v1",
        "k2": "v2", <- this comma not normally allowed
     }
  
  =item * shell-style '#'-comments
  
  Whenever JSON allows whitespace, shell-style comments are additionally
  allowed. They are terminated by the first carriage-return or line-feed
  character, after which more white-space and comments are allowed.
  
    [
       1, # this comment not allowed in JSON
          # neither this one...
    ]
  
  =back
  
  
  =head2 canonical
  
      $json = $json->canonical([$enable])
      
      $enabled = $json->get_canonical
  
  If C<$enable> is true (or missing), then the C<encode> method will output JSON objects
  by sorting their keys. This is adding a comparatively high overhead.
  
  If C<$enable> is false, then the C<encode> method will output key-value
  pairs in the order Perl stores them (which will likely change between runs
  of the same script).
  
  This option is useful if you want the same data structure to be encoded as
  the same JSON text (given the same overall settings). If it is disabled,
  the same hash might be encoded differently even if contains the same data,
  as key-value pairs have no inherent ordering in Perl.
  
  This setting has no effect when decoding JSON texts.
  
  =head2 allow_nonref
  
      $json = $json->allow_nonref([$enable])
      
      $enabled = $json->get_allow_nonref
  
  If C<$enable> is true (or missing), then the C<encode> method can convert a
  non-reference into its corresponding string, number or null JSON value,
  which is an extension to RFC4627. Likewise, C<decode> will accept those JSON
  values instead of croaking.
  
  If C<$enable> is false, then the C<encode> method will croak if it isn't
  passed an arrayref or hashref, as JSON texts must either be an object
  or array. Likewise, C<decode> will croak if given something that is not a
  JSON object or array.
  
     JSON->new->allow_nonref->encode ("Hello, World!")
     => "Hello, World!"
  
  =head2 allow_unknown
  
      $json = $json->allow_unknown ([$enable])
      
      $enabled = $json->get_allow_unknown
  
  If $enable is true (or missing), then "encode" will *not* throw an
  exception when it encounters values it cannot represent in JSON (for
  example, filehandles) but instead will encode a JSON "null" value.
  Note that blessed objects are not included here and are handled
  separately by c<allow_nonref>.
  
  If $enable is false (the default), then "encode" will throw an
  exception when it encounters anything it cannot encode as JSON.
  
  This option does not affect "decode" in any way, and it is
  recommended to leave it off unless you know your communications
  partner.
  
  =head2 allow_blessed
  
      $json = $json->allow_blessed([$enable])
      
      $enabled = $json->get_allow_blessed
  
  If C<$enable> is true (or missing), then the C<encode> method will not
  barf when it encounters a blessed reference. Instead, the value of the
  B<convert_blessed> option will decide whether C<null> (C<convert_blessed>
  disabled or no C<TO_JSON> method found) or a representation of the
  object (C<convert_blessed> enabled and C<TO_JSON> method found) is being
  encoded. Has no effect on C<decode>.
  
  If C<$enable> is false (the default), then C<encode> will throw an
  exception when it encounters a blessed object.
  
  
  =head2 convert_blessed
  
      $json = $json->convert_blessed([$enable])
      
      $enabled = $json->get_convert_blessed
  
  If C<$enable> is true (or missing), then C<encode>, upon encountering a
  blessed object, will check for the availability of the C<TO_JSON> method
  on the object's class. If found, it will be called in scalar context
  and the resulting scalar will be encoded instead of the object. If no
  C<TO_JSON> method is found, the value of C<allow_blessed> will decide what
  to do.
  
  The C<TO_JSON> method may safely call die if it wants. If C<TO_JSON>
  returns other blessed objects, those will be handled in the same
  way. C<TO_JSON> must take care of not causing an endless recursion cycle
  (== crash) in this case. The name of C<TO_JSON> was chosen because other
  methods called by the Perl core (== not by the user of the object) are
  usually in upper case letters and to avoid collisions with the C<to_json>
  function or method.
  
  This setting does not yet influence C<decode> in any way.
  
  If C<$enable> is false, then the C<allow_blessed> setting will decide what
  to do when a blessed object is found.
  
  =over
  
  =item convert_blessed_universally mode
  
  If use C<JSON> with C<-convert_blessed_universally>, the C<UNIVERSAL::TO_JSON>
  subroutine is defined as the below code:
  
     *UNIVERSAL::TO_JSON = sub {
         my $b_obj = B::svref_2object( $_[0] );
         return    $b_obj->isa('B::HV') ? { %{ $_[0] } }
                 : $b_obj->isa('B::AV') ? [ @{ $_[0] } ]
                 : undef
                 ;
     }
  
  This will cause that C<encode> method converts simple blessed objects into
  JSON objects as non-blessed object.
  
     JSON -convert_blessed_universally;
     $json->allow_blessed->convert_blessed->encode( $blessed_object )
  
  This feature is experimental and may be removed in the future.
  
  =back
  
  =head2 filter_json_object
  
      $json = $json->filter_json_object([$coderef])
  
  When C<$coderef> is specified, it will be called from C<decode> each
  time it decodes a JSON object. The only argument passed to the coderef
  is a reference to the newly-created hash. If the code references returns
  a single scalar (which need not be a reference), this value
  (i.e. a copy of that scalar to avoid aliasing) is inserted into the
  deserialised data structure. If it returns an empty list
  (NOTE: I<not> C<undef>, which is a valid scalar), the original deserialised
  hash will be inserted. This setting can slow down decoding considerably.
  
  When C<$coderef> is omitted or undefined, any existing callback will
  be removed and C<decode> will not change the deserialised hash in any
  way.
  
  Example, convert all JSON objects into the integer 5:
  
     my $js = JSON->new->filter_json_object (sub { 5 });
     # returns [5]
     $js->decode ('[{}]'); # the given subroutine takes a hash reference.
     # throw an exception because allow_nonref is not enabled
     # so a lone 5 is not allowed.
     $js->decode ('{"a":1, "b":2}');
  
  
  =head2 filter_json_single_key_object
  
      $json = $json->filter_json_single_key_object($key [=> $coderef])
  
  Works remotely similar to C<filter_json_object>, but is only called for
  JSON objects having a single key named C<$key>.
  
  This C<$coderef> is called before the one specified via
  C<filter_json_object>, if any. It gets passed the single value in the JSON
  object. If it returns a single value, it will be inserted into the data
  structure. If it returns nothing (not even C<undef> but the empty list),
  the callback from C<filter_json_object> will be called next, as if no
  single-key callback were specified.
  
  If C<$coderef> is omitted or undefined, the corresponding callback will be
  disabled. There can only ever be one callback for a given key.
  
  As this callback gets called less often then the C<filter_json_object>
  one, decoding speed will not usually suffer as much. Therefore, single-key
  objects make excellent targets to serialise Perl objects into, especially
  as single-key JSON objects are as close to the type-tagged value concept
  as JSON gets (it's basically an ID/VALUE tuple). Of course, JSON does not
  support this in any way, so you need to make sure your data never looks
  like a serialised Perl hash.
  
  Typical names for the single object key are C<__class_whatever__>, or
  C<$__dollars_are_rarely_used__$> or C<}ugly_brace_placement>, or even
  things like C<__class_md5sum(classname)__>, to reduce the risk of clashing
  with real hashes.
  
  Example, decode JSON objects of the form C<< { "__widget__" => <id> } >>
  into the corresponding C<< $WIDGET{<id>} >> object:
  
     # return whatever is in $WIDGET{5}:
     JSON
        ->new
        ->filter_json_single_key_object (__widget__ => sub {
              $WIDGET{ $_[0] }
           })
        ->decode ('{"__widget__": 5')
  
     # this can be used with a TO_JSON method in some "widget" class
     # for serialisation to json:
     sub WidgetBase::TO_JSON {
        my ($self) = @_;
  
        unless ($self->{id}) {
           $self->{id} = ..get..some..id..;
           $WIDGET{$self->{id}} = $self;
        }
  
        { __widget__ => $self->{id} }
     }
  
  
  =head2 shrink
  
      $json = $json->shrink([$enable])
      
      $enabled = $json->get_shrink
  
  With JSON::XS, this flag resizes strings generated by either
  C<encode> or C<decode> to their minimum size possible. This can save
  memory when your JSON texts are either very very long or you have many
  short strings. It will also try to downgrade any strings to octet-form
  if possible: perl stores strings internally either in an encoding called
  UTF-X or in octet-form. The latter cannot store everything but uses less
  space in general (and some buggy Perl or C code might even rely on that
  internal representation being used).
  
  With JSON::PP, it is noop about resizing strings but tries
  C<utf8::downgrade> to the returned string by C<encode>. See to L<utf8>.
  
  See to L<JSON::XS/OBJECT-ORIENTED INTERFACE> and L<JSON::PP/METHODS>.
  
  =head2 max_depth
  
      $json = $json->max_depth([$maximum_nesting_depth])
      
      $max_depth = $json->get_max_depth
  
  Sets the maximum nesting level (default C<512>) accepted while encoding
  or decoding. If a higher nesting level is detected in JSON text or a Perl
  data structure, then the encoder and decoder will stop and croak at that
  point.
  
  Nesting level is defined by number of hash- or arrayrefs that the encoder
  needs to traverse to reach a given point or the number of C<{> or C<[>
  characters without their matching closing parenthesis crossed to reach a
  given character in a string.
  
  If no argument is given, the highest possible setting will be used, which
  is rarely useful.
  
  Note that nesting is implemented by recursion in C. The default value has
  been chosen to be as large as typical operating systems allow without
  crashing. (JSON::XS)
  
  With JSON::PP as the backend, when a large value (100 or more) was set and
  it de/encodes a deep nested object/text, it may raise a warning
  'Deep recursion on subroutine' at the perl runtime phase.
  
  See L<JSON::XS/SECURITY CONSIDERATIONS> for more info on why this is useful.
  
  =head2 max_size
  
      $json = $json->max_size([$maximum_string_size])
      
      $max_size = $json->get_max_size
  
  Set the maximum length a JSON text may have (in bytes) where decoding is
  being attempted. The default is C<0>, meaning no limit. When C<decode>
  is called on a string that is longer then this many bytes, it will not
  attempt to decode the string but throw an exception. This setting has no
  effect on C<encode> (yet).
  
  If no argument is given, the limit check will be deactivated (same as when
  C<0> is specified).
  
  See L<JSON::XS/SECURITY CONSIDERATIONS>, below, for more info on why this is useful.
  
  =head2 encode
  
      $json_text = $json->encode($perl_scalar)
  
  Converts the given Perl data structure (a simple scalar or a reference
  to a hash or array) to its JSON representation. Simple scalars will be
  converted into JSON string or number sequences, while references to arrays
  become JSON arrays and references to hashes become JSON objects. Undefined
  Perl values (e.g. C<undef>) become JSON C<null> values.
  References to the integers C<0> and C<1> are converted into C<true> and C<false>.
  
  =head2 decode
  
      $perl_scalar = $json->decode($json_text)
  
  The opposite of C<encode>: expects a JSON text and tries to parse it,
  returning the resulting simple scalar or reference. Croaks on error.
  
  JSON numbers and strings become simple Perl scalars. JSON arrays become
  Perl arrayrefs and JSON objects become Perl hashrefs. C<true> becomes
  C<1> (C<JSON::true>), C<false> becomes C<0> (C<JSON::false>) and
  C<null> becomes C<undef>.
  
  =head2 decode_prefix
  
      ($perl_scalar, $characters) = $json->decode_prefix($json_text)
  
  This works like the C<decode> method, but instead of raising an exception
  when there is trailing garbage after the first JSON object, it will
  silently stop parsing there and return the number of characters consumed
  so far.
  
     JSON->new->decode_prefix ("[1] the tail")
     => ([], 3)
  
  See to L<JSON::XS/OBJECT-ORIENTED INTERFACE>
  
  =head2 property
  
      $boolean = $json->property($property_name)
  
  Returns a boolean value about above some properties.
  
  The available properties are C<ascii>, C<latin1>, C<utf8>,
  C<indent>,C<space_before>, C<space_after>, C<relaxed>, C<canonical>,
  C<allow_nonref>, C<allow_unknown>, C<allow_blessed>, C<convert_blessed>,
  C<shrink>, C<max_depth> and C<max_size>.
  
     $boolean = $json->property('utf8');
      => 0
     $json->utf8;
     $boolean = $json->property('utf8');
      => 1
  
  Sets the property with a given boolean value.
  
      $json = $json->property($property_name => $boolean);
  
  With no argument, it returns all the above properties as a hash reference.
  
      $flag_hashref = $json->property();
  
  =head1 INCREMENTAL PARSING
  
  Most of this section are copied and modified from L<JSON::XS/INCREMENTAL PARSING>.
  
  In some cases, there is the need for incremental parsing of JSON texts.
  This module does allow you to parse a JSON stream incrementally.
  It does so by accumulating text until it has a full JSON object, which
  it then can decode. This process is similar to using C<decode_prefix>
  to see if a full JSON object is available, but is much more efficient
  (and can be implemented with a minimum of method calls).
  
  The backend module will only attempt to parse the JSON text once it is sure it
  has enough text to get a decisive result, using a very simple but
  truly incremental parser. This means that it sometimes won't stop as
  early as the full parser, for example, it doesn't detect parenthesis
  mismatches. The only thing it guarantees is that it starts decoding as
  soon as a syntactically valid JSON text has been seen. This means you need
  to set resource limits (e.g. C<max_size>) to ensure the parser will stop
  parsing in the presence if syntax errors.
  
  The following methods implement this incremental parser.
  
  =head2 incr_parse
  
      $json->incr_parse( [$string] ) # void context
      
      $obj_or_undef = $json->incr_parse( [$string] ) # scalar context
      
      @obj_or_empty = $json->incr_parse( [$string] ) # list context
  
  This is the central parsing function. It can both append new text and
  extract objects from the stream accumulated so far (both of these
  functions are optional).
  
  If C<$string> is given, then this string is appended to the already
  existing JSON fragment stored in the C<$json> object.
  
  After that, if the function is called in void context, it will simply
  return without doing anything further. This can be used to add more text
  in as many chunks as you want.
  
  If the method is called in scalar context, then it will try to extract
  exactly I<one> JSON object. If that is successful, it will return this
  object, otherwise it will return C<undef>. If there is a parse error,
  this method will croak just as C<decode> would do (one can then use
  C<incr_skip> to skip the erroneous part). This is the most common way of
  using the method.
  
  And finally, in list context, it will try to extract as many objects
  from the stream as it can find and return them, or the empty list
  otherwise. For this to work, there must be no separators between the JSON
  objects or arrays, instead they must be concatenated back-to-back. If
  an error occurs, an exception will be raised as in the scalar context
  case. Note that in this case, any previously-parsed JSON texts will be
  lost.
  
  Example: Parse some JSON arrays/objects in a given string and return them.
  
      my @objs = JSON->new->incr_parse ("[5][7][1,2]");
  
  =head2 incr_text
  
      $lvalue_string = $json->incr_text
  
  This method returns the currently stored JSON fragment as an lvalue, that
  is, you can manipulate it. This I<only> works when a preceding call to
  C<incr_parse> in I<scalar context> successfully returned an object. Under
  all other circumstances you must not call this function (I mean it.
  although in simple tests it might actually work, it I<will> fail under
  real world conditions). As a special exception, you can also call this
  method before having parsed anything.
  
  This function is useful in two cases: a) finding the trailing text after a
  JSON object or b) parsing multiple JSON objects separated by non-JSON text
  (such as commas).
  
      $json->incr_text =~ s/\s*,\s*//;
  
  In Perl 5.005, C<lvalue> attribute is not available.
  You must write codes like the below:
  
      $string = $json->incr_text;
      $string =~ s/\s*,\s*//;
      $json->incr_text( $string );
  
  =head2 incr_skip
  
      $json->incr_skip
  
  This will reset the state of the incremental parser and will remove the
  parsed text from the input buffer. This is useful after C<incr_parse>
  died, in which case the input buffer and incremental parser state is left
  unchanged, to skip the text parsed so far and to reset the parse state.
  
  =head2 incr_reset
  
      $json->incr_reset
  
  This completely resets the incremental parser, that is, after this call,
  it will be as if the parser had never parsed anything.
  
  This is useful if you want to repeatedly parse JSON objects and want to
  ignore any trailing data, which means you have to reset the parser after
  each successful decode.
  
  See to L<JSON::XS/INCREMENTAL PARSING> for examples.
  
  
  =head1 JSON::PP SUPPORT METHODS
  
  The below methods are JSON::PP own methods, so when C<JSON> works
  with JSON::PP (i.e. the created object is a JSON::PP object), available.
  See to L<JSON::PP/JSON::PP OWN METHODS> in detail.
  
  If you use C<JSON> with additional C<-support_by_pp>, some methods
  are available even with JSON::XS. See to L<USE PP FEATURES EVEN THOUGH XS BACKEND>.
  
     BEING { $ENV{PERL_JSON_BACKEND} = 'JSON::XS' }
     
     use JSON -support_by_pp;
     
     my $json = JSON->new;
     $json->allow_nonref->escape_slash->encode("/");
  
     # functional interfaces too.
     print to_json(["/"], {escape_slash => 1});
     print from_json('["foo"]', {utf8 => 1});
  
  If you do not want to all functions but C<-support_by_pp>,
  use C<-no_export>.
  
     use JSON -support_by_pp, -no_export;
     # functional interfaces are not exported.
  
  =head2 allow_singlequote
  
      $json = $json->allow_singlequote([$enable])
  
  If C<$enable> is true (or missing), then C<decode> will accept
  any JSON strings quoted by single quotations that are invalid JSON
  format.
  
      $json->allow_singlequote->decode({"foo":'bar'});
      $json->allow_singlequote->decode({'foo':"bar"});
      $json->allow_singlequote->decode({'foo':'bar'});
  
  As same as the C<relaxed> option, this option may be used to parse
  application-specific files written by humans.
  
  =head2 allow_barekey
  
      $json = $json->allow_barekey([$enable])
  
  If C<$enable> is true (or missing), then C<decode> will accept
  bare keys of JSON object that are invalid JSON format.
  
  As same as the C<relaxed> option, this option may be used to parse
  application-specific files written by humans.
  
      $json->allow_barekey->decode('{foo:"bar"}');
  
  =head2 allow_bignum
  
      $json = $json->allow_bignum([$enable])
  
  If C<$enable> is true (or missing), then C<decode> will convert
  the big integer Perl cannot handle as integer into a L<Math::BigInt>
  object and convert a floating number (any) into a L<Math::BigFloat>.
  
  On the contrary, C<encode> converts C<Math::BigInt> objects and C<Math::BigFloat>
  objects into JSON numbers with C<allow_blessed> enable.
  
     $json->allow_nonref->allow_blessed->allow_bignum;
     $bigfloat = $json->decode('2.000000000000000000000000001');
     print $json->encode($bigfloat);
     # => 2.000000000000000000000000001
  
  See to L<MAPPING> about the conversion of JSON number.
  
  =head2 loose
  
      $json = $json->loose([$enable])
  
  The unescaped [\x00-\x1f\x22\x2f\x5c] strings are invalid in JSON strings
  and the module doesn't allow to C<decode> to these (except for \x2f).
  If C<$enable> is true (or missing), then C<decode>  will accept these
  unescaped strings.
  
      $json->loose->decode(qq|["abc
                                     def"]|);
  
  See to L<JSON::PP/JSON::PP OWN METHODS>.
  
  =head2 escape_slash
  
      $json = $json->escape_slash([$enable])
  
  According to JSON Grammar, I<slash> (U+002F) is escaped. But by default
  JSON backend modules encode strings without escaping slash.
  
  If C<$enable> is true (or missing), then C<encode> will escape slashes.
  
  =head2 indent_length
  
      $json = $json->indent_length($length)
  
  With JSON::XS, The indent space length is 3 and cannot be changed.
  With JSON::PP, it sets the indent space length with the given $length.
  The default is 3. The acceptable range is 0 to 15.
  
  =head2 sort_by
  
      $json = $json->sort_by($function_name)
      $json = $json->sort_by($subroutine_ref)
  
  If $function_name or $subroutine_ref are set, its sort routine are used.
  
     $js = $pc->sort_by(sub { $JSON::PP::a cmp $JSON::PP::b })->encode($obj);
     # is($js, q|{"a":1,"b":2,"c":3,"d":4,"e":5,"f":6,"g":7,"h":8,"i":9}|);
  
     $js = $pc->sort_by('own_sort')->encode($obj);
     # is($js, q|{"a":1,"b":2,"c":3,"d":4,"e":5,"f":6,"g":7,"h":8,"i":9}|);
  
     sub JSON::PP::own_sort { $JSON::PP::a cmp $JSON::PP::b }
  
  As the sorting routine runs in the JSON::PP scope, the given
  subroutine name and the special variables C<$a>, C<$b> will begin
  with 'JSON::PP::'.
  
  If $integer is set, then the effect is same as C<canonical> on.
  
  See to L<JSON::PP/JSON::PP OWN METHODS>.
  
  =head1 MAPPING
  
  This section is copied from JSON::XS and modified to C<JSON>.
  JSON::XS and JSON::PP mapping mechanisms are almost equivalent.
  
  See to L<JSON::XS/MAPPING>.
  
  =head2 JSON -> PERL
  
  =over 4
  
  =item object
  
  A JSON object becomes a reference to a hash in Perl. No ordering of object
  keys is preserved (JSON does not preserver object key ordering itself).
  
  =item array
  
  A JSON array becomes a reference to an array in Perl.
  
  =item string
  
  A JSON string becomes a string scalar in Perl - Unicode codepoints in JSON
  are represented by the same codepoints in the Perl string, so no manual
  decoding is necessary.
  
  =item number
  
  A JSON number becomes either an integer, numeric (floating point) or
  string scalar in perl, depending on its range and any fractional parts. On
  the Perl level, there is no difference between those as Perl handles all
  the conversion details, but an integer may take slightly less memory and
  might represent more values exactly than floating point numbers.
  
  If the number consists of digits only, C<JSON> will try to represent
  it as an integer value. If that fails, it will try to represent it as
  a numeric (floating point) value if that is possible without loss of
  precision. Otherwise it will preserve the number as a string value (in
  which case you lose roundtripping ability, as the JSON number will be
  re-encoded to a JSON string).
  
  Numbers containing a fractional or exponential part will always be
  represented as numeric (floating point) values, possibly at a loss of
  precision (in which case you might lose perfect roundtripping ability, but
  the JSON number will still be re-encoded as a JSON number).
  
  Note that precision is not accuracy - binary floating point values cannot
  represent most decimal fractions exactly, and when converting from and to
  floating point, C<JSON> only guarantees precision up to but not including
  the least significant bit.
  
  If the backend is JSON::PP and C<allow_bignum> is enable, the big integers 
  and the numeric can be optionally converted into L<Math::BigInt> and
  L<Math::BigFloat> objects.
  
  =item true, false
  
  These JSON atoms become C<JSON::true> and C<JSON::false>,
  respectively. They are overloaded to act almost exactly like the numbers
  C<1> and C<0>. You can check whether a scalar is a JSON boolean by using
  the C<JSON::is_bool> function.
  
     print JSON::true + 1;
      => 1
  
     ok(JSON::true eq  '1');
     ok(JSON::true == 1);
  
  C<JSON> will install these missing overloading features to the backend modules.
  
  
  =item null
  
  A JSON null atom becomes C<undef> in Perl.
  
  C<JSON::null> returns C<undef>.
  
  =back
  
  
  =head2 PERL -> JSON
  
  The mapping from Perl to JSON is slightly more difficult, as Perl is a
  truly typeless language, so we can only guess which JSON type is meant by
  a Perl value.
  
  =over 4
  
  =item hash references
  
  Perl hash references become JSON objects. As there is no inherent ordering
  in hash keys (or JSON objects), they will usually be encoded in a
  pseudo-random order that can change between runs of the same program but
  stays generally the same within a single run of a program. C<JSON>
  optionally sort the hash keys (determined by the I<canonical> flag), so
  the same data structure will serialise to the same JSON text (given same
  settings and version of JSON::XS), but this incurs a runtime overhead
  and is only rarely useful, e.g. when you want to compare some JSON text
  against another for equality.
  
  In future, the ordered object feature will be added to JSON::PP using C<tie> mechanism.
  
  
  =item array references
  
  Perl array references become JSON arrays.
  
  =item other references
  
  Other unblessed references are generally not allowed and will cause an
  exception to be thrown, except for references to the integers C<0> and
  C<1>, which get turned into C<false> and C<true> atoms in JSON. You can
  also use C<JSON::false> and C<JSON::true> to improve readability.
  
     to_json [\0,JSON::true]      # yields [false,true]
  
  =item JSON::true, JSON::false, JSON::null
  
  These special values become JSON true and JSON false values,
  respectively. You can also use C<\1> and C<\0> directly if you want.
  
  JSON::null returns C<undef>.
  
  =item blessed objects
  
  Blessed objects are not directly representable in JSON. See the
  C<allow_blessed> and C<convert_blessed> methods on various options on
  how to deal with this: basically, you can choose between throwing an
  exception, encoding the reference as if it weren't blessed, or provide
  your own serialiser method.
  
  With C<convert_blessed_universally> mode,  C<encode> converts blessed
  hash references or blessed array references (contains other blessed references)
  into JSON members and arrays.
  
     use JSON -convert_blessed_universally;
     JSON->new->allow_blessed->convert_blessed->encode( $blessed_object );
  
  See to L<convert_blessed>.
  
  =item simple scalars
  
  Simple Perl scalars (any scalar that is not a reference) are the most
  difficult objects to encode: JSON::XS and JSON::PP will encode undefined scalars as
  JSON C<null> values, scalars that have last been used in a string context
  before encoding as JSON strings, and anything else as number value:
  
     # dump as number
     encode_json [2]                      # yields [2]
     encode_json [-3.0e17]                # yields [-3e+17]
     my $value = 5; encode_json [$value]  # yields [5]
  
     # used as string, so dump as string
     print $value;
     encode_json [$value]                 # yields ["5"]
  
     # undef becomes null
     encode_json [undef]                  # yields [null]
  
  You can force the type to be a string by stringifying it:
  
     my $x = 3.1; # some variable containing a number
     "$x";        # stringified
     $x .= "";    # another, more awkward way to stringify
     print $x;    # perl does it for you, too, quite often
  
  You can force the type to be a number by numifying it:
  
     my $x = "3"; # some variable containing a string
     $x += 0;     # numify it, ensuring it will be dumped as a number
     $x *= 1;     # same thing, the choice is yours.
  
  You can not currently force the type in other, less obscure, ways.
  
  Note that numerical precision has the same meaning as under Perl (so
  binary to decimal conversion follows the same rules as in Perl, which
  can differ to other languages). Also, your perl interpreter might expose
  extensions to the floating point numbers of your platform, such as
  infinities or NaN's - these cannot be represented in JSON, and it is an
  error to pass those in.
  
  =item Big Number
  
  If the backend is JSON::PP and C<allow_bignum> is enable, 
  C<encode> converts C<Math::BigInt> objects and C<Math::BigFloat>
  objects into JSON numbers.
  
  
  =back
  
  =head1 JSON and ECMAscript
  
  See to L<JSON::XS/JSON and ECMAscript>.
  
  =head1 JSON and YAML
  
  JSON is not a subset of YAML.
  See to L<JSON::XS/JSON and YAML>.
  
  
  =head1 BACKEND MODULE DECISION
  
  When you use C<JSON>, C<JSON> tries to C<use> JSON::XS. If this call failed, it will
  C<uses> JSON::PP. The required JSON::XS version is I<2.2> or later.
  
  The C<JSON> constructor method returns an object inherited from the backend module,
  and JSON::XS object is a blessed scalar reference while JSON::PP is a blessed hash
  reference.
  
  So, your program should not depend on the backend module, especially
  returned objects should not be modified.
  
   my $json = JSON->new; # XS or PP?
   $json->{stash} = 'this is xs object'; # this code may raise an error!
  
  To check the backend module, there are some methods - C<backend>, C<is_pp> and C<is_xs>.
  
    JSON->backend; # 'JSON::XS' or 'JSON::PP'
    
    JSON->backend->is_pp: # 0 or 1
    
    JSON->backend->is_xs: # 1 or 0
    
    $json->is_xs; # 1 or 0
    
    $json->is_pp; # 0 or 1
  
  
  If you set an environment variable C<PERL_JSON_BACKEND>, the calling action will be changed.
  
  =over
  
  =item PERL_JSON_BACKEND = 0 or PERL_JSON_BACKEND = 'JSON::PP'
  
  Always use JSON::PP
  
  =item PERL_JSON_BACKEND == 1 or PERL_JSON_BACKEND = 'JSON::XS,JSON::PP'
  
  (The default) Use compiled JSON::XS if it is properly compiled & installed,
  otherwise use JSON::PP.
  
  =item PERL_JSON_BACKEND == 2 or PERL_JSON_BACKEND = 'JSON::XS'
  
  Always use compiled JSON::XS, die if it isn't properly compiled & installed.
  
  =item PERL_JSON_BACKEND = 'JSON::backportPP'
  
  Always use JSON::backportPP.
  JSON::backportPP is JSON::PP back port module.
  C<JSON> includes JSON::backportPP instead of JSON::PP.
  
  =back
  
  These ideas come from L<DBI::PurePerl> mechanism.
  
  example:
  
   BEGIN { $ENV{PERL_JSON_BACKEND} = 'JSON::PP' }
   use JSON; # always uses JSON::PP
  
  In future, it may be able to specify another module.
  
  =head1 USE PP FEATURES EVEN THOUGH XS BACKEND
  
  Many methods are available with either JSON::XS or JSON::PP and
  when the backend module is JSON::XS, if any JSON::PP specific (i.e. JSON::XS unsupported)
  method is called, it will C<warn> and be noop.
  
  But If you C<use> C<JSON> passing the optional string C<-support_by_pp>,
  it makes a part of those unsupported methods available.
  This feature is achieved by using JSON::PP in C<de/encode>.
  
     BEGIN { $ENV{PERL_JSON_BACKEND} = 2 } # with JSON::XS
     use JSON -support_by_pp;
     my $json = JSON->new;
     $json->allow_nonref->escape_slash->encode("/");
  
  At this time, the returned object is a C<JSON::Backend::XS::Supportable>
  object (re-blessed XS object), and  by checking JSON::XS unsupported flags
  in de/encoding, can support some unsupported methods - C<loose>, C<allow_bignum>,
  C<allow_barekey>, C<allow_singlequote>, C<escape_slash> and C<indent_length>.
  
  When any unsupported methods are not enable, C<XS de/encode> will be
  used as is. The switch is achieved by changing the symbolic tables.
  
  C<-support_by_pp> is effective only when the backend module is JSON::XS
  and it makes the de/encoding speed down a bit.
  
  See to L<JSON::PP SUPPORT METHODS>.
  
  =head1 INCOMPATIBLE CHANGES TO OLD VERSION
  
  There are big incompatibility between new version (2.00) and old (1.xx).
  If you use old C<JSON> 1.xx in your code, please check it.
  
  See to L<Transition ways from 1.xx to 2.xx.>
  
  =over
  
  =item jsonToObj and objToJson are obsoleted.
  
  Non Perl-style name C<jsonToObj> and C<objToJson> are obsoleted
  (but not yet deleted from the source).
  If you use these functions in your code, please replace them
  with C<from_json> and C<to_json>.
  
  
  =item Global variables are no longer available.
  
  C<JSON> class variables - C<$JSON::AUTOCONVERT>, C<$JSON::BareKey>, etc...
  - are not available any longer.
  Instead, various features can be used through object methods.
  
  
  =item Package JSON::Converter and JSON::Parser are deleted.
  
  Now C<JSON> bundles with JSON::PP which can handle JSON more properly than them.
  
  =item Package JSON::NotString is deleted.
  
  There was C<JSON::NotString> class which represents JSON value C<true>, C<false>, C<null>
  and numbers. It was deleted and replaced by C<JSON::Boolean>.
  
  C<JSON::Boolean> represents C<true> and C<false>.
  
  C<JSON::Boolean> does not represent C<null>.
  
  C<JSON::null> returns C<undef>.
  
  C<JSON> makes L<JSON::XS::Boolean> and L<JSON::PP::Boolean> is-a relation
  to L<JSON::Boolean>.
  
  =item function JSON::Number is obsoleted.
  
  C<JSON::Number> is now needless because JSON::XS and JSON::PP have
  round-trip integrity.
  
  =item JSONRPC modules are deleted.
  
  Perl implementation of JSON-RPC protocol - C<JSONRPC >, C<JSONRPC::Transport::HTTP>
  and C<Apache::JSONRPC > are deleted in this distribution.
  Instead of them, there is L<JSON::RPC> which supports JSON-RPC protocol version 1.1.
  
  =back
  
  =head2 Transition ways from 1.xx to 2.xx.
  
  You should set C<suport_by_pp> mode firstly, because
  it is always successful for the below codes even with JSON::XS.
  
      use JSON -support_by_pp;
  
  =over
  
  =item Exported jsonToObj (simple)
  
    from_json($json_text);
  
  =item Exported objToJson (simple)
  
    to_json($perl_scalar);
  
  =item Exported jsonToObj (advanced)
  
    $flags = {allow_barekey => 1, allow_singlequote => 1};
    from_json($json_text, $flags);
  
  equivalent to:
  
    $JSON::BareKey = 1;
    $JSON::QuotApos = 1;
    jsonToObj($json_text);
  
  =item Exported objToJson (advanced)
  
    $flags = {allow_blessed => 1, allow_barekey => 1};
    to_json($perl_scalar, $flags);
  
  equivalent to:
  
    $JSON::BareKey = 1;
    objToJson($perl_scalar);
  
  =item jsonToObj as object method
  
    $json->decode($json_text);
  
  =item objToJson as object method
  
    $json->encode($perl_scalar);
  
  =item new method with parameters
  
  The C<new> method in 2.x takes any parameters no longer.
  You can set parameters instead;
  
     $json = JSON->new->pretty;
  
  =item $JSON::Pretty, $JSON::Indent, $JSON::Delimiter
  
  If C<indent> is enable, that means C<$JSON::Pretty> flag set. And
  C<$JSON::Delimiter> was substituted by C<space_before> and C<space_after>.
  In conclusion:
  
     $json->indent->space_before->space_after;
  
  Equivalent to:
  
    $json->pretty;
  
  To change indent length, use C<indent_length>.
  
  (Only with JSON::PP, if C<-support_by_pp> is not used.)
  
    $json->pretty->indent_length(2)->encode($perl_scalar);
  
  =item $JSON::BareKey
  
  (Only with JSON::PP, if C<-support_by_pp> is not used.)
  
    $json->allow_barekey->decode($json_text)
  
  =item $JSON::ConvBlessed
  
  use C<-convert_blessed_universally>. See to L<convert_blessed>.
  
  =item $JSON::QuotApos
  
  (Only with JSON::PP, if C<-support_by_pp> is not used.)
  
    $json->allow_singlequote->decode($json_text)
  
  =item $JSON::SingleQuote
  
  Disable. C<JSON> does not make such a invalid JSON string any longer.
  
  =item $JSON::KeySort
  
    $json->canonical->encode($perl_scalar)
  
  This is the ascii sort.
  
  If you want to use with your own sort routine, check the C<sort_by> method.
  
  (Only with JSON::PP, even if C<-support_by_pp> is used currently.)
  
    $json->sort_by($sort_routine_ref)->encode($perl_scalar)
   
    $json->sort_by(sub { $JSON::PP::a <=> $JSON::PP::b })->encode($perl_scalar)
  
  Can't access C<$a> and C<$b> but C<$JSON::PP::a> and C<$JSON::PP::b>.
  
  =item $JSON::SkipInvalid
  
    $json->allow_unknown
  
  =item $JSON::AUTOCONVERT
  
  Needless. C<JSON> backend modules have the round-trip integrity.
  
  =item $JSON::UTF8
  
  Needless because C<JSON> (JSON::XS/JSON::PP) sets
  the UTF8 flag on properly.
  
      # With UTF8-flagged strings
  
      $json->allow_nonref;
      $str = chr(1000); # UTF8-flagged
  
      $json_text  = $json->utf8(0)->encode($str);
      utf8::is_utf8($json_text);
      # true
      $json_text  = $json->utf8(1)->encode($str);
      utf8::is_utf8($json_text);
      # false
  
      $str = '"' . chr(1000) . '"'; # UTF8-flagged
  
      $perl_scalar  = $json->utf8(0)->decode($str);
      utf8::is_utf8($perl_scalar);
      # true
      $perl_scalar  = $json->utf8(1)->decode($str);
      # died because of 'Wide character in subroutine'
  
  See to L<JSON::XS/A FEW NOTES ON UNICODE AND PERL>.
  
  =item $JSON::UnMapping
  
  Disable. See to L<MAPPING>.
  
  =item $JSON::SelfConvert
  
  This option was deleted.
  Instead of it, if a given blessed object has the C<TO_JSON> method,
  C<TO_JSON> will be executed with C<convert_blessed>.
  
    $json->convert_blessed->encode($blessed_hashref_or_arrayref)
    # if need, call allow_blessed
  
  Note that it was C<toJson> in old version, but now not C<toJson> but C<TO_JSON>.
  
  =back
  
  =head1 TODO
  
  =over
  
  =item example programs
  
  =back
  
  =head1 THREADS
  
  No test with JSON::PP. If with JSON::XS, See to L<JSON::XS/THREADS>.
  
  
  =head1 BUGS
  
  Please report bugs relevant to C<JSON> to E<lt>makamaka[at]cpan.orgE<gt>.
  
  
  =head1 SEE ALSO
  
  Most of the document is copied and modified from JSON::XS doc.
  
  L<JSON::XS>, L<JSON::PP>
  
  C<RFC4627>(L<http://www.ietf.org/rfc/rfc4627.txt>)
  
  =head1 AUTHOR
  
  Makamaka Hannyaharamitu, E<lt>makamaka[at]cpan.orgE<gt>
  
  JSON::XS was written by  Marc Lehmann <schmorp[at]schmorp.de>
  
  The release of this new version owes to the courtesy of Marc Lehmann.
  
  
  =head1 COPYRIGHT AND LICENSE
  
  Copyright 2005-2013 by Makamaka Hannyaharamitu
  
  This library is free software; you can redistribute it and/or modify
  it under the same terms as Perl itself. 
  
  =cut
  
JSON

$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;
  __END__
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{"Lingua/EN/Numbers/Ordinate.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LINGUA_EN_NUMBERS_ORDINATE';
  package Lingua::EN::Numbers::Ordinate;
  $Lingua::EN::Numbers::Ordinate::VERSION = '1.04';
  
  use 5.006;
  use strict;
  use warnings;
  require Exporter;
  
  our @ISA        = qw/ Exporter  /;
  our @EXPORT     = qw/ ordinate  /;
  our @EXPORT_OK  = qw/ ordsuf th /;
  
  
  
  
  sub ordsuf ($) {
    return 'th' if not(defined($_[0])) or not( 0 + $_[0] );
    my $n = abs($_[0]);  
    return 'th' unless $n == int($n); 
    $n %= 100;
    return 'th' if $n == 11 or $n == 12 or $n == 13;
    $n %= 10;
    return 'st' if $n == 1; 
    return 'nd' if $n == 2;
    return 'rd' if $n == 3;
    return 'th';
  }
  
  sub ordinate ($) {
    my $i = $_[0] || 0;
    return $i . ordsuf($i);
  }
  
  no warnings 'all';
  *th = \&ordinate; 
  
  1;
  
  __END__
LINGUA_EN_NUMBERS_ORDINATE

$fatpacked{"Lingua/EN/PluralToSingular.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LINGUA_EN_PLURALTOSINGULAR';
  package Lingua::EN::PluralToSingular;
  require Exporter;
  @ISA = qw(Exporter);
  @EXPORT_OK = qw/to_singular is_plural/;
  use warnings;
  use strict;
  our $VERSION = '0.14';
  
  
  
  
  my %irregular = (qw/
      analyses analysis
      children child
      corpora corpus
      craftsmen craftsman
      crises crisis
      criteria criterion
      curricula curriculum
      feet foot
      fungi fungus
      geese goose
      genera genus
      indices index
      lice louse
      matrices matrix
      memoranda memorandum
      men man
      mice mouse
      monies money
      neuroses neurosis
      nuclei nucleus
      oases oasis
      pence penny
      people person
      phenomena phenomenon
      quanta quantum
      strata stratum
      teeth tooth
      testes testis
      these this
      theses thesis
      those that
      women woman
  /);
  
  
  
  my %ves = (qw/
      calves calf
      dwarves dwarf
      elves elf
      halves half
      knives knife
      leaves leaf
      lives life
      loaves loaf
      scarves scarf
      sheaves sheaf
      shelves shelf
      wharves wharf 
      wives wife
      wolves wolf
  /);
  
  
  my %plural = (
      'menus' => 'menu',
      'buses' => 'bus',
      %ves,
      %irregular,
  );
  
  
  my @no_change = qw/
                        clothes
                        deer
                        ides
                        fish
                        means
                        offspring
                        series
                        sheep
                        species
                    /;
  
  @plural{@no_change} = @no_change;
  
  
  
  
  my @not_plural = (qw/
      Charles
      Texas
  Hades 
  Hercules 
  Hermes 
  Gonzales 
  Holmes 
  Hughes 
  Ives 
  Jacques 
  James 
  Keyes 
  Mercedes 
  Naples 
  Oates 
  Raines 
  
      dias
      iris
      molasses
      this
      yes
      chaos
      lens
      corps
      mews
      news
  
      athletics
      mathematics
      physics
      metaphysics
  
  
      bogus
      bus
      cactus
      citrus
      corpus
      hippopotamus
      homunculus
      minus
      narcissus
      octopus
      papyrus
      platypus
      plus
      pus
      stylus
      various
      previous
      devious
      metropolis
      miscellaneous
      perhaps
      thus
      famous
      mrs
  sometimes
  
  ourselves
  themselves
  cannabis
  /);
  
  my %not_plural;
  
  @not_plural{@not_plural} = (1) x @not_plural;
  
  
  
  my @oes = (qw/
  		 foes
  		 shoes
                   hoes
  		 throes
                   toes
  		 oboes
               /);
  
  my %oes;
  
  @oes{@oes} = (1) x @oes;
  
  
  
  my @ies = (qw/
  calories
  genies
  lies
  movies
  neckties
  pies
  ties
  /);
  
  my %ies;
  
  @ies{@ies} = (1) x @ies;
  
  
  my @ses = (qw/
  horses
  tenses
  /);
  
  my %ses;
  @ses{@ses} = (1) x @ses;
  
  
  my $es_re = qr/([^aeiou]s|ch|sh)es$/;
  
  
  sub to_singular
  {
      my ($word) = @_;
      my $singular = $word;
      if (! $not_plural{$word}) {
          if ($plural{$word}) {
              $singular = $plural{$word};
          }
          elsif ($word =~ /s$/) {
  	    if ($word =~ /'s$/) {
  		;
  	    }
  	    elsif (length ($word) <= 2) {
  		;
  	    }
  	    elsif ($word =~ /ss$/) {
  		;
  	    }
  	    elsif ($word =~ /sis$/) {
  		;
  	    }
              elsif ($word =~ /ies$/) {
                  if ($ies{$word}) {
                      $singular =~ s/ies$/ie/;
                  }
                  else {
                      $singular =~ s/ies$/y/;
                  }
              }
              elsif ($word =~ /oes$/) {
                  if ($oes{$word}) {
                      $singular =~ s/oes$/oe/;
                  }
                  else {
                      $singular =~ s/oes$/o/;
                  }
              }
              elsif ($word =~ /xes$/) {
  		$singular =~ s/xes$/x/;
              }
  	    elsif ($word =~ /ses$/) {
  		if ($ses{$word}) {
  		    $singular =~ s/ses$/se/;
  		}
  		else {
  		    $singular =~ s/ses$/s/;
  		}
  	    }
              elsif ($word =~ $es_re) {
                  $singular =~ s/$es_re/$1/;
              }
              else {
                  $singular =~ s/s$//;
              }
          }
      }            
      return $singular;
  }
  
  sub is_plural
  {
      my ($word) = @_;
      my $singular = to_singular ($word);
      my $is_plural;
      if ($singular ne $word) {
  	$is_plural = 1;
      }
      elsif ($plural{$singular} && $plural{$singular} eq $singular) {
  	$is_plural = 1;
      }
      else {
  	$is_plural = 0;
      }
      return $is_plural;
  }
  
  1;
  
LINGUA_EN_PLURALTOSINGULAR

$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;
      foreach (@_)
      {
          return 1 if $f->();
      }
      return 0;
  }
  
  sub all (&@)
  {
      my $f = shift;
      foreach (@_)
      {
          return 0 unless $f->();
      }
      return 1;
  }
  
  sub none (&@)
  {
      my $f = shift;
      foreach (@_)
      {
          return 0 if $f->();
      }
      return 1;
  }
  
  sub notall (&@)
  {
      my $f = shift;
      foreach (@_)
      {
          return 1 unless $f->();
      }
      return 0;
  }
  
  sub one (&@)
  {
      my $f     = shift;
      my $found = 0;
      foreach (@_)
      {
          $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;
      foreach (@_)
      {
          $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;
      foreach my $i ( 0 .. $#_ )
      {
          local *_ = \$_[$i];
          return $i if $f->();
      }
      return -1;
  }
  
  sub firstval (&@)
  {
      my $test = shift;
      foreach (@_)
      {
          return $_ if $test->();
      }
      return undef;
  }
  
  sub firstres (&@)
  {
      my $test = shift;
      foreach (@_)
      {
          my $testval = $test->();
          $testval and return $testval;
      }
      return undef;
  }
  
  sub onlyidx (&@)
  {
      my $f = shift;
      my $found;
      foreach 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;
      foreach (@_)
      {
          $test->() or next;
          $result = $_;
          $found++ and return undef;
      }
      return $result;
  }
  
  sub onlyres (&@)
  {
      my $test   = shift;
      my $result = undef;
      my $found  = 0;
      foreach (@_)
      {
          my $rv = $test->() or next;
          $result = $rv;
          $found++ and return undef;
      }
      return $found ? $result : undef;
  }
  
  sub lastidx (&@)
  {
      my $f = shift;
      foreach 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;     
  
      foreach (@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;
  	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
  
      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;
LIST_MOREUTILS_XS

$fatpacked{"Log/Any.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any;
  
  our $VERSION = '1.032';
  
  use Log::Any::Manager;
  use Log::Any::Adapter::Util qw(
    require_dynamic
    detection_aliases
    detection_methods
    log_level_aliases
    logging_aliases
    logging_and_detection_methods
    logging_methods
  );
  
  our $OverrideDefaultAdapterClass;
  our $OverrideDefaultProxyClass;
  
  {
      my $manager = Log::Any::Manager->new();
      sub _manager { return $manager }
  }
  
  sub import {
      my $class  = shift;
      my $caller = caller();
  
      my @export_params = ( $caller, @_ );
      $class->_export_to_caller(@export_params);
  }
  
  sub _export_to_caller {
      my $class  = shift;
      my $caller = shift;
  
      my $saw_log_param;
      my @params;
      while ( my $param = shift @_ ) {
          if ( $param eq '$log' ) {
              $saw_log_param = 1;    
              next;                  
          }
          else {
              push @params, $param, shift @_;    
          }
      }
  
      unless ( @params % 2 == 0 ) {
          require Carp;
          Carp::croak("Argument list not balanced: @params");
      }
  
      if ($saw_log_param) {
          no strict 'refs';
          my $proxy = $class->get_logger( category => $caller, @params );
          my $varname = "$caller\::log";
          *$varname = \$proxy;
      }
  }
  
  sub get_logger {
      my ( $class, %params ) = @_;
      no warnings 'once';
  
      my $proxy_class = $class->_get_proxy_class( delete $params{proxy_class} );
      my $category =
        defined $params{category} ? delete $params{'category'} : caller;
  
      if ( my $default = delete $params{'default_adapter'} ) {
          $class->_manager->set_default( $category, $default );
      }
  
      my $adapter = $class->_manager->get_adapter( $category );
  
      require_dynamic($proxy_class);
      return $proxy_class->new(
          %params, adapter => $adapter, category => $category,
      );
  }
  
  sub _get_proxy_class {
      my ( $self, $proxy_name ) = @_;
      return $Log::Any::OverrideDefaultProxyClass
        if $Log::Any::OverrideDefaultProxyClass;
      return "Log::Any::Proxy" unless $proxy_name;
      my $proxy_class = (
            substr( $proxy_name, 0, 1 ) eq '+'
          ? substr( $proxy_name, 1 )
          : "Log::Any::Proxy::$proxy_name"
      );
      return $proxy_class;
  }
  
  sub set_adapter {
      my $class = shift;
      Log::Any->_manager->set(@_);
  }
  
  1;
  
  __END__
  
LOG_ANY

$fatpacked{"Log/Any/Adapter.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_ADAPTER';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Adapter;
  
  our $VERSION = '1.032';
  
  use Log::Any;
  
  sub import {
      my $pkg = shift;
      Log::Any->_manager->set(@_) if (@_);
  }
  
  sub set {
      my $pkg = shift;
      Log::Any->_manager->set(@_)
  }
  
  sub remove {
      my $pkg = shift;
      Log::Any->_manager->remove(@_)
  }
  
  1;
  
  __END__
  
LOG_ANY_ADAPTER

$fatpacked{"Log/Any/Adapter/Base.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_ADAPTER_BASE';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Adapter::Base;
  
  our $VERSION = '1.032';
  
  use Log::Any::Adapter::Util qw/make_method dump_one_line/;
  
  sub new {
      my $class = shift;
      my $self  = {@_};
      bless $self, $class;
      $self->init(@_);
      return $self;
  }
  
  sub init { }
  
  for my $method ( Log::Any::Adapter::Util::logging_and_detection_methods() ) {
      no strict 'refs';
      *$method = sub {
          my $class = ref( $_[0] ) || $_[0];
          die "$class does not implement $method";
      };
  }
  
  sub delegate_method_to_slot {
      my ( $class, $slot, $method, $adapter_method ) = @_;
  
      make_method( $method,
          sub { my $self = shift; return $self->{$slot}->$adapter_method(@_) },
          $class );
  }
  
  1;
LOG_ANY_ADAPTER_BASE

$fatpacked{"Log/Any/Adapter/File.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_ADAPTER_FILE';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Adapter::File;
  
  our $VERSION = '1.032';
  
  use Config;
  use Fcntl qw/:flock/;
  use IO::File;
  use Log::Any::Adapter::Util ();
  
  use base qw/Log::Any::Adapter::Base/;
  
  my $HAS_FLOCK = $Config{d_flock} || $Config{d_fcntl_can_lock} || $Config{d_lockf};
  
  my $trace_level = Log::Any::Adapter::Util::numeric_level('trace');
  sub new {
      my ( $class, $file, @args ) = @_;
      return $class->SUPER::new( file => $file, log_level => $trace_level, @args );
  }
  
  sub init {
      my $self = shift;
      if ( exists $self->{log_level} ) {
          $self->{log_level} = Log::Any::Adapter::Util::numeric_level( $self->{log_level} )
              unless $self->{log_level} =~ /^\d+$/;
      }
      else {
          $self->{log_level} = $trace_level;
      }
      my $file = $self->{file};
      open( $self->{fh}, ">>", $file )
        or die "cannot open '$file' for append: $!";
      $self->{fh}->autoflush(1);
  }
  
  foreach my $method ( Log::Any::Adapter::Util::logging_methods() ) {
      no strict 'refs';
      my $method_level = Log::Any::Adapter::Util::numeric_level( $method );
      *{$method} = sub {
          my ( $self, $text ) = @_;
          return if $method_level > $self->{log_level};
          my $msg = sprintf( "[%s] %s\n", scalar(localtime), $text );
          flock($self->{fh}, LOCK_EX) if $HAS_FLOCK;
          $self->{fh}->print($msg);
          flock($self->{fh}, LOCK_UN) if $HAS_FLOCK;
        }
  }
  
  foreach my $method ( Log::Any::Adapter::Util::detection_methods() ) {
      no strict 'refs';
      my $base = substr($method,3);
      my $method_level = Log::Any::Adapter::Util::numeric_level( $base );
      *{$method} = sub {
          return !!(  $method_level <= $_[0]->{log_level} );
      };
  }
  
  1;
  
  __END__
  
LOG_ANY_ADAPTER_FILE

$fatpacked{"Log/Any/Adapter/Null.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_ADAPTER_NULL';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Adapter::Null;
  
  our $VERSION = '1.032';
  
  use base qw/Log::Any::Adapter::Base/;
  
  use Log::Any::Adapter::Util ();
  
  
  foreach my $method (Log::Any::Adapter::Util::logging_and_detection_methods()) {
      no strict 'refs';
      *{$method} = sub { return '' }; 
  }
  
  1;
  
  __END__
  
LOG_ANY_ADAPTER_NULL

$fatpacked{"Log/Any/Adapter/Screen.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_ADAPTER_SCREEN';
  package Log::Any::Adapter::Screen;
  
  our $DATE = '2016-01-02'; 
  our $VERSION = '0.11'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Log::Any;
  use Log::Any::Adapter::Util qw(make_method);
  use parent qw(Log::Any::Adapter::Base);
  
  my $CODE_RESET = "\e[0m"; 
  my $DEFAULT_COLORS = {alert=>"\e[31m",critical=>"\e[31m",debug=>"",emergency=>"\e[31m",error=>"\e[35m",info=>"\e[32m",notice=>"\e[32m",trace=>"\e[33m",warning=>"\e[1;34m"}; 
  
  my $Time0;
  
  my @logging_methods = Log::Any->logging_methods;
  our %logging_levels;
  for my $i (0..@logging_methods-1) {
      $logging_levels{$logging_methods[$i]} = $i;
  }
  $logging_levels{warn} = $logging_levels{warning};
  
  sub _min_level {
      my $self = shift;
  
      return $ENV{LOG_LEVEL}
          if $ENV{LOG_LEVEL} && $logging_levels{$ENV{LOG_LEVEL}};
      return 'trace' if $ENV{TRACE};
      return 'debug' if $ENV{DEBUG};
      return 'info'  if $ENV{VERBOSE};
      return 'error' if $ENV{QUIET};
      $self->{default_level};
  }
  
  sub init {
      my ($self) = @_;
      $self->{default_level} //= 'warning';
      $self->{stderr}    //= 1;
      $self->{use_color} //= (-t STDOUT);
      if ($self->{colors}) {
          require Term::ANSIColor;
          my $orig = $self->{colors};
          $self->{colors} = {
              map {($_,($orig->{$_} ? Term::ANSIColor::color($orig->{$_}) : ''))}
                  keys %$orig
              };
      } else {
          $self->{colors} = $DEFAULT_COLORS;
      }
      $self->{min_level} //= $self->_min_level;
      if (!$self->{formatter}) {
          if (($ENV{LOG_PREFIX} // '') eq 'elapsed') {
              require Time::HiRes;
              $Time0 //= Time::HiRes::time();
          }
          $self->{formatter} = sub {
              my ($self, $msg) = @_;
              my $env = $ENV{LOG_PREFIX} // '';
              if ($env eq 'elapsed') {
                  my $time = Time::HiRes::time();
                  $msg = sprintf("[%9.3fms] %s", ($time - $Time0)*1000, $msg);
              }
              $msg;
          };
      }
      $self->{_fh} = $self->{stderr} ? \*STDERR : \*STDOUT;
  }
  
  sub hook_before_log {
      return;
  }
  
  sub hook_after_log {
      my ($self, $msg) = @_;
      print { $self->{_fh} } "\n" unless $msg =~ /\n\z/;
  }
  
  for my $method (Log::Any->logging_methods()) {
      make_method(
          $method,
          sub {
              my ($self, $msg) = @_;
  
              return if $logging_levels{$method} <
                  $logging_levels{$self->{min_level}};
  
              $self->hook_before_log($msg);
  
              if ($self->{formatter}) {
                  $msg = $self->{formatter}->($self, $msg);
              }
  
              if ($self->{use_color} && $self->{colors}{$method}) {
                  $msg = $self->{colors}{$method} . $msg . $CODE_RESET;
              }
  
              print { $self->{_fh} } $msg;
  
              $self->hook_after_log($msg);
          }
      );
  }
  
  for my $method (Log::Any->detection_methods()) {
      my $level = $method; $level =~ s/^is_//;
      make_method(
          $method,
          sub {
              my $self = shift;
              $logging_levels{$level} >= $logging_levels{$self->{min_level}};
          }
      );
  }
  
  1;
  
  __END__
  
LOG_ANY_ADAPTER_SCREEN

$fatpacked{"Log/Any/Adapter/Stderr.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_ADAPTER_STDERR';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Adapter::Stderr;
  
  our $VERSION = '1.032';
  
  use Log::Any::Adapter::Util ();
  
  use base qw/Log::Any::Adapter::Base/;
  
  my $trace_level = Log::Any::Adapter::Util::numeric_level('trace');
  
  sub init {
      my ($self) = @_;
      if ( exists $self->{log_level} ) {
          $self->{log_level} =
            Log::Any::Adapter::Util::numeric_level( $self->{log_level} )
            unless $self->{log_level} =~ /^\d+$/;
      }
      else {
          $self->{log_level} = $trace_level;
      }
  }
  
  foreach my $method ( Log::Any::Adapter::Util::logging_methods() ) {
      no strict 'refs';
      my $method_level = Log::Any::Adapter::Util::numeric_level($method);
      *{$method} = sub {
          my ( $self, $text ) = @_;
          return if $method_level > $self->{log_level};
          print STDERR "$text\n";
      };
  }
  
  foreach my $method ( Log::Any::Adapter::Util::detection_methods() ) {
      no strict 'refs';
      my $base = substr( $method, 3 );
      my $method_level = Log::Any::Adapter::Util::numeric_level($base);
      *{$method} = sub {
          return !!( $method_level <= $_[0]->{log_level} );
      };
  }
  
  1;
  
  __END__
  
LOG_ANY_ADAPTER_STDERR

$fatpacked{"Log/Any/Adapter/Stdout.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_ADAPTER_STDOUT';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Adapter::Stdout;
  
  our $VERSION = '1.032';
  
  use Log::Any::Adapter::Util ();
  
  use base qw/Log::Any::Adapter::Base/;
  
  my $trace_level = Log::Any::Adapter::Util::numeric_level('trace');
  
  sub init {
      my ($self) = @_;
      if ( exists $self->{log_level} ) {
          $self->{log_level} =
            Log::Any::Adapter::Util::numeric_level( $self->{log_level} )
            unless $self->{log_level} =~ /^\d+$/;
      }
      else {
          $self->{log_level} = $trace_level;
      }
  }
  
  foreach my $method ( Log::Any::Adapter::Util::logging_methods() ) {
      no strict 'refs';
      my $method_level = Log::Any::Adapter::Util::numeric_level($method);
      *{$method} = sub {
          my ( $self, $text ) = @_;
          return if $method_level > $self->{log_level};
          print STDOUT "$text\n";
      };
  }
  
  foreach my $method ( Log::Any::Adapter::Util::detection_methods() ) {
      no strict 'refs';
      my $base = substr( $method, 3 );
      my $method_level = Log::Any::Adapter::Util::numeric_level($base);
      *{$method} = sub {
          return !!( $method_level <= $_[0]->{log_level} );
      };
  }
  
  1;
  
  __END__
  
LOG_ANY_ADAPTER_STDOUT

$fatpacked{"Log/Any/Adapter/Test.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_ADAPTER_TEST';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Adapter::Test;
  
  our $VERSION = '1.032';
  
  use Log::Any::Adapter::Util qw/dump_one_line/;
  use Test::Builder;
  
  use base qw/Log::Any::Adapter::Base/;
  
  my $tb = Test::Builder->new();
  my @msgs;
  
  
  sub new {
      my $class = shift;
      if ( defined $Log::Any::OverrideDefaultAdapterClass
          && $Log::Any::OverrideDefaultAdapterClass eq __PACKAGE__ )
      {
          my $category = pop @_;
          return $class->SUPER::new( category => $category );
      }
      else {
          return $class->SUPER::new(@_);
      }
  }
  
  foreach my $method ( Log::Any::Adapter::Util::detection_methods() ) {
      no strict 'refs';
      *{$method} = sub { 1 };
  }
  
  foreach my $method ( Log::Any::Adapter::Util::logging_methods() ) {
      no strict 'refs';
      *{$method} = sub {
          my ( $self, $msg ) = @_;
          push(
              @msgs,
              {
                  message  => $msg,
                  level    => $method,
                  category => $self->{category}
              }
          );
      };
  }
  
  
  sub msgs {
      my $self = shift;
  
      return \@msgs;
  }
  
  sub clear {
      my ($self) = @_;
  
      @msgs = ();
  }
  
  sub contains_ok {
      my ( $self, $regex, $test_name ) = @_;
  
      $test_name ||= "log contains '$regex'";
      my $found =
        _first_index( sub { $_->{message} =~ /$regex/ }, @{ $self->msgs } );
      if ( $found != -1 ) {
          splice( @{ $self->msgs }, $found, 1 );
          $tb->ok( 1, $test_name );
      }
      else {
          $tb->ok( 0, $test_name );
          $tb->diag( "could not find message matching $regex; log contains: "
                . $self->dump_one_line( $self->msgs ) );
      }
  }
  
  sub category_contains_ok {
      my ( $self, $category, $regex, $test_name ) = @_;
  
      $test_name ||= "log for $category contains '$regex'";
      my $found =
        _first_index(
          sub { $_->{category} eq $category && $_->{message} =~ /$regex/ },
          @{ $self->msgs } );
      if ( $found != -1 ) {
          splice( @{ $self->msgs }, $found, 1 );
          $tb->ok( 1, $test_name );
      }
      else {
          $tb->ok( 0, $test_name );
          $tb->diag(
              "could not find $category message matching $regex; log contains: "
                . $self->dump_one_line( $self->msgs ) );
      }
  }
  
  sub does_not_contain_ok {
      my ( $self, $regex, $test_name ) = @_;
  
      $test_name ||= "log does not contain '$regex'";
      my $found =
        _first_index( sub { $_->{message} =~ /$regex/ }, @{ $self->msgs } );
      if ( $found != -1 ) {
          $tb->ok( 0, $test_name );
          $tb->diag( "found message matching $regex: " . $self->msgs->[$found] );
      }
      else {
          $tb->ok( 1, $test_name );
      }
  }
  
  sub category_does_not_contain_ok {
      my ( $self, $category, $regex, $test_name ) = @_;
  
      $test_name ||= "log for $category contains '$regex'";
      my $found =
        _first_index(
          sub { $_->{category} eq $category && $_->{message} =~ /$regex/ },
          @{ $self->msgs } );
      if ( $found != -1 ) {
          $tb->ok( 0, $test_name );
          $tb->diag( "found $category message matching $regex: "
                . $self->msgs->[$found] );
      }
      else {
          $tb->ok( 1, $test_name );
      }
  }
  
  sub empty_ok {
      my ( $self, $test_name ) = @_;
  
      $test_name ||= "log is empty";
      if ( !@{ $self->msgs } ) {
          $tb->ok( 1, $test_name );
      }
      else {
          $tb->ok( 0, $test_name );
          $tb->diag( "log is not empty; contains "
                . $self->dump_one_line( $self->msgs ) );
          $self->clear();
      }
  }
  
  sub contains_only_ok {
      my ( $self, $regex, $test_name ) = @_;
  
      $test_name ||= "log contains only '$regex'";
      my $count = scalar( @{ $self->msgs } );
      if ( $count == 1 ) {
          local $Test::Builder::Level = $Test::Builder::Level + 1;
          $self->contains_ok( $regex, $test_name );
      }
      else {
          $tb->ok( 0, $test_name );
          $tb->diag( "log contains $count messages: "
                . $self->dump_one_line( $self->msgs ) );
      }
  }
  
  sub _first_index {
      my $f = shift;
      for my $i ( 0 .. $#_ ) {
          local *_ = \$_[$i];
          return $i if $f->();
      }
      return -1;
  }
  
  1;
LOG_ANY_ADAPTER_TEST

$fatpacked{"Log/Any/Adapter/Util.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_ADAPTER_UTIL';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Adapter::Util;
  
  our $VERSION = '1.032';
  
  use Data::Dumper;
  use base qw(Exporter);
  
  my %LOG_LEVELS;
  BEGIN {
      %LOG_LEVELS = (
          EMERGENCY => 0,
          ALERT     => 1,
          CRITICAL  => 2,
          ERROR     => 3,
          WARNING   => 4,
          NOTICE    => 5,
          INFO      => 6,
          DEBUG     => 7,
          TRACE     => 8,
      );
  }
  
  use constant \%LOG_LEVELS;
  
  our @EXPORT_OK = qw(
    cmp_deeply
    detection_aliases
    detection_methods
    dump_one_line
    log_level_aliases
    logging_aliases
    logging_and_detection_methods
    logging_methods
    make_method
    numeric_level
    read_file
    require_dynamic
  );
  
  push @EXPORT_OK, keys %LOG_LEVELS;
  
  our %EXPORT_TAGS = ( 'levels' => [ keys %LOG_LEVELS ] );
  
  my ( %LOG_LEVEL_ALIASES, @logging_methods, @logging_aliases, @detection_methods,
      @detection_aliases, @logging_and_detection_methods );
  
  BEGIN {
      %LOG_LEVEL_ALIASES = (
          inform => 'info',
          warn   => 'warning',
          err    => 'error',
          crit   => 'critical',
          fatal  => 'critical'
      );
      @logging_methods =
        qw(trace debug info notice warning error critical alert emergency);
      @logging_aliases               = keys(%LOG_LEVEL_ALIASES);
      @detection_methods             = map { "is_$_" } @logging_methods;
      @detection_aliases             = map { "is_$_" } @logging_aliases;
      @logging_and_detection_methods = ( @logging_methods, @detection_methods );
  }
  
  
  sub logging_methods               { @logging_methods }
  
  
  sub detection_methods             { @detection_methods }
  
  
  sub logging_and_detection_methods { @logging_and_detection_methods }
  
  
  sub log_level_aliases             { %LOG_LEVEL_ALIASES }
  
  
  sub logging_aliases               { @logging_aliases }
  
  
  sub detection_aliases             { @detection_aliases }
  
  
  sub numeric_level {
      my ($level) = @_;
      my $canonical =
        exists $LOG_LEVEL_ALIASES{$level} ? $LOG_LEVEL_ALIASES{$level} : $level;
      return $LOG_LEVELS{ uc($canonical) };
  }
  
  
  sub dump_one_line {
      my ($value) = @_;
  
      return Data::Dumper->new( [$value] )->Indent(0)->Sortkeys(1)->Quotekeys(0)
        ->Terse(1)->Dump();
  }
  
  
  sub make_method {
      my ( $method, $code, $pkg ) = @_;
  
      $pkg ||= caller();
      no strict 'refs';
      *{ $pkg . "::$method" } = $code;
  }
  
  
  sub require_dynamic {
      my ($class) = @_;
  
      return 1 if $class->can('new'); 
  
      unless ( defined( eval "require $class; 1" ) )
      {    
          die $@;
      }
  }
  
  
  sub read_file {
      my ($file) = @_;
  
      local $/ = undef;
      open( my $fh, '<', $file )
        or die "cannot open '$file': $!";
      my $contents = <$fh>;
      return $contents;
  }
  
  
  sub cmp_deeply {
      my ( $ref1, $ref2, $name ) = @_;
  
      my $tb = Test::Builder->new();
      $tb->is_eq( dump_one_line($ref1), dump_one_line($ref2), $name );
  }
  
  require Log::Any;
  
  1;
  
  
  
  __END__
  
LOG_ANY_ADAPTER_UTIL

$fatpacked{"Log/Any/IfLOG.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_IFLOG';
  package Log::Any::IfLOG;
  
  our $DATE = '2015-08-17'; 
  our $VERSION = '0.07'; 
  
  our $DEBUG;
  our $ENABLE_LOG;
  
  my $log_singleton;
  sub __log_singleton {
      if (!$log_singleton) { $log_singleton = Object::Dumb->new }
      $log_singleton;
  }
  
  sub __log_enabled {
      if (defined $ENABLE_LOG) {
          return $ENABLE_LOG;
      } elsif ($INC{'Log/Any.pm'}) {
          return 1;
      } else {
          return
              $ENV{LOG} || $ENV{TRACE} || $ENV{DEBUG} ||
              $ENV{VERBOSE} || $ENV{QUIET} || $ENV{LOG_LEVEL};
      }
  }
  
  sub import {
      my $self = shift;
  
      my $caller = caller();
      if (__log_enabled()) {
          require Log::Any;
          Log::Any->_export_to_caller($caller, @_);
      } else {
          my $saw_log_param = grep { $_ eq '$log' } @_;
          if ($saw_log_param) {
              __log_singleton(); 
              *{"$caller\::log"} = \$log_singleton;
          }
      }
  }
  
  sub get_logger {
      if (__log_enabled()) {
          require Log::Any;
          my $class = shift;
          if ($class eq 'Log::Any::IfLOG') {
              Log::Any->get_logger(@_);
          } else {
              Log::Any::get_logger($class, @_);
          }
      } else {
          return __log_singleton();
      }
  }
  
  package
      Object::Dumb;
  sub new { my $o = ""; bless \$o, shift }
  sub AUTOLOAD { 0 }
  
  1;
  
  __END__
  
LOG_ANY_IFLOG

$fatpacked{"Log/Any/Manager.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_MANAGER';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Manager;
  
  our $VERSION = '1.032';
  
  sub new {
      my $class = shift;
      my $self  = {
          entries         => [],
          category_cache  => {},
          default_adapter => {},
      };
      bless $self, $class;
  
      return $self;
  }
  
  sub get_adapter {
      my ( $self, $category ) = @_;
  
      my $category_cache = $self->{category_cache};
      if ( !defined( $category_cache->{$category} ) ) {
          my $entry = $self->_choose_entry_for_category($category);
          my $adapter = $self->_new_adapter_for_entry( $entry, $category );
          $category_cache->{$category} = { entry => $entry, adapter => $adapter };
      }
      return $category_cache->{$category}->{adapter};
  }
  
  {
      no warnings 'once';
      *get_logger = \&get_adapter;    
  }
  
  sub _choose_entry_for_category {
      my ( $self, $category ) = @_;
  
      foreach my $entry ( @{ $self->{entries} } ) {
          if ( $category =~ $entry->{pattern} ) {
              return $entry;
          }
      }
      my $default = $self->{default_adapter}{$category}
          || [ $self->_get_adapter_class("Null"), [] ];
      my ($adapter_class, $adapter_params) = @$default;
      _require_dynamic($adapter_class);
      return {
          adapter_class  => $adapter_class,
          adapter_params => $adapter_params,
      };
  }
  
  sub _new_adapter_for_entry {
      my ( $self, $entry, $category ) = @_;
  
      return $entry->{adapter_class}
        ->new( @{ $entry->{adapter_params} }, category => $category );
  }
  
  sub set_default {
      my ( $self, $category, $adapter_name, @adapter_params ) = @_;
      my $adapter_class = $self->_get_adapter_class($adapter_name);
      $self->{default_adapter}{$category} = [$adapter_class, \@adapter_params];
  }
  
  sub set {
      my $self = shift;
      my $options;
      if ( ref( $_[0] ) eq 'HASH' ) {
          $options = shift(@_);
      }
      my ( $adapter_name, @adapter_params ) = @_;
  
      unless ( defined($adapter_name) && $adapter_name =~ /\S/ ) {
          require Carp;
          Carp::croak("expected adapter name");
      }
  
      my $pattern = $options->{category};
      if ( !defined($pattern) ) {
          $pattern = qr/.*/;
      }
      elsif ( !ref($pattern) ) {
          $pattern = qr/^\Q$pattern\E$/;
      }
  
      my $adapter_class = $self->_get_adapter_class($adapter_name);
      _require_dynamic($adapter_class);
  
      my $entry = $self->_new_entry( $pattern, $adapter_class, \@adapter_params );
      unshift( @{ $self->{entries} }, $entry );
  
      $self->_reselect_matching_adapters($pattern);
  
      if ( my $lex_ref = $options->{lexically} ) {
          $$lex_ref = Log::Any::Manager::_Guard->new(
              sub { $self->remove($entry) unless _in_global_destruction() } );
      }
  
      return $entry;
  }
  
  sub remove {
      my ( $self, $entry ) = @_;
  
      my $pattern = $entry->{pattern};
      $self->{entries} = [ grep { $_ ne $entry } @{ $self->{entries} } ];
      $self->_reselect_matching_adapters($pattern);
  }
  
  sub _new_entry {
      my ( $self, $pattern, $adapter_class, $adapter_params ) = @_;
  
      return {
          pattern        => $pattern,
          adapter_class  => $adapter_class,
          adapter_params => $adapter_params,
      };
  }
  
  sub _reselect_matching_adapters {
      my ( $self, $pattern ) = @_;
  
      return if _in_global_destruction();
  
      while ( my ( $category, $category_info ) =
          each( %{ $self->{category_cache} } ) )
      {
          my $new_entry = $self->_choose_entry_for_category($category);
          if ( $new_entry ne $category_info->{entry} ) {
              my $new_adapter =
                $self->_new_adapter_for_entry( $new_entry, $category );
              %{ $category_info->{adapter} } = %$new_adapter;
              bless( $category_info->{adapter}, ref($new_adapter) );
              $category_info->{entry} = $new_entry;
          }
      }
  }
  
  sub _get_adapter_class {
      my ( $self, $adapter_name ) = @_;
      return $Log::Any::OverrideDefaultAdapterClass if $Log::Any::OverrideDefaultAdapterClass;
      $adapter_name =~ s/^Log:://;    
      my $adapter_class = (
            substr( $adapter_name, 0, 1 ) eq '+'
          ? substr( $adapter_name, 1 )
          : "Log::Any::Adapter::$adapter_name"
      );
      return $adapter_class;
  }
  
  if ( defined ${^GLOBAL_PHASE} ) {
      eval 'sub _in_global_destruction () { ${^GLOBAL_PHASE} eq q[DESTRUCT] }; 1' 
        or die $@;
  }
  else {
      require B;
      my $started = !B::main_start()->isa(q[B::NULL]);
      unless ($started) {
          eval '0 && $started; CHECK { $started = 1 }; 1' 
            or die $@;
      }
      eval 
        '0 && $started; sub _in_global_destruction () { $started && B::main_start()->isa(q[B::NULL]) }; 1'
        or die $@;
  }
  
  sub _require_dynamic {
      my ($class) = @_;
  
      return 1 if $class->can('new'); 
  
      unless ( defined( eval "require $class; 1" ) )
      {    
          die $@;
      }
  }
  
  package    
    Log::Any::Manager::_Guard;
  
  sub new { bless $_[1], $_[0] }
  
  sub DESTROY { $_[0]->() }
  
  1;
LOG_ANY_MANAGER

$fatpacked{"Log/Any/Proxy.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_PROXY';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Proxy;
  
  our $VERSION = '1.032';
  
  use Log::Any::Adapter::Util ();
  
  sub _default_formatter {
      my ( $cat, $lvl, $format, @params ) = @_;
      my @new_params =
        map { !defined($_) ? '<undef>' : ref($_) ? _dump_one_line($_) : $_ }
        @params;
      return sprintf( $format, @new_params );
  }
  
  sub _dump_one_line {
      my ($value) = @_;
  
      return Data::Dumper->new( [$value] )->Indent(0)->Sortkeys(1)->Quotekeys(0)
        ->Terse(1)->Useqq(1)->Dump();
  }
  
  sub new {
      my $class = shift;
      my $self = { formatter => \&_default_formatter, @_ };
      unless ( $self->{adapter} ) {
          require Carp;
          Carp::croak("$class requires an 'adapter' parameter");
      }
      unless ( $self->{category} ) {
          require Carp;
          Carp::croak("$class requires an 'category' parameter")
      }
      bless $self, $class;
      $self->init(@_);
      return $self;
  }
  
  sub init { }
  
  for my $attr (qw/adapter filter formatter prefix/) {
      no strict 'refs';
      *{$attr} = sub { return $_[0]->{$attr} };
  }
  
  my %aliases = Log::Any::Adapter::Util::log_level_aliases();
  
  foreach my $name ( Log::Any::Adapter::Util::logging_methods(), keys(%aliases) )
  {
      my $realname    = $aliases{$name} || $name;
      my $namef       = $name . "f";
      my $is_name     = "is_$name";
      my $is_realname = "is_$realname";
      my $numeric     = Log::Any::Adapter::Util::numeric_level($realname);
      no strict 'refs';
      *{$is_name} = sub {
          my ($self) = @_;
          return $self->{adapter}->$is_realname;
      };
      *{$name} = sub {
          my ( $self, @parts ) = @_;
          my $message = join(" ", grep { defined($_) && length($_) } @parts );
          return unless length $message;
          $message = $self->{filter}->( $self->{category}, $numeric, $message )
            if defined $self->{filter};
          return unless defined $message and length $message;
          $message = "$self->{prefix}$message"
            if defined $self->{prefix} && length $self->{prefix};
          return $self->{adapter}->$realname($message);
      };
      *{$namef} = sub {
          my ( $self, @args ) = @_;
          return unless $self->{adapter}->$is_realname;
          my $message =
            $self->{formatter}->( $self->{category}, $numeric, @args );
          return unless defined $message and length $message;
          return $self->$name($message);
      };
  }
  
  1;
  
  
  
  __END__
  
LOG_ANY_PROXY

$fatpacked{"Log/Any/Proxy/Test.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_PROXY_TEST';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Proxy::Test;
  
  our $VERSION = '1.032';
  
  use base qw/Log::Any::Proxy/;
  
  my @test_methods = qw(
    msgs
    clear
    contains_ok
    category_contains_ok
    does_not_contain_ok
    category_does_not_contain_ok
    empty_ok
    contains_only_ok
  );
  
  foreach my $name (@test_methods) {
      no strict 'refs';
      *{$name} = sub {
          my $self = shift;
          $self->{adapter}->$name(@_);
      };
  }
  
  1;
LOG_ANY_PROXY_TEST

$fatpacked{"Log/Any/Test.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'LOG_ANY_TEST';
  use 5.008001;
  use strict;
  use warnings;
  
  package Log::Any::Test;
  
  our $VERSION = '1.032';
  
  no warnings 'once';
  $Log::Any::OverrideDefaultAdapterClass = 'Log::Any::Adapter::Test';
  $Log::Any::OverrideDefaultProxyClass   = 'Log::Any::Proxy::Test';
  
  1;
  
  __END__
  
LOG_ANY_TEST

$fatpacked{"Mo.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO';
  package Mo;
  $VERSION=0.39;
  no warnings;my$M=__PACKAGE__.'::';*{$M.Object::new}=sub{my$c=shift;my$s=bless{@_},$c;my%n=%{$c.::.':E'};map{$s->{$_}=$n{$_}->()if!exists$s->{$_}}keys%n;$s};*{$M.import}=sub{import warnings;$^H|=1538;my($P,%e,%o)=caller.'::';shift;eval"no Mo::$_",&{$M.$_.::e}($P,\%e,\%o,\@_)for@_;return if$e{M};%e=(extends,sub{eval"no $_[0]()";@{$P.ISA}=$_[0]},has,sub{my$n=shift;my$m=sub{$#_?$_[0]{$n}=$_[1]:$_[0]{$n}};@_=(default,@_)if!($#_%2);$m=$o{$_}->($m,$n,@_)for sort keys%o;*{$P.$n}=$m},%e,);*{$P.$_}=$e{$_}for keys%e;@{$P.ISA}=$M.Object};
MO

$fatpacked{"Mo/Golf.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_GOLF';
  
  use strict;
  use warnings;
  package Mo::Golf;
  
  our $VERSION=0.39;
  
  use PPI;
  
  my %short_names = (
      (
          map {($_, substr($_, 0, 1))}
          qw(
              args builder class default exports features
              generator import is_lazy method MoPKG name
              nonlazy_defaults options reftype self
          )
      ),
      build_subs => 'B',
      old_constructor => 'C',
      caller_pkg => 'P',
  );
  
  my %short_barewords = ( EAGERINIT => q{':E'}, NONLAZY => q{':N'} );
  
  my %hands_off = map {($_,1)} qw'&import *import';
  
  sub import {
      return unless @_ == 2 and $_[1] eq 'golf';
      binmode STDOUT;
      my $text = do { local $/; <> };
      print STDOUT golf( $text );
  };
  
  sub golf {
      my ( $text ) = @_;
  
      my $tree = PPI::Document->new( \$text );
  
      my %finder_subs = _finder_subs();
  
      my @order = qw( comments duplicate_whitespace whitespace trailing_whitespace );
  
      for my $name ( @order ) {
          my $elements = $tree->find( $finder_subs{$name} );
          die $@ if !defined $elements;
          $_->delete for @{ $elements || [] };
      }
  
      $tree->find( $finder_subs{$_} )
        for qw( del_superfluous_concat del_last_semicolon_in_block separate_version shorten_var_names shorten_barewords );
      die $@ if $@;
  
      for my $name ( 'double_semicolon' ) {
          my $elements = $tree->find( $finder_subs{$name} );
          die $@ if !defined $elements;
          $_->delete for @{ $elements || [] };
      }
  
      return $tree->serialize . "\n";
  }
  
  sub tok { "PPI::Token::$_[0]" }
  
  sub _finder_subs {
      return (
          comments => sub { $_[1]->isa( tok 'Comment' ) },
  
          duplicate_whitespace => sub {
              my ( $top, $current ) = @_;
              return 0 if !$current->isa( tok 'Whitespace' );
  
              $current->set_content(' ') if 1 < length $current->content;
  
              return 0 if !$current->next_token;
              return 0 if !$current->next_token->isa( tok 'Whitespace' );
              return 1;
          },
  
          whitespace => sub {
              my ( $top, $current ) = @_;
              return 0 if !$current->isa( tok 'Whitespace' );
              my $prev = $current->previous_token;
              my $next = $current->next_token;
  
              return 1 if $prev->isa( tok 'Number' ) and $next->isa( tok 'Operator' ) and $next->content =~ /^\W/; 
              return 1 if $prev->isa( tok 'Word' )   and $next->isa( tok 'Operator' ) and $next->content =~ /^\W/; 
              return 1 if $prev->isa( tok 'Symbol' ) and $next->isa( tok 'Operator' ) and $next->content =~ /^\W/; 
  
              return 1 if $prev->isa( tok 'Operator' ) and $next->isa( tok 'Quote::Single' ) and $next->content =~ /^\W/; 
              return 1 if $prev->isa( tok 'Operator' ) and $next->isa( tok 'Quote::Double' ) and $next->content =~ /^\W/; 
              return 1 if $prev->isa( tok 'Operator' ) and $next->isa( tok 'Symbol' )        and $next->content =~ /^\W/; 
              return 1 if $prev->isa( tok 'Operator' ) and $next->isa( tok 'Structure' )     and $next->content =~ /^\W/; 
  
              return 1 if $prev->isa( tok 'Word' )       and $next->isa( tok 'Symbol' );           
              return 1 if $prev->isa( tok 'Word' )       and $next->isa( tok 'Structure' );        
              return 1 if $prev->isa( tok 'Word' )       and $next->isa( tok 'Quote::Double' );    
              return 1 if $prev->isa( tok 'Symbol' )     and $next->isa( tok 'Structure' );        
              return 1 if $prev->isa( tok 'ArrayIndex' ) and $next->isa( tok 'Operator' );         
              return 1 if $prev->isa( tok 'Word' )       and $next->isa( tok 'Cast' );             
              return 0;
          },
  
          trailing_whitespace => sub {
              my ( $top, $current ) = @_;
              return 0 if !$current->isa( tok 'Whitespace' );
              my $prev = $current->previous_token;
  
              return 1 if $prev->isa( tok 'Structure' );                                           
              return 1 if $prev->isa( tok 'Operator' ) and $prev->content =~ /\W$/;                
              return 1 if $prev->isa( tok 'Quote::Double' );                                       
              return 1 if $prev->isa( tok 'Quote::Single' );                                       
  
              return 0;
          },
  
          double_semicolon => sub {
              my ( $top, $current ) = @_;
              return 0 if !$current->isa( tok 'Structure' );
              return 0 if $current->content ne ';';
  
              my $prev = $current->previous_token;
  
              return 0 if !$prev->isa( tok 'Structure' );
              return 0 if $prev->content ne ';';
  
              return 1;
          },
  
          del_last_semicolon_in_block => sub {
              my ( $top, $current ) = @_;
              return 0 if !$current->isa( 'PPI::Structure::Block' );
  
              my $last = $current->last_token;
  
              return 0 if !$last->isa( tok 'Structure' );
              return 0 if $last->content ne '}';
  
              my $maybe_semi = $last->previous_token;
  
              return 0 if !$maybe_semi->isa( tok 'Structure' );
              return 0 if $maybe_semi->content ne ';';
  
              $maybe_semi->delete;
  
              return 1;
          },
  
          del_superfluous_concat => sub {
              my ( $top, $current ) = @_;
              return 0 if !$current->isa( tok 'Operator' );
  
              my $prev = $current->previous_token;
              my $next = $current->next_token;
  
              return 0 if $current->content ne '.';
              return 0 if !$prev->isa( tok 'Quote::Double' );
              return 0 if !$next->isa( tok 'Quote::Double' );
  
              $current->delete;
              $prev->set_content( $prev->{separator} . $prev->string . $next->string . $prev->{separator} );
              $next->delete;
  
              return 1;
          },
  
          separate_version => sub {
              my ( $top, $current ) = @_;
              return 0 if !$current->isa( 'PPI::Statement' );
  
              my $first = $current->first_token;
              return 0 if $first->content ne '$VERSION';
  
              $current->$_( PPI::Token::Whitespace->new( "\n" ) ) for qw( insert_before insert_after );
  
              return 1;
          },
  
          shorten_var_names => sub {
              my ( $top, $current ) = @_;
              return 0 if !$current->isa( tok 'Symbol' );
  
              my $long_name = $current->canonical;
  
              return 1 if $hands_off{$long_name};
              (my $name = $long_name) =~ s/^([\$\@\%])// or die $long_name;
              my $sigil = $1;
              die "variable $long_name conflicts with shortened var name"
                  if grep {
                      $name eq $_
                  } values %short_names;
  
              my $short_name = $short_names{$name};
              $current->set_content( "$sigil$short_name" ) if $short_name;
  
              return 1;
          },
  
          shorten_barewords => sub {
              my ( $top, $current ) = @_;
              return 0 if !$current->isa( tok 'Word' );
  
              my $name = $current->content;
  
              die "bareword $name conflicts with shortened bareword"
                  if grep {
                      $name eq $_
                  } values %short_barewords;
  
              my $short_name = $short_barewords{$name};
              $current->set_content( $short_name ) if $short_name;
  
              return 1;
          },
      );
  }
  
MO_GOLF

$fatpacked{"Mo/Inline.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_INLINE';
  
  package Mo::Inline;
  use Mo;
  
  our $VERSION=0.39;
  
  use IO::All;
  
  my $matcher = qr/((?m:^#\s*use Mo(\s.*)?;.*\n))(?:#.*\n)*(?:.{400,}\n)?/;
  
  sub run {
      my $self = shift;
      my @files;
      if (not @_ and -d 'lib') {
          print "Searching the 'lib' directory for a Mo to inline:\n";
          @_ = 'lib';
      }
      if (not @_ or @_ == 1 and $_[0] =~ /^(?:-\?|-h|--help)$/) {
          print usage();
          return 0;
      }
      for my $name (@_) {
          die "No file or directory called '$name'"
              unless -e $name;
          die "'$name' is not a Perl module"
              if -f $name and $name !~ /\.pm$/;
          if (-f $name) {
              push @files, $name;
          }
          elsif (-d $name) {
              push @_, grep /\.pm$/, map { "$_" } io($name)->All_Files;
          }
      }
  
      die "No .pm files specified"
          unless @files;
  
      for my $file (@files) {
          my $text = io($file)->all;
          if ($text !~ $matcher) {
              print "Ignoring $file - No Mo to Inline!\n";
              next;
          }
          $self->inline($file, 1);
      }
  }
  
  sub inline {
      my ($self, $file, $noisy) = @_;
      my $text = io($file)->all;
      $text =~ s/$matcher/"$1" . &inliner($2)/eg;
      io($file)->print($text);
      print "Mo Inlined $file\n"
          if $noisy;
  }
  
  sub inliner {
      my $mo = shift;
      require Mo;
      my @features = grep {$_ ne 'qw'} ($mo =~ /(\w+)/g);
      for (@features) {
          eval "require Mo::$_; 1" or die $@;
      }
      my $inline = '';
      $inline .= $_ for map {
          my $module = $_;
          $module .= '.pm';
          my @lines = io($INC{$module})->chomp->getlines;
          $lines[-1];
      } ('Mo', map { s!::!/!g; "Mo/$_" } @features);
      return <<"...";
  #   The following line of code was produced from the previous line by
  #   Mo::Inline version $VERSION
  $inline\@f=qw[@features];use strict;use warnings;
  ...
  }
  
  sub usage {
      <<'...';
  Usage: mo-linline <perl module files or directories>
  
  ...
  }
  
  1;
  
MO_INLINE

$fatpacked{"Mo/Moose.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_MOOSE';
  package Mo::Moose;$M="Mo::";
  $VERSION=0.39;
  *{$M.'Moose::e'}=sub{my($P,$e)=@_;$P=~s/::$//;%$e=(M=>1);require Moose;Moose->import({into=>$P});Moose::Util::MetaRole::apply_metaroles(for=>$P,class_metaroles=>{attribute=>['Attr::Trait']},)};BEGIN{package Attr::Trait;use Moose::Role;around _process_options=>sub{my$orig=shift;my$c=shift;my($n,$o)=@_;$o->{is}||='rw';$o->{lazy}||=1 if defined$o->{default}or defined$o->{builder};$c->$orig(@_)};$INC{'Attr/Trait.pm'}=1}
MO_MOOSE

$fatpacked{"Mo/Mouse.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_MOUSE';
  package Mo::Mouse;$M="Mo::";
  $VERSION=0.39;
  *{$M.'Mouse::e'}=sub{my($P,$e)=@_;$P=~s/::$//;%$e=(M=>1);require Mouse;require Mouse::Util::MetaRole;Mouse->import({into=>$P});Mouse::Util::MetaRole::apply_metaroles(for=>$P,class_metaroles=>{attribute=>['Attr::Trait']},)};BEGIN{package Attr::Trait;use Mouse::Role;around _process_options=>sub{my$orig=shift;my$c=shift;my($n,$o)=@_;$o->{is}||='rw';$o->{lazy}||=1 if defined$o->{default}or defined$o->{builder};$c->$orig(@_)};$INC{'Attr/Trait.pm'}=1}
MO_MOUSE

$fatpacked{"Mo/build.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_BUILD';
  package Mo::build;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'build::e'}=sub{my($P,$e)=@_;$e->{new}=sub{$c=shift;my$s=&{$M.Object::new}($c,@_);my@B;do{@B=($c.::BUILD,@B)}while($c)=@{$c.::ISA};exists&$_&&&$_($s)for@B;$s}};
MO_BUILD

$fatpacked{"Mo/builder.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_BUILDER';
  package Mo::builder;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'builder::e'}=sub{my($P,$e,$o)=@_;$o->{builder}=sub{my($m,$n,%a)=@_;my$b=$a{builder}or return$m;my$i=exists$a{lazy}?$a{lazy}:!${$P.':N'};$i or ${$P.':E'}{$n}=\&{$P.$b}and return$m;sub{$#_?$m->(@_):!exists$_[0]{$n}?$_[0]{$n}=$_[0]->$b:$m->(@_)}}};
MO_BUILDER

$fatpacked{"Mo/chain.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_CHAIN';
  package Mo::chain;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'chain::e'}=sub{my($P,$e,$o)=@_;$o->{chain}=sub{my($m,$n,%a)=@_;$a{chain}or return$m;sub{$#_?($m->(@_),return$_[0]):$m->(@_)}}};
MO_CHAIN

$fatpacked{"Mo/coerce.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_COERCE';
  package Mo::coerce;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'coerce::e'}=sub{my($P,$e,$o)=@_;$o->{coerce}=sub{my($m,$n,%a)=@_;$a{coerce}or return$m;sub{$#_?$m->($_[0],$a{coerce}->($_[1])):$m->(@_)}};my$C=$e->{new}||*{$M.Object::new}{CODE};$e->{new}=sub{my$s=$C->(@_);$s->$_($s->{$_})for keys%$s;$s}};
MO_COERCE

$fatpacked{"Mo/default.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_DEFAULT';
  package Mo::default;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'default::e'}=sub{my($P,$e,$o)=@_;$o->{default}=sub{my($m,$n,%a)=@_;exists$a{default}or return$m;my($d,$r)=$a{default};my$g='HASH'eq($r=ref$d)?sub{+{%$d}}:'ARRAY'eq$r?sub{[@$d]}:'CODE'eq$r?$d:sub{$d};my$i=exists$a{lazy}?$a{lazy}:!${$P.':N'};$i or ${$P.':E'}{$n}=$g and return$m;sub{$#_?$m->(@_):!exists$_[0]{$n}?$_[0]{$n}=$g->(@_):$m->(@_)}}};
MO_DEFAULT

$fatpacked{"Mo/exporter.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_EXPORTER';
  package Mo::exporter;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'exporter::e'}=sub{my($P)=@_;if(@{$M.EXPORT}){*{$P.$_}=\&{$M.$_}for@{$M.EXPORT}}};
MO_EXPORTER

$fatpacked{"Mo/import.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_IMPORT';
  package Mo::import;my$M="Mo::";
  $VERSION=0.39;
  my$i=\&import;*{$M.import}=sub{(@_==2 and not$_[1])?pop@_:@_==1?push@_,grep!/import/,@f:();goto&$i};
MO_IMPORT

$fatpacked{"Mo/importer.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_IMPORTER';
  package Mo::importer;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'importer::e'}=sub{my($P,$e,$o,$f)=@_;(my$pkg=$P)=~s/::$//;&{$P.'importer'}($pkg,@$f)if defined&{$P.'importer'}};
MO_IMPORTER

$fatpacked{"Mo/is.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_IS';
  package Mo::is;$M="Mo::";
  $VERSION=0.39;
  *{$M.'is::e'}=sub{my($P,$e,$o)=@_;$o->{is}=sub{my($m,$n,%a)=@_;$a{is}or return$m;sub{$#_&&$a{is}eq'ro'&&caller ne'Mo::coerce'?die$n.' is ro':$m->(@_)}}};
MO_IS

$fatpacked{"Mo/nonlazy.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_NONLAZY';
  package Mo::nonlazy;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'nonlazy::e'}=sub{${shift().':N'}=1};
MO_NONLAZY

$fatpacked{"Mo/option.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_OPTION';
  package Mo::option;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'option::e'}=sub{my($P,$e,$o)=@_;$o->{option}=sub{my($m,$n,%a)=@_;$a{option}or return$m;my$n2=$n;*{$P."read_$n2"}=sub{$_[0]->{$n2}};sub{$#_?$m->(@_):$m->(@_,1);$_[0]}}};
MO_OPTION

$fatpacked{"Mo/required.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_REQUIRED';
  package Mo::required;my$M="Mo::";
  $VERSION=0.39;
  *{$M.'required::e'}=sub{my($P,$e,$o)=@_;$o->{required}=sub{my($m,$n,%a)=@_;if($a{required}){my$C=*{$P."new"}{CODE}||*{$M.Object::new}{CODE};no warnings 'redefine';*{$P."new"}=sub{my$s=$C->(@_);my%a=@_[1..$#_];die$n." required"if!exists$a{$n};$s}}$m}};
MO_REQUIRED

$fatpacked{"Mo/xs.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MO_XS';
  package Mo::xs;my$M="Mo::";
  $VERSION=0.39;
  require Class::XSAccessor;*{$M.'xs::e'}=sub{my($P,$e,$o,$f)=@_;$P=~s/::$//;$e->{has}=sub{my($n,%a)=@_;Class::XSAccessor->import(class=>$P,accessors=>{$n=>$n})}if!grep!/^xs$/,@$f};
MO_XS

$fatpacked{"Module/Path/More.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MODULE_PATH_MORE';
  package Module::Path::More;
  
  our $DATE = '2016-01-09'; 
  our $VERSION = '0.30'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(module_path pod_path);
  
  our $SEPARATOR;
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Get path to locally installed Perl module',
  };
  
  BEGIN {
      if ($^O =~ /^(dos|os2)/i) {
          $SEPARATOR = '\\';
      } elsif ($^O =~ /^MacOS/i) {
          $SEPARATOR = ':';
      } else {
          $SEPARATOR = '/';
      }
  }
  
  $SPEC{module_path} = {
      v => 1.1,
      summary => 'Get path to locally installed Perl module',
      description => <<'_',
  
  Search `@INC` (reference entries are skipped) and return path(s) to Perl module
  files with the requested name.
  
  This function is like the one from `Module::Path`, except with a different
  interface and more options (finding all matches instead of the first, the option
  of not absolutizing paths, finding `.pmc` & `.pod` files, finding module
  prefixes).
  
  _
      args => {
          module => {
              summary => 'Module name to search',
              schema  => 'str*',
              req     => 1,
              pos     => 0,
          },
          find_pm => {
              summary => 'Whether to find .pm files',
              schema  => 'bool',
              default => 1,
          },
          find_pmc => {
              summary => 'Whether to find .pmc files',
              schema  => 'bool',
              default => 1,
          },
          find_pod => {
              summary => 'Whether to find .pod files',
              schema  => 'bool',
              default => 0,
          },
          find_prefix => {
              summary => 'Whether to find module prefixes',
              schema  => 'bool',
              default => 0,
          },
          all => {
              summary => 'Return all results instead of just the first',
              schema  => 'bool',
              default => 0,
          },
          abs => {
              summary => 'Whether to return absolute paths',
              schema  => 'bool',
              default => 0,
          },
      },
      result => {
          schema => ['any' => of => ['str*', ['array*' => of => 'str*']]],
      },
      result_naked => 1,
  };
  sub module_path {
      my %args = @_;
  
      my $module = $args{module} or die "Please specify module";
  
      $args{abs}         //= 0;
      $args{all}         //= 0;
      $args{find_pm}     //= 1;
      $args{find_pmc}    //= 1;
      $args{find_pod}    //= 0;
      $args{find_prefix} //= 0;
  
      require Cwd if $args{abs};
  
      my @res;
      my $add = sub { push @res, $args{abs} ? Cwd::abs_path($_[0]) : $_[0] };
  
      my $relpath;
  
      ($relpath = $module) =~ s/::/$SEPARATOR/g;
      $relpath =~ s/\.(pm|pmc|pod)\z//i;
  
      foreach my $dir (@INC) {
          next if not defined($dir);
          next if ref($dir);
  
          my $prefix = $dir . $SEPARATOR . $relpath;
          if ($args{find_pmc}) {
              my $file = $prefix . ".pmc";
              if (-f $file) {
                  $add->($file);
                  last unless $args{all};
              }
          }
          if ($args{find_pm}) {
              my $file = $prefix . ".pm";
              if (-f $file) {
                  $add->($file);
                  last unless $args{all};
              }
          }
          if ($args{find_pod}) {
              my $file = $prefix . ".pod";
              if (-f $file) {
                  $add->($file);
                  last unless $args{all};
              }
          }
          if ($args{find_prefix}) {
              if (-d $prefix) {
                  $add->($prefix);
                  last unless $args{all};
              }
          }
      }
  
      if ($args{all}) {
          return \@res;
      } else {
          return @res ? $res[0] : undef;
      }
  }
  
  $SPEC{pod_path} = {
      v => 1.1,
      summary => 'Get path to locally installed POD',
      description => <<'_',
  
  This is a shortcut for:
  
      module_path(%args, find_pm=>0, find_pmc=>0, find_pod=>1, find_prefix=>0)
  
  _
      args => {
          module => {
              summary => 'Module name to search',
              schema  => 'str*',
              req     => 1,
              pos     => 0,
          },
          all => {
              summary => 'Return all results instead of just the first',
              schema  => 'bool',
              default => 0,
          },
          abs => {
              summary => 'Whether to return absolute paths',
              schema  => 'bool',
              default => 0,
          },
      },
      result => {
          schema => ['any' => of => ['str*', ['array*' => of => 'str*']]],
      },
      result_naked => 1,
  };
  sub pod_path {
      module_path(@_, find_pm=>0, find_pmc=>0, find_pod=>1, find_prefix=>0);
  }
  
  1;
  
  __END__
  
MODULE_PATH_MORE

$fatpacked{"Monkey/Patch/Action.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONKEY_PATCH_ACTION';
  package Monkey::Patch::Action;
  
  use 5.010;
  use warnings;
  use strict;
  
  our $VERSION = '0.04'; 
  
  use Monkey::Patch::Action::Handle;
  
  use Exporter qw(import);
  our @EXPORT_OK = qw(patch_package);
  our %EXPORT_TAGS = (all => \@EXPORT_OK);
  
  sub patch_package {
      my ($package, $subname, $action, $code, @extra) = @_;
  
      die "Please specify action" unless $action;
      if ($action eq 'delete') {
          die "code not needed for 'delete' action" if $code;
      } else {
          die "Please specify code" unless $code;
      }
  
      my $name = "$package\::$subname";
      my $type;
      if ($action eq 'add') {
          die "Adding $name: must not already exist" if defined(&$name);
          $type = 'sub';
      } elsif ($action eq 'replace') {
          die "Replacing $name: must already exist" unless defined(&$name);
          $type = 'sub';
      } elsif ($action eq 'add_or_replace') {
          $type = 'sub';
      } elsif ($action eq 'wrap') {
          die "Wrapping $name: must already exist" unless defined(&$name);
          $type = 'wrap';
      } elsif ($action eq 'delete') {
          $type = 'delete';
      } else {
          die "Unknown action '$action', please use either ".
              "wrap/add/replace/add_or_replace/delete";
      }
  
      my @caller = caller(0);
  
      Monkey::Patch::Action::Handle->new(
          package => $package,
          subname => $subname,
          extra   => \@extra,
          patcher => \@caller,
          code    => $code,
  
          -type   => $type,
      );
  }
  
  1;
  
  
  __END__
  
MONKEY_PATCH_ACTION

$fatpacked{"Monkey/Patch/Action/Handle.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'MONKEY_PATCH_ACTION_HANDLE';
  package Monkey::Patch::Action::Handle;
  
  use 5.010;
  use strict;
  use warnings;
  
  use Scalar::Util qw(weaken);
  use Sub::Delete;
  
  our $VERSION = '0.04'; 
  
  my %stacks;
  
  sub __find_previous {
      my ($stack, $code) = @_;
      state $empty = sub {};
  
      for my $i (1..$#$stack) {
          if ($stack->[$i][1] == $code) {
              return $stack->[$i-1][2] // $stack->[$i-1][1];
          }
      }
      $empty;
  }
  
  sub new {
      my ($class, %args) = @_;
  
      my $type = $args{-type};
      delete $args{-type};
  
      my $code = $args{code};
  
      my $name = "$args{package}::$args{subname}";
      my $stack;
      if (!$stacks{$name}) {
          $stacks{$name} = [];
          push @{$stacks{$name}}, [sub => \&$name] if defined(&$name);
      }
      $stack = $stacks{$name};
  
      my $self = bless \%args, $class;
  
      no strict 'refs';
      no warnings 'redefine';
      if ($type eq 'sub') {
          push @$stack, [$type => $code];
          *$name = $code;
      } elsif ($type eq 'delete') {
          $code = sub {};
          $args{code} = $code;
          push @$stack, [$type, $code];
          delete_sub $name;
      } elsif ($type eq 'wrap') {
          weaken($self);
          my $wrapper = sub {
              my $ctx = {
                  package => $self->{package},
                  subname => $self->{subname},
                  extra   => $self->{extra},
                  orig    => __find_previous($stack, $self->{code}),
              };
              unshift @_, $ctx;
              goto &{$self->{code}};
          };
          push @$stack, [$type => $code => $wrapper];
          *$name = $wrapper;
      }
  
      $self;
  }
  
  sub DESTROY {
      my $self = shift;
  
      my $name  = "$self->{package}::$self->{subname}";
      my $stack = $stacks{$name};
      my $code  = $self->{code};
  
      for my $i (0..$#$stack) {
          if($stack->[$i][1] == $code) {
              if ($stack->[$i+1]) {
                  if ($stack->[$i+1][0] eq 'wrap' &&
                          ($i == 0 || $stack->[$i-1][0] eq 'delete')) {
                      my $p = $self->{patcher};
                      warn "Warning: unapplying patch to $name ".
                          "(applied in $p->[1]:$p->[2]) before a wrapping patch";
                  }
              }
  
              no strict 'refs';
              if ($i == @$stack-1) {
                  if ($i) {
                      no warnings 'redefine';
                      if ($stack->[$i-1][0] eq 'delete') {
                          delete_sub $name;
                      } else {
                          *$name = $stack->[$i-1][2] // $stack->[$i-1][1];
                      }
                  } else {
                      delete_sub $name;
                  }
              }
              splice @$stack, $i, 1;
              last;
          }
      }
  }
  
  1;
  
  
  __END__
  
MONKEY_PATCH_ACTION_HANDLE

$fatpacked{"PERLANCAR/File/HomeDir.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERLANCAR_FILE_HOMEDIR';
  package PERLANCAR::File::HomeDir;
  
  our $DATE = '2015-04-08'; 
  our $VERSION = '0.02'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter qw(import);
  our @EXPORT_OK = qw(
                         get_my_home_dir
                 );
  
  our $DIE_ON_FAILURE = 0;
  
  sub get_my_home_dir {
      if ($^O eq 'MSWin32') {
          return $ENV{HOME} if $ENV{HOME};
          return $ENV{USERPROFILE} if $ENV{USERPROFILE};
          return join($ENV{HOMEDRIVE}, "\\", $ENV{HOMEPATH})
              if $ENV{HOMEDRIVE} && $ENV{HOMEPATH};
      } else {
          return $ENV{HOME} if $ENV{HOME};
          my @pw = getpwuid($>);
          return $pw[7] if @pw;
      }
  
      if ($DIE_ON_FAILURE) {
          die "Can't get home directory";
      } else {
          return undef;
      }
  }
  
  1;
  
  __END__
  
PERLANCAR_FILE_HOMEDIR

$fatpacked{"Params/Util.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PARAMS_UTIL';
  package Params::Util;
  
  
  use 5.00503;
  use strict;
  require overload;
  require Exporter;
  require Scalar::Util;
  require DynaLoader;
  
  use vars qw{$VERSION @ISA @EXPORT_OK %EXPORT_TAGS};
  
  $VERSION   = '1.07';
  @ISA       = qw{
  	Exporter
  	DynaLoader
  };
  @EXPORT_OK = qw{
  	_STRING     _IDENTIFIER
  	_CLASS      _CLASSISA   _SUBCLASS  _DRIVER  _CLASSDOES
  	_NUMBER     _POSINT     _NONNEGINT
  	_SCALAR     _SCALAR0
  	_ARRAY      _ARRAY0     _ARRAYLIKE
  	_HASH       _HASH0      _HASHLIKE
  	_CODE       _CODELIKE
  	_INVOCANT   _REGEX      _INSTANCE  _INSTANCEDOES
  	_SET        _SET0
  	_HANDLE
  };
  %EXPORT_TAGS = ( ALL => \@EXPORT_OK );
  
  eval {
  	local $ENV{PERL_DL_NONLAZY} = 0 if $ENV{PERL_DL_NONLAZY};
  	bootstrap Params::Util $VERSION;
  	1;
  } unless $ENV{PERL_PARAMS_UTIL_PP};
  
  my $SU = eval "$Scalar::Util::VERSION" || 0;
  if ( $SU >= 1.18 ) { 
  	Scalar::Util->import('looks_like_number');
  } else {
  	eval <<'END_PERL';
  sub looks_like_number {
  	local $_ = shift;
  
  	# checks from perlfaq4
  	return 0 if !defined($_);
  	if (ref($_)) {
  		return overload::Overloaded($_) ? defined(0 + $_) : 0;
  	}
  	return 1 if (/^[+-]?[0-9]+$/); # is a +/- integer
  	return 1 if (/^([+-]?)(?=[0-9]|\.[0-9])[0-9]*(\.[0-9]*)?([Ee]([+-]?[0-9]+))?$/); # a C float
  	return 1 if ($] >= 5.008 and /^(Inf(inity)?|NaN)$/i) or ($] >= 5.006001 and /^Inf$/i);
  
  	0;
  }
  END_PERL
  }
  
  
  
  
  
  
  
  eval <<'END_PERL' unless defined &_STRING;
  sub _STRING ($) {
  	(defined $_[0] and ! ref $_[0] and length($_[0])) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_IDENTIFIER;
  sub _IDENTIFIER ($) {
  	(defined $_[0] and ! ref $_[0] and $_[0] =~ m/^[^\W\d]\w*\z/s) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_CLASS;
  sub _CLASS ($) {
  	(defined $_[0] and ! ref $_[0] and $_[0] =~ m/^[^\W\d]\w*(?:::\w+)*\z/s) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_CLASSISA;
  sub _CLASSISA ($$) {
  	(defined $_[0] and ! ref $_[0] and $_[0] =~ m/^[^\W\d]\w*(?:::\w+)*\z/s and $_[0]->isa($_[1])) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_CLASSDOES;
  sub _CLASSDOES ($$) {
  	(defined $_[0] and ! ref $_[0] and $_[0] =~ m/^[^\W\d]\w*(?:::\w+)*\z/s and $_[0]->DOES($_[1])) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_SUBCLASS;
  sub _SUBCLASS ($$) {
  	(defined $_[0] and ! ref $_[0] and $_[0] =~ m/^[^\W\d]\w*(?:::\w+)*\z/s and $_[0] ne $_[1] and $_[0]->isa($_[1])) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_NUMBER;
  sub _NUMBER ($) {
  	( defined $_[0] and ! ref $_[0] and looks_like_number($_[0]) )
  	? $_[0]
  	: undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_POSINT;
  sub _POSINT ($) {
  	(defined $_[0] and ! ref $_[0] and $_[0] =~ m/^[1-9]\d*$/) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_NONNEGINT;
  sub _NONNEGINT ($) {
  	(defined $_[0] and ! ref $_[0] and $_[0] =~ m/^(?:0|[1-9]\d*)$/) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_SCALAR;
  sub _SCALAR ($) {
  	(ref $_[0] eq 'SCALAR' and defined ${$_[0]} and ${$_[0]} ne '') ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_SCALAR0;
  sub _SCALAR0 ($) {
  	ref $_[0] eq 'SCALAR' ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_ARRAY;
  sub _ARRAY ($) {
  	(ref $_[0] eq 'ARRAY' and @{$_[0]}) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_ARRAY0;
  sub _ARRAY0 ($) {
  	ref $_[0] eq 'ARRAY' ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_ARRAYLIKE;
  sub _ARRAYLIKE {
  	(defined $_[0] and ref $_[0] and (
  		(Scalar::Util::reftype($_[0]) eq 'ARRAY')
  		or
  		overload::Method($_[0], '@{}')
  	)) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_HASH;
  sub _HASH ($) {
  	(ref $_[0] eq 'HASH' and scalar %{$_[0]}) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_HASH0;
  sub _HASH0 ($) {
  	ref $_[0] eq 'HASH' ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_HASHLIKE;
  sub _HASHLIKE {
  	(defined $_[0] and ref $_[0] and (
  		(Scalar::Util::reftype($_[0]) eq 'HASH')
  		or
  		overload::Method($_[0], '%{}')
  	)) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_CODE;
  sub _CODE ($) {
  	ref $_[0] eq 'CODE' ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_CODELIKE;
  sub _CODELIKE($) {
  	(
  		(Scalar::Util::reftype($_[0])||'') eq 'CODE'
  		or
  		Scalar::Util::blessed($_[0]) and overload::Method($_[0],'&{}')
  	)
  	? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_INVOCANT;
  sub _INVOCANT($) {
  	(defined $_[0] and
  		(defined Scalar::Util::blessed($_[0])
  		or      
  		# We used to check for stash definedness, but any class-like name is a
  		# valid invocant for UNIVERSAL methods, so we stopped. -- rjbs, 2006-07-02
  		Params::Util::_CLASS($_[0]))
  	) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_INSTANCE;
  sub _INSTANCE ($$) {
  	(Scalar::Util::blessed($_[0]) and $_[0]->isa($_[1])) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_INSTANCEDOES;
  sub _INSTANCEDOES ($$) {
  	(Scalar::Util::blessed($_[0]) and $_[0]->DOES($_[1])) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_REGEX;
  sub _REGEX ($) {
  	(defined $_[0] and 'Regexp' eq ref($_[0])) ? $_[0] : undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_SET;
  sub _SET ($$) {
  	my $set = shift;
  	_ARRAY($set) or return undef;
  	foreach my $item ( @$set ) {
  		_INSTANCE($item,$_[0]) or return undef;
  	}
  	$set;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_SET0;
  sub _SET0 ($$) {
  	my $set = shift;
  	_ARRAY0($set) or return undef;
  	foreach my $item ( @$set ) {
  		_INSTANCE($item,$_[0]) or return undef;
  	}
  	$set;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_HANDLE;
  sub _HANDLE {
  	my $it = shift;
  
  	# It has to be defined, of course
  	unless ( defined $it ) {
  		return undef;
  	}
  
  	# Normal globs are considered to be file handles
  	if ( ref $it eq 'GLOB' ) {
  		return $it;
  	}
  
  	# Check for a normal tied filehandle
  	# Side Note: 5.5.4's tied() and can() doesn't like getting undef
  	if ( tied($it) and tied($it)->can('TIEHANDLE') ) {
  		return $it;
  	}
  
  	# There are no other non-object handles that we support
  	unless ( Scalar::Util::blessed($it) ) {
  		return undef;
  	}
  
  	# Check for a common base classes for conventional IO::Handle object
  	if ( $it->isa('IO::Handle') ) {
  		return $it;
  	}
  
  
  	# Check for tied file handles using Tie::Handle
  	if ( $it->isa('Tie::Handle') ) {
  		return $it;
  	}
  
  	# IO::Scalar is not a proper seekable, but it is valid is a
  	# regular file handle
  	if ( $it->isa('IO::Scalar') ) {
  		return $it;
  	}
  
  	# Yet another special case for IO::String, which refuses (for now
  	# anyway) to become a subclass of IO::Handle.
  	if ( $it->isa('IO::String') ) {
  		return $it;
  	}
  
  	# This is not any sort of object we know about
  	return undef;
  }
  END_PERL
  
  
  eval <<'END_PERL' unless defined &_DRIVER;
  sub _DRIVER ($$) {
  	(defined _CLASS($_[0]) and eval "require $_[0];" and ! $@ and $_[0]->isa($_[1]) and $_[0] ne $_[1]) ? $_[0] : undef;
  }
  END_PERL
  
  1;
  
PARAMS_UTIL

$fatpacked{"Perinci/Access/Lite.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_ACCESS_LITE';
  package Perinci::Access::Lite;
  
  our $DATE = '2015-12-17'; 
  our $VERSION = '0.12'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Perinci::AccessUtil qw(strip_riap_stuffs_from_res);
  
  sub new {
      my ($class, %args) = @_;
      $args{riap_version} //= 1.1;
      bless \%args, $class;
  }
  
  sub __package_exists {
      no strict 'refs';
  
      my $pkg = shift;
  
      return unless $pkg =~ /\A\w+(::\w+)*\z/;
      if ($pkg =~ s/::(\w+)\z//) {
          return !!${$pkg . "::"}{$1 . "::"};
      } else {
          return !!$::{$pkg . "::"};
      }
  }
  
  sub request {
      no strict 'refs';
  
      my ($self, $action, $url, $extra) = @_;
  
  
      $extra //= {};
  
      my $v = $extra->{v} // 1.1;
      if ($v ne '1.1' && $v ne '1.2') {
          return [501, "Riap protocol not supported, must be 1.1 or 1.2"];
      }
  
      my $res;
      if ($url =~ m!\A(?:pl:)?/(\w+(?:/\w+)*)/(\w*)\z!) {
          my ($mod_uripath, $func) = ($1, $2);
          (my $pkg = $mod_uripath) =~ s!/!::!g;
          my $mod_pm = "$mod_uripath.pm";
  
          my $pkg_exists;
  
        LOAD:
          {
              last if exists $INC{$mod_pm};
              $pkg_exists = __package_exists($pkg);
              last LOAD if $pkg =~ /\A(main)\z/;
              last if $pkg_exists && defined(${"$pkg\::VERSION"});
              eval { require $mod_pm };
              return [500, "Can't load module $pkg: $@"] if $@;
          }
  
          if ($action eq 'list') {
              return [501, "Action 'list' not implemented for ".
                          "non-package entities"]
                  if length($func);
              no strict 'refs';
              my $spec = \%{"$pkg\::SPEC"};
              return [200, "OK (list)", [grep {/\A\w+\z/} sort keys %$spec]];
          } elsif ($action eq 'info') {
              my $data = {
                  uri => "$mod_uripath/$func",
                  type => (!length($func) ? "package" :
                               $func =~ /\A\w+\z/ ? "function" :
                                   $func =~ /\A[\@\$\%]/ ? "variable" :
                                       "?"),
              };
              return [200, "OK (info)", $data];
          } elsif ($action eq 'meta' || $action eq 'call') {
              return [501, "Action 'call' not implemented for package entity"]
                  if !length($func) && $action eq 'call';
              my $meta;
              {
                  no strict 'refs';
                  if (length $func) {
                      $meta = ${"$pkg\::SPEC"}{$func}
                          or return [
                              500, "No metadata for '$url' (".
                                  ($pkg_exists ? "package '$pkg' exists, perhaps you mentioned '$pkg' somewhere without actually loading the module, or perhaps '$func' is a typo?" :
                                       "package '$pkg' doesn't exist, perhaps '$mod_uripath' or '$func' is a typo?") .
                                  ")"];
                  } else {
                      $meta = ${"$pkg\::SPEC"}{':package'} // {v=>1.1};
                  }
                  $meta->{entity_v}    //= ${"$pkg\::VERSION"};
                  $meta->{entity_date} //= ${"$pkg\::DATE"};
              }
  
              require Perinci::Sub::Normalize;
              $meta = Perinci::Sub::Normalize::normalize_function_metadata($meta);
              if ($action eq 'meta') {
                  $meta->{_orig_args_as} = $meta->{args_as};
                  $meta->{args_as} = 'hash';
                  $meta->{_orig_result_naked} = $meta->{result_naked};
                  $meta->{result_naked} = 0;
                  return [200, "OK ($action)", $meta];
              }
  
              my $args = { %{$extra->{args} // {}} }; 
              if ($meta->{features} && $meta->{features}{progress}) {
                  require Progress::Any;
                  $args->{-progress} = Progress::Any->get_indicator;
              }
  
              my $aa = $meta->{args_as} // 'hash';
              my @args;
              if ($aa =~ /array/) {
                  require Perinci::Sub::ConvertArgs::Array;
                  my $convres = Perinci::Sub::ConvertArgs::Array::convert_args_to_array(
                      args => $args, meta => $meta,
                  );
                  return $convres unless $convres->[0] == 200;
                  if ($aa =~ /ref/) {
                      @args = ($convres->[2]);
                  } else {
                      @args = @{ $convres->[2] };
                  }
              } elsif ($aa eq 'hashref') {
                  @args = ({ %$args });
              } else {
                  @args = %$args;
              }
  
              {
                  no strict 'refs';
                  $res = &{"$pkg\::$func"}(@args);
              }
  
              if ($meta->{result_naked}) {
                  $res = [200, "OK (envelope added by ".__PACKAGE__.")", $res];
              }
  
              if (defined $res->[2]) {
                  if ($meta->{result} && $meta->{result}{schema} &&
                          $meta->{result}{schema}[0] eq 'buf') {
                      $res->[3]{'x.hint.result_binary'} = 1;
                  }
              }
  
          } else {
              return [501, "Unknown/unsupported action '$action'"];
          }
      } elsif ($url =~ m!\Ahttps?:/(/?)!i) {
          my $is_unix = !$1;
          my $ht;
          require JSON;
          state $json = JSON->new->allow_nonref;
          if ($is_unix) {
              require HTTP::Tiny::UNIX;
              $ht = HTTP::Tiny::UNIX->new;
          } else {
              require HTTP::Tiny;
              $ht = HTTP::Tiny->new;
          }
          my %headers = (
              "x-riap-v" => $self->{riap_version},
              "x-riap-action" => $action,
              "x-riap-fmt" => "json",
              "content-type" => "application/json",
          );
          my $args = $extra->{args} // {};
          for (keys %$extra) {
              next if /\Aargs\z/;
              $headers{"x-riap-$_"} = $extra->{$_};
          }
          my $htres = $ht->post(
              $url, {
                  headers => \%headers,
                  content => $json->encode($args),
              });
          return [500, "Network error: $htres->{status} - $htres->{reason}"]
              if $htres->{status} != 200;
          return [500, "Server error: didn't return JSON (".$htres->{headers}{'content-type'}.")"]
              unless $htres->{headers}{'content-type'} eq 'application/json';
          return [500, "Server error: didn't return Riap 1.1 response (".$htres->{headers}{'x-riap-v'}.")"]
              unless $htres->{headers}{'x-riap-v'} =~ /\A1\.1(\.\d+)?\z/;
          $res = $json->decode($htres->{content});
      } else {
          return [501, "Unsupported scheme or bad URL '$url'"];
      }
  
      strip_riap_stuffs_from_res($res);
  }
  
  1;
  
  __END__
  
PERINCI_ACCESS_LITE

$fatpacked{"Perinci/AccessUtil.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_ACCESSUTIL';
  package Perinci::AccessUtil;
  
  our $DATE = '2015-09-06'; 
  our $VERSION = '0.06'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use MIME::Base64;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(insert_riap_stuffs_to_res
                      strip_riap_stuffs_from_res
                      decode_args_in_riap_req);
  
  sub insert_riap_stuffs_to_res {
      my ($res, $def_ver, $nmeta, $encode) = @_;
  
      $res->[3]{'riap.v'} //= $def_ver // 1.1;
      if ($res->[3]{'riap.v'} >= 1.2) {
          {
              last unless $encode // 1;
              last if $res->[3]{'riap.result_encoding'};
              if ($nmeta) {
                  last unless $nmeta->{result}{schema} &&
                      $nmeta->{result}{schema}[0] eq 'buf';
              }
              last unless defined($res->[2]) && !ref($res->[2]) &&
                  $res->[2] =~ /[^\x20-\x7f]/;
              $res->[2] = encode_base64($res->[2], "");
              $res->[3]{'riap.result_encoding'} = 'base64';
          }
      }
      $res;
  }
  
  sub strip_riap_stuffs_from_res {
      my $res = shift;
  
      my $ver = $res->[3]{'riap.v'} // 1.1;
      return [501, "Riap version returned by server ($ver) is not supported, ".
                  "only recognize v1.1 and v1.2"]
          unless $ver == 1.1 || $ver == 1.2;
  
      if ($ver >= 1.2) {
          for my $k (keys %{$res->[3]}) {
              next unless $k =~ /\Ariap\./;
              my $val = $res->[3]{$k};
              if ($k eq 'riap.v') {
              } elsif ($k eq 'riap.result_encoding') {
                  return [501, "Unknown result_encoding returned by server ".
                              "($val), only base64 is supported"]
                      unless $val eq 'base64';
                  $res->[2] = decode_base64($res->[2]//'');
              } else {
                  return [501, "Unknown Riap attribute in result metadata ".
                              "returned by server ($k)"];
              }
              delete $res->[3]{$k};
          }
      }
  
      $res;
  }
  
  sub decode_args_in_riap_req {
      my $req = shift;
  
      my $v = $req->{v} // 1.1;
      if ($v >= 1.2) {
          if ($req->{args}) {
              my $args = $req->{args};
              for (keys %$args) {
                  next unless /\A(.+):base64\z/;
                  $args->{$1} = decode_base64($args->{$_});
                  delete $args->{$_};
              }
          }
      }
      $req;
  }
  
  1;
  
  __END__
  
PERINCI_ACCESSUTIL

$fatpacked{"Perinci/CmdLine/Base.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_CMDLINE_BASE';
  package Perinci::CmdLine::Base;
  
  our $DATE = '2016-01-14'; 
  our $VERSION = '1.45'; 
  
  use 5.010001;
  use strict;
  use warnings;
  use Log::Any::IfLOG '$log';
  
  
  BEGIN {
      if ($INC{'Perinci/CmdLine/Classic.pm'}) {
          require Moo; Moo->import;
      } else {
          require Mo; Mo->import(qw(build default));
      }
  }
  
  has actions => (is=>'rw');
  has common_opts => (is=>'rw');
  has completion => (is=>'rw');
  has default_subcommand => (is=>'rw');
  has get_subcommand_from_arg => (is=>'rw', default=>1);
  has description => (is=>'rw');
  has exit => (is=>'rw', default=>1);
  has formats => (is=>'rw');
  has pass_cmdline_object => (is=>'rw', default=>0);
  has per_arg_json => (is=>'rw');
  has per_arg_yaml => (is=>'rw');
  has program_name => (
      is=>'rw',
      default => sub {
          my $pn = $ENV{PERINCI_CMDLINE_PROGRAM_NAME};
          if (!defined($pn)) {
              $pn = $0; $pn =~ s!.+/!!;
          }
          $pn;
      });
  has riap_version => (is=>'rw', default=>1.1);
  has riap_client => (is=>'rw');
  has riap_client_args => (is=>'rw');
  has subcommands => (is=>'rw');
  has summary => (is=>'rw');
  has tags => (is=>'rw');
  has url => (is=>'rw');
  
  has read_env => (is=>'rw', default=>1);
  has env_name => (
      is => 'rw',
      lazy => 1,
      default => sub {
          my $self = shift;
          __default_env_name($self->program_name);
      },
  );
  
  has read_config => (is=>'rw', default=>1);
  has config_filename => (is=>'rw');
  has config_dirs => (
      is=>'rw',
      default => sub {
          require Perinci::CmdLine::Util::Config;
          Perinci::CmdLine::Util::Config::get_default_config_dirs();
      },
  );
  
  has cleanser => (
      is => 'rw',
      lazy => 1,
      default => sub {
          require Data::Clean::JSON;
          Data::Clean::JSON->get_cleanser;
      },
  );
  
  has extra_urls_for_version => (is=>'rw');
  
  has skip_format => (is=>'rw');
  
  
  
  our %copts = (
  
      version => {
          getopt  => "version|v",
          summary => "Display program's version and exit",
          usage   => "--version (or -v)",
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{action} = 'version';
              $r->{skip_parse_subcommand_argv} = 1;
          },
      },
  
      help => {
          getopt  => 'help|h|?',
          summary => 'Display help message and exit',
          usage   => "--help (or -h, -?)",
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{action} = 'help';
              $r->{skip_parse_subcommand_argv} = 1;
          },
          order => 0, 
      },
  
      format => {
          getopt  => 'format=s',
          summary => 'Choose output format, e.g. json, text',
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{format} = $val;
          },
          default => undef,
          tags => ['category:output'],
          is_settable_via_config => 1,
      },
      json => {
          getopt  => 'json',
          summary => 'Set output format to json',
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{format} = (-t STDOUT) ? 'json-pretty' : 'json';
          },
          tags => ['category:output'],
      },
  
      naked_res => {
          getopt  => 'naked-res!',
          summary => 'When outputing as JSON, strip result envelope',
          'summary.alt.bool.not' => 'When outputing as JSON, add result envelope',
          description => <<'_',
  
  By default, when outputing as JSON, the full enveloped result is returned, e.g.:
  
      [200,"OK",[1,2,3],{"func.extra"=>4}]
  
  The reason is so you can get the status (1st element), status message (2nd
  element) as well as result metadata/extra result (4th element) instead of just
  the result (3rd element). However, sometimes you want just the result, e.g. when
  you want to pipe the result for more post-processing. In this case you can use
  `--naked-res` so you just get:
  
      [1,2,3]
  
  _
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{naked_res} = $val ? 1:0;
          },
          default => 0,
          tags => ['category:output'],
          is_settable_via_config => 1,
      },
  
      subcommands => {
          getopt  => 'subcommands',
          summary => 'List available subcommands',
          usage   => "--subcommands",
          show_in_usage => sub {
              my ($self, $r) = @_;
              !$r->{subcommand_name};
          },
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{action} = 'subcommands';
              $r->{skip_parse_subcommand_argv} = 1;
          },
      },
  
      cmd => {
          getopt  => "cmd=s",
          summary => 'Select subcommand',
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{subcommand_name} = $val;
              $r->{subcommand_name_from} = '--cmd';
          },
          completion => sub {
              require Complete::Util;
              my %args = @_;
              my $cmdline = $args{cmdline};
              Complete::Util::complete_array_elem(
                  array => [keys %{ $cmdline->list_subcommands }],
                  word  => $args{word},
                  ci    => 1,
              );
          },
      },
  
      config_path => {
          getopt  => 'config-path=s@',
          schema  => ['array*', of => 'str*'],
          'x.schema.element_entity' => 'filename',
          summary => 'Set path to configuration file',
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{config_paths} //= [];
              push @{ $r->{config_paths} }, $val;
          },
          tags => ['category:configuration'],
      },
      no_config => {
          getopt  => 'no-config',
          summary => 'Do not use any configuration file',
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{read_config} = 0;
          },
          tags => ['category:configuration'],
      },
      no_env => {
          getopt  => 'no-env',
          summary => 'Do not read environment for default options',
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{read_env} = 0;
          },
          tags => ['category:environment'],
      },
      config_profile => {
          getopt  => 'config-profile=s',
          summary => 'Set configuration profile to use',
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{config_profile} = $val;
          },
          completion => sub {
  
              my %args = @_;
              my $word    = $args{word} // '';
              my $cmdline = $args{cmdline};
              my $r       = $args{r};
  
              return undef unless $cmdline;
  
              {
                  $r->{read_config} = 1;
  
                  my $res = $cmdline->parse_argv($r);
              }
  
              return [] unless $r->{config};
  
              my @profiles;
              for my $section (keys %{$r->{config}}) {
                  my %keyvals;
                  for my $word (split /\s+/, ($section eq 'GLOBAL' ? '' : $section)) {
                      if ($word =~ /(.+)=(.*)/) {
                          $keyvals{$1} = $2;
                      } else {
                          $keyvals{subcommand} = $word;
                      }
                  }
                  if (defined(my $p = $keyvals{profile})) {
                      push @profiles, $p unless grep {$_ eq $p} @profiles;
                  }
              }
  
              require Complete::Util;
              Complete::Util::complete_array_elem(
                  array=>\@profiles, word=>$word, ci=>1);
          },
          tags => ['category:configuration'],
      },
  
      log_level => {
          getopt  => 'log-level=s',
          summary => 'Set log level (note: you also need to set LOG=1 to enable logging)',
          schema  => ['str*' => in => [
              qw/trace debug info warn warning error fatal/]],
          handler => sub {
              my ($go, $val, $r) = @_;
              $r->{log_level} = $val;
              $ENV{LOG_LEVEL} = $val;
          },
          is_settable_via_config => 1,
          tags => ['category:logging'],
      },
      trace => {
          getopt  => "trace",
          summary => "Set log level to trace (note: you also need to set LOG=1 to enable logging, or use TRACE=1)",
          handler => sub {
              my ($go, $val, $r) = @_;
              $ENV{TRACE} = 1;
          },
          tags => ['category:logging'],
      },
      debug => {
          getopt  => "debug",
          summary => "Set log level to debug (note: you also need to set LOG=1 to enable logging, or use DEBUG=1)",
          handler => sub {
              my ($go, $val, $r) = @_;
              $ENV{DEBUG} = 1;
          },
          tags => ['category:logging'],
      },
      verbose => {
          getopt  => "verbose",
          summary => "Set log level to info (note: you also need to set LOG=1 to enable logging, or use VERBOSE=1)",
          handler => sub {
              my ($go, $val, $r) = @_;
              $ENV{VERBOSE} = 1;
              $r->{_help_verbose} = 1;
          },
          tags => ['category:logging'],
      },
      quiet => {
          getopt  => "quiet",
          summary => "Set log level to quiet (note: you also need to set LOG=1 to enable logging, or use QUIET=1)",
          handler => sub {
              my ($go, $val, $r) = @_;
              $ENV{QUIET} = 1;
          },
          tags => ['category:logging'],
      },
  
  );
  
  sub __default_env_name {
      my ($prog) = @_;
  
      for ($prog) {
          $_ //= "PROG"; 
          $_ = uc($_);
          s/[^A-Z0-9]+/_/g;
      }
      "${prog}_OPT";
  }
  
  sub hook_before_run {}
  
  sub hook_before_read_config_file {}
  
  sub hook_after_read_config_file {}
  
  sub hook_before_action {}
  
  sub hook_after_action {}
  
  sub get_meta {
      my ($self, $r, $url) = @_;
  
      my $res = $self->riap_client->request(meta => $url);
      die $res unless $res->[0] == 200;
      my $meta = $res->[2];
      $r->{meta} = $meta;
      $log->tracef("[pericmd] Running hook_after_get_meta ...");
      $self->hook_after_get_meta($r);
      $meta;
  }
  
  sub get_program_and_subcommand_name {
      my ($self, $r) = @_;
      my $res = ($self->program_name // "") . " " .
          ($r->{subcommand_name} // "");
      $res =~ s/\s+$//;
      $res;
  }
  
  sub get_subcommand_data {
      my ($self, $name) = @_;
  
      my $scs = $self->subcommands;
      return undef unless $scs;
  
      if (ref($scs) eq 'CODE') {
          return $scs->($self, name=>$name);
      } else {
          return $scs->{$name};
      }
  }
  
  sub list_subcommands {
      my ($self) = @_;
      return $self->{_cache_subcommands} if $self->{_cache_subcommands};
  
      my $scs = $self->subcommands;
      my $res;
      if ($scs) {
          if (ref($scs) eq 'CODE') {
              $scs = $scs->($self);
              die [500, "BUG: Subcommands code didn't return a hashref"]
                  unless ref($scs) eq 'HASH';
          }
          $res = $scs;
      } else {
          $res = {};
      }
      $self->{_cache_subcommands} = $res;
      $res;
  }
  
  sub status2exitcode {
      my ($self, $status) = @_;
      return 0 if $status =~ /^2..|304/;
      $status - 300;
  }
  
  sub _detect_completion {
      my ($self, $r) = @_;
  
      if ($ENV{COMP_SHELL}) {
          $r->{shell} = $ENV{COMP_SHELL};
          return 1;
      } elsif ($ENV{COMP_LINE}) {
          $r->{shell} = 'bash';
          return 1;
      } elsif ($ENV{COMMAND_LINE}) {
          $r->{shell} = 'tcsh';
          return 1;
      }
  
      $r->{shell} //= 'bash';
      0;
  }
  
  sub _read_env {
      my ($self, $r) = @_;
  
      return [] unless $self->read_env;
      my $env_name = $self->env_name;
      my $env = $ENV{$env_name};
      $log->tracef("[pericmd] Checking env %s: %s", $env_name, $env);
      return [] unless defined $env;
  
  
      my $words;
      if ($r->{shell} eq 'bash') {
          require Complete::Bash;
          ($words, undef) = @{ Complete::Bash::parse_cmdline($env, 0) };
      } elsif ($r->{shell} eq 'fish') {
          require Complete::Fish;
          ($words, undef) = @{ Complete::Fish::parse_cmdline($env) };
      } elsif ($r->{shell} eq 'tcsh') {
          require Complete::Tcsh;
          ($words, undef) = @{ Complete::Tcsh::parse_cmdline($env) };
      } elsif ($r->{shell} eq 'zsh') {
          require Complete::Zsh;
          ($words, undef) = @{ Complete::Zsh::parse_cmdline($env) };
      } else {
          die "Unsupported shell '$r->{shell}'";
      }
      $log->tracef("[pericmd] Words from env: %s", $words);
      $words;
  }
  
  sub do_completion {
      my ($self, $r) = @_;
  
      local $r->{in_completion} = 1;
  
      my ($words, $cword);
      if ($r->{shell} eq 'bash') {
          require Complete::Bash;
          ($words, $cword) = @{ Complete::Bash::parse_cmdline(undef, undef, {truncate_current_word=>1}) };
      } elsif ($r->{shell} eq 'fish') {
          require Complete::Fish;
          ($words, $cword) = @{ Complete::Fish::parse_cmdline() };
      } elsif ($r->{shell} eq 'tcsh') {
          require Complete::Tcsh;
          ($words, $cword) = @{ Complete::Tcsh::parse_cmdline() };
      } elsif ($r->{shell} eq 'zsh') {
          require Complete::Zsh;
          ($words, $cword) = @{ Complete::Zsh::parse_cmdline() };
      } else {
          die "Unsupported shell '$r->{shell}'";
      }
  
      shift @$words; $cword--; 
  
      @ARGV = @$words;
  
      $self->_parse_argv1($r);
  
      if ($r->{read_env}) {
          my $env_words = $self->_read_env($r);
          unshift @ARGV, @$env_words;
          $cword += @$env_words;
      }
  
  
      $r->{format} = 'text';
  
      my $scd = $r->{subcommand_data};
      my $meta = $self->get_meta($r, $scd->{url} // $self->{url});
  
      my $subcommand_name_from = $r->{subcommand_name_from} // '';
  
      require Perinci::Sub::Complete;
      my $compres = Perinci::Sub::Complete::complete_cli_arg(
          meta            => $meta, 
          words           => $words,
          cword           => $cword,
          common_opts     => $self->common_opts,
          riap_server_url => $scd->{url},
          riap_uri        => undef,
          riap_client     => $self->riap_client,
          extras          => {r=>$r, cmdline=>$self},
          func_arg_starts_at => ($subcommand_name_from eq 'arg' ? 1:0),
          completion      => sub {
              my %args = @_;
              my $type = $args{type};
  
              if ($self->completion) {
                  my $res = $self->completion(%args);
                  return $res if $res;
              }
              if ($self->subcommands &&
                      $subcommand_name_from ne '--cmd' &&
                           $type eq 'arg' && $args{argpos}==0) {
                  require Complete::Util;
                  return Complete::Util::complete_array_elem(
                      array => [keys %{ $self->list_subcommands }],
                      word  => $words->[$cword]);
              }
  
              return undef;
          },
      );
  
      my $formatted;
      if ($r->{shell} eq 'bash') {
          $formatted = Complete::Bash::format_completion(
              $compres, {word=>$words->[$cword]});
      } elsif ($r->{shell} eq 'fish') {
          $formatted = Complete::Fish::format_completion($compres);
      } elsif ($r->{shell} eq 'tcsh') {
          $formatted = Complete::Tcsh::format_completion($compres);
      } elsif ($r->{shell} eq 'zsh') {
          $formatted = Complete::Zsh::format_completion($compres);
      }
  
      [200, "OK", $formatted,
       {
           "func.words" => $words,
           "func.cword" => $cword,
           "cmdline.skip_format" => 1,
       }];
  }
  
  sub _read_config {
      require Perinci::CmdLine::Util::Config;
  
      my ($self, $r) = @_;
  
      $log->tracef("[pericmd] Finding config files ...");
      my $res = Perinci::CmdLine::Util::Config::read_config(
          config_paths     => $r->{config_paths},
          config_filename  => $self->config_filename,
          config_dirs      => $self->config_dirs,
          program_name     => $self->program_name,
      );
      die $res unless $res->[0] == 200;
      $r->{config} = $res->[2];
      $r->{read_config_files} = $res->[3]{'func.read_files'};
      $log->tracef("[pericmd] Read config files: %s",
                   $r->{'read_config_files'});
  }
  
  sub __min(@) {
      my $m = $_[0];
      for (@_) {
          $m = $_ if $_ < $m;
      }
      $m;
  }
  
  sub __editdist {
      my @a = split //, shift;
      my @b = split //, shift;
  
      my @d;
      $d[$_][0] = $_ for 0 .. @a;
      $d[0][$_] = $_ for 0 .. @b;
  
      for my $i (1 .. @a) {
          for my $j (1 .. @b) {
              $d[$i][$j] = (
                  $a[$i-1] eq $b[$j-1]
                      ? $d[$i-1][$j-1]
                      : 1 + __min(
                          $d[$i-1][$j],
                          $d[$i][$j-1],
                          $d[$i-1][$j-1]
                      )
                  );
          }
      }
  
      $d[@a][@b];
  }
  
  sub __uniq {
      my %seen = ();
      my $k;
      my $seen_undef;
      grep { defined $_ ? not $seen{ $k = $_ }++ : not $seen_undef++ } @_;
  }
  
  sub __find_similar_strings {
      my ($needle, $haystack, $cut) = @_;
  
      my $factor   = 1.5;
      my $max_dist = 4;
  
      my @res =
          map { $_->[0] }
          sort { $a->[1] <=> $b->[1] }
          grep { defined }
          map {
              my $el = $_;
              if ($cut && length($_) > length($needle)) {
                  $el = substr($el, 0, length($needle));
              }
              my $d = __editdist($el, $needle);
              my $max_distance = __min(
                  __min(length($el), length($needle))/$factor,
                  $max_dist,
              );
              ($d <= $max_distance) ? [$_, $d] : undef
          } @$haystack;
  
      $cut ? __uniq(@res) : @res;
  }
  
  sub __find_similar_go_opts {
      my ($opt, $go_spec) = @_;
  
      $opt =~ s/^--?//;
  
      my @ospecs0 = ref($go_spec) eq 'ARRAY' ?
          keys(%{ { @$go_spec } }) : keys(%$go_spec);
      my @ospecs;
      for my $o (@ospecs0) {
          $o =~ s/^--?//;
          my $is_neg = $o =~ /\!$/;
          $o =~ s/[=:].+|[?+!]$//;
          for (split /\|/, $o) {
              if ($is_neg && length($_) > 1) {
                  push @ospecs, $_, "no$_", "no-$_";
              } else {
                  push @ospecs, $_;
              }
          }
      }
  
      map { length($_) > 1 ? "--$_" : "-$_" }
          __find_similar_strings($opt, \@ospecs, "cut");
  }
  
  sub _parse_argv1 {
      my ($self, $r) = @_;
  
      my @go_spec;
      {
  
          require Getopt::Long;
          my $old_go_conf = Getopt::Long::Configure(
              'pass_through', 'no_ignore_case', 'bundling', 'no_auto_abbrev');
          my $co = $self->common_opts // {};
          for my $k (keys %$co) {
              push @go_spec, $co->{$k}{getopt} => sub {
                  my ($go, $val) = @_;
                  $co->{$k}{handler}->($go, $val, $r);
              };
          }
          Getopt::Long::GetOptions(@go_spec);
          Getopt::Long::Configure($old_go_conf);
      }
  
      {
          my $scn = $r->{subcommand_name};
          my $scn_from = $r->{subcommand_name_from};
          if (!defined($scn) && defined($self->{default_subcommand})) {
              if ($self->get_subcommand_from_arg == 1) {
                  $scn = $self->{default_subcommand};
                  $scn_from = 'default_subcommand';
              } elsif ($self->get_subcommand_from_arg == 2 && !@ARGV) {
                  $scn = $self->{default_subcommand};
                  $scn_from = 'default_subcommand';
              }
          }
          if (!defined($scn) && $self->{subcommands} && @ARGV) {
              if ($ARGV[0] =~ /\A-/) {
                  if ($r->{in_completion}) {
                      $scn = shift @ARGV;
                      $scn_from = 'arg';
                  } else {
                      my $suggestion = '';
                      my @similar = __find_similar_go_opts($ARGV[0], \@go_spec);
                      $suggestion = " (perhaps you meant ".
                          join("/", @similar)."?)" if @similar;
                      die [400, "Unknown option: $ARGV[0]".$suggestion];
                  }
              } else {
                  $scn = shift @ARGV;
                  $scn_from = 'arg';
              }
          }
  
          my $scd;
          if (defined $scn) {
              $scd = $self->get_subcommand_data($scn);
              unless ($r->{in_completion}) {
                  unless ($scd) {
                      my $suggestion = '';
                      my $scs = $self->subcommands;
                      if (ref($scs) eq 'HASH') {
                          my @similar =
                              __find_similar_strings($scn, [keys %$scs]);
                          $suggestion = " (perhaps you meant ".
                              join("/", @similar)."?)" if @similar;
                      }
                      die [500, "Unknown subcommand: $scn".$suggestion];
                  }
              }
          } elsif (!$r->{action} && $self->{subcommands}) {
              $r->{action} = 'help';
              $r->{skip_parse_subcommand_argv} = 1;
          } else {
              $scn = '';
              $scd = {
                  url => $self->url,
                  summary => $self->summary,
                  description => $self->description,
                  pass_cmdline_object => $self->pass_cmdline_object,
                  tags => $self->tags,
              };
          }
          $r->{subcommand_name} = $scn;
          $r->{subcommand_name_from} = $scn_from;
          $r->{subcommand_data} = $scd;
      }
  
      $r->{dry_run} = 1 if $ENV{DRY_RUN};
  
      $r->{_parse_argv1_done} = 1;
  }
  
  sub _parse_argv2 {
      require Perinci::CmdLine::Util::Config;
  
      my ($self, $r) = @_;
  
      my %args;
  
      if ($r->{read_env}) {
          my $env_words = $self->_read_env($r);
          unshift @ARGV, @$env_words;
      }
  
      if ($r->{skip_parse_subcommand_argv}) {
          return [200, "OK (subcommand options parsing skipped)"];
      } else {
          my $scd = $r->{subcommand_data};
          my $meta = $self->get_meta($r, $scd->{url});
  
          if ($scd->{args}) {
              $args{$_} = $scd->{args}{$_} for keys %{ $scd->{args} };
          }
  
          if ($r->{read_config}) {
  
              $log->tracef("[pericmd] Running hook_before_read_config_file ...");
              $self->hook_before_read_config_file($r);
  
              $self->_read_config($r);
  
              $log->tracef("[pericmd] Running hook_after_read_config_file ...");
              $self->hook_after_read_config_file($r);
  
              my $res = Perinci::CmdLine::Util::Config::get_args_from_config(
                  r                  => $r,
                  config             => $r->{config},
                  args               => \%args,
                  subcommand_name    => $r->{subcommand_name},
                  config_profile     => $r->{config_profile},
                  common_opts        => $self->common_opts,
                  meta               => $meta,
                  meta_is_normalized => 1,
              );
              die $res unless $res->[0] == 200;
              $log->tracef("[pericmd] args after reading config files: %s",
                           \%args);
              my $found = $res->[3]{'func.found'};
              if (defined($r->{config_profile}) && !$found &&
                      defined($r->{read_config_files}) &&
                          @{$r->{read_config_files}} &&
                              !$r->{ignore_missing_config_profile_section}) {
                  return [412, "Profile '$r->{config_profile}' not found ".
                              "in configuration file"];
              }
  
          }
  
  
          my $copts = $self->common_opts;
          my %old_handlers;
          for (keys %$copts) {
              my $h = $copts->{$_}{handler};
              $copts->{$_}{handler} = sub {
                  my ($go, $val) = @_;
                  $h->($go, $val, $r);
              };
              $old_handlers{$_} = $h;
          }
  
          my $has_cmdline_src;
          for my $ak (keys %{$meta->{args} // {}}) {
              my $av = $meta->{args}{$ak};
              if ($av->{cmdline_src}) {
                  $has_cmdline_src = 1;
                  last;
              }
              if ($av->{stream}) {
                  unless ($av->{cmdline_src} &&
                              $av->{cmdline_src} =~
                                  /\A(stdin|file|stdin_or_files?)\z/) {
                      die "BUG: stream argument '$ak' needs to have cmdline_src ".
                          "set to stdin, file, stdin_or_file, or stdin_or_files";
                  }
              }
          }
  
          require Perinci::Sub::GetArgs::Argv;
          my $ga_res = Perinci::Sub::GetArgs::Argv::get_args_from_argv(
              argv                => \@ARGV,
              args                => \%args,
              meta                => $meta,
              meta_is_normalized  => 1,
              allow_extra_elems   => $has_cmdline_src ? 1:0,
              per_arg_json        => $self->{per_arg_json},
              per_arg_yaml        => $self->{per_arg_yaml},
              common_opts         => $copts,
              strict              => $r->{in_completion} ? 0:1,
              on_missing_required_args => sub {
                  my %a = @_;
  
                  my ($an, $aa, $as) = ($a{arg}, $a{args}, $a{spec});
                  my $src = $as->{cmdline_src};
                  if ($src && $as->{req}) {
                      return 1;
                  } else {
                      return 0;
                  }
              },
          );
  
          return $ga_res unless $ga_res->[0] == 200;
  
          require Perinci::Sub::CoerceArgs;
          my $coerce_res = Perinci::Sub::CoerceArgs::coerce_args(
              meta                => $meta,
              meta_is_normalized  => 1,
              args                => $ga_res->[2],
          );
  
          return $coerce_res unless $coerce_res->[0] == 200;
  
          for (keys %$copts) {
              $copts->{$_}{handler} = $old_handlers{$_};
          }
  
          return $ga_res;
      }
  }
  
  sub parse_argv {
      my ($self, $r) = @_;
  
      $log->tracef("[pericmd] Parsing \@ARGV: %s", \@ARGV);
  
  
      $self->_parse_argv1($r) unless $r->{_parse_argv1_done};
      $self->_parse_argv2($r);
  }
  
  sub __gen_iter {
      require Data::Sah::Util::Type;
  
      my ($fh, $sch, $argname) = @_;
      my $type = Data::Sah::Util::Type::get_type($sch);
  
      if (Data::Sah::Util::Type::is_simple($sch)) {
          return sub {
              local $/ = \(64*1024) if $type eq 'buf';
  
              state $eof;
              return undef if $eof;
              my $l = <$fh>;
              unless (defined $l) {
                  $eof++; return undef;
              }
              $l;
          };
      } else {
          require JSON;
          state $json = JSON->new->allow_nonref;
          my $i = -1;
          return sub {
              state $eof;
              return undef if $eof;
              $i++;
              my $l = <$fh>;
              unless (defined $l) {
                  $eof++; return undef;
              }
              eval { $l = $json->decode($l) };
              if ($@) {
                  die "Invalid JSON in stream argument '$argname' record #$i: $@";
              }
              $l;
          };
      }
  }
  
  sub parse_cmdline_src {
      my ($self, $r) = @_;
  
      my $action = $r->{action};
      my $meta   = $r->{meta};
  
      my $url = $r->{subcommand_data}{url} // $self->{url} // '';
      my $is_network = $url =~ m!^(https?|riap[^:]+):!;
  
      if ($action eq 'call') {
          my $args_p = $meta->{args} // {};
          my $stdin_seen;
          for my $an (sort {
              my $csa  = $args_p->{$a}{cmdline_src};
              my $csb  = $args_p->{$b}{cmdline_src};
              my $posa = $args_p->{$a}{pos} // 9999;
              my $posb = $args_p->{$b}{pos} // 9999;
  
              (
                  !$csa || !$csb ? 0 :
                      $csa eq 'stdin_line' && $csb eq 'stdin_line' ? 0 :
                      $csa eq 'stdin_line' && $csb =~ /^(stdin|stdin_or_files?)/ ? -1 :
                      $csb eq 'stdin_line' && $csa =~ /^(stdin|stdin_or_files?)/ ? 1 : 0
              )
              ||
  
              ($posa <=> $posb)
  
              ||
              ($a cmp $b)
          } keys %$args_p) {
              my $as = $args_p->{$an};
              my $src = $as->{cmdline_src};
              my $type = $as->{schema}[0]
                  or die "BUG: No schema is defined for arg '$an'";
              my $do_stream = $as->{stream} && $url !~ /^https?:/;
              if ($src) {
                  die [531,
                       "Invalid 'cmdline_src' value for argument '$an': $src"]
                      unless $src =~ /\A(stdin|file|stdin_or_files?|stdin_line)\z/;
                  die [531,
                       "Sorry, argument '$an' is set cmdline_src=$src, but type ".
                           "is not str/buf/array, only those are supported now"]
                      unless $do_stream || $type =~ /\A(str|buf|array)\z/;
                  if ($src =~ /\A(stdin|stdin_or_files?)\z/) {
                      die [531, "Only one argument can be specified ".
                               "cmdline_src stdin/stdin_or_file/stdin_or_files"]
                          if $stdin_seen++;
                  }
                  my $is_ary = $type eq 'array';
                  if ($src eq 'stdin_line' && !exists($r->{args}{$an})) {
                      require Perinci::Object;
                      my $term_readkey_available = eval { require Term::ReadKey; 1 };
                      my $prompt = Perinci::Object::rimeta($as)->langprop('cmdline_prompt') //
                          sprintf($self->default_prompt_template, $an);
                      print $prompt;
                      my $iactive = (-t STDOUT);
                      Term::ReadKey::ReadMode('noecho')
                            if $term_readkey_available && $iactive && $as->{is_password};
                      chomp($r->{args}{$an} = <STDIN>);
                      do { print "\n"; Term::ReadKey::ReadMode(0) if $term_readkey_available }
                          if $iactive && $as->{is_password};
                      $r->{args}{"-cmdline_src_$an"} = 'stdin_line';
                  } elsif ($src eq 'stdin' || $src eq 'file' &&
                          ($r->{args}{$an}//"") eq '-') {
                      die [400, "Argument $an must be set to '-' which means ".
                               "from stdin"]
                          if defined($r->{args}{$an}) &&
                              $r->{args}{$an} ne '-';
                      $r->{args}{$an} = $do_stream ?
                          __gen_iter(\*STDIN, $as->{schema}, $an) :
                              $is_ary ? [<STDIN>] :
                                  do {local $/; ~~<STDIN>};
                      $r->{args}{"-cmdline_src_$an"} = 'stdin';
                  } elsif ($src eq 'stdin_or_file' || $src eq 'stdin_or_files') {
                      local @ARGV = @ARGV;
                      unshift @ARGV, $r->{args}{$an}
                          if defined $r->{args}{$an};
  
                      splice @ARGV, 1
                          if @ARGV > 1 && $src eq 'stdin_or_file';
  
  
                      for (@ARGV) {
                          next if $_ eq '-';
                          die [500, "Can't read file '$_': $!"] if !(-r $_);
                      }
  
                      $r->{args}{"-cmdline_srcfilenames_$an"} = [@ARGV];
                      $r->{args}{$an} = $do_stream ?
                          __gen_iter(\*ARGV, $as->{schema}, $an) :
                              $is_ary ? [<>] :
                                  do {local $/; ~~<>};
                      $r->{args}{"-cmdline_src_$an"} = $src;
                  } elsif ($src eq 'file') {
                      unless (exists $r->{args}{$an}) {
                          if ($as->{req}) {
                              die [400,
                                   "Please specify filename for argument '$an'"];
                          } else {
                              next;
                          }
                      }
                      die [400, "Please specify filename for argument '$an'"]
                          unless defined $r->{args}{$an};
                      my $fh;
                      my $fname = $r->{args}{$an};
                      unless (open $fh, "<", $fname) {
                          die [500, "Can't open file '$fname' for argument '$an'".
                                   ": $!"];
                      }
                      $r->{args}{$an} = $do_stream ?
                          __gen_iter($fh, $as->{schema}, $an) :
                              $is_ary ? [<$fh>] :
                                  do { local $/; ~~<$fh> };
                      $r->{args}{"-cmdline_src_$an"} = 'file';
                      $r->{args}{"-cmdline_srcfilenames_$an"} = [$fname];
                  }
              }
  
              if ($self->riap_version == 1.2 && $is_network &&
                      defined($r->{args}{$an}) && $args_p->{$an}{schema} &&
                          $args_p->{$an}{schema}[0] eq 'buf' &&
                              !$r->{args}{"$an:base64"}) {
                  require MIME::Base64;
                  $r->{args}{"$an:base64"} =
                      MIME::Base64::encode_base64($r->{args}{$an}, "");
                  delete $r->{args}{$an};
              }
          } 
      }
  }
  
  sub select_output_handle {
      my ($self, $r) = @_;
  
      my $resmeta = $r->{res}[3] // {};
  
      my $handle;
      if ($resmeta->{"cmdline.page_result"}) {
          require File::Which;
          my $pager = $resmeta->{"cmdline.pager"} //
              $ENV{PAGER};
          unless (defined $pager) {
              $pager = "less -FRSX" if File::Which::which("less");
          }
          unless (defined $pager) {
              $pager = "more" if File::Which::which("more");
          }
          unless (defined $pager) {
              die [500, "Can't determine PAGER"];
          }
          last unless $pager; 
          open $handle, "| $pager";
      }
      $handle //= \*STDOUT;
      $r->{output_handle} = $handle;
  }
  
  sub display_result {
      require Data::Sah::Util::Type;
  
      my ($self, $r) = @_;
  
      my $meta = $r->{meta};
      my $res = $r->{res};
      my $fres = $r->{fres};
      my $resmeta = $res->[3] // {};
  
      my $handle = $r->{output_handle};
  
      my $sch = $meta->{result}{schema};
      my $type = Data::Sah::Util::Type::get_type($sch) // '';
  
      if ($resmeta->{stream} // $meta->{result}{stream}) {
          my $x = $res->[2];
          if (ref($x) eq 'CODE') {
              if (Data::Sah::Util::Type::is_simple($sch)) {
                  while (defined(my $l = $x->())) {
                      print $l;
                      print "\n" unless $type eq 'buf';
                  }
              } else {
                  require JSON;
                  state $json = JSON->new->allow_nonref;
                  while (defined(my $rec = $x->())) {
                      print $json->encode($rec), "\n";
                  }
              }
          } else {
              die "Result is a stream but no coderef provided";
          }
      } else {
          print $handle $fres;
      }
  }
  
  sub run {
      my ($self) = @_;
      $log->tracef("[pericmd] -> run(), \@ARGV=%s", \@ARGV);
  
      my $co = $self->common_opts;
  
      my $r = {
          orig_argv   => [@ARGV],
          common_opts => $co,
      };
  
      if ($self->_detect_completion($r)) {
          $r->{res} = $self->do_completion($r);
          goto FORMAT;
      }
  
      $r->{naked_res} = $co->{naked_res}{default} if $co->{naked_res};
      $r->{format}    = $co->{format}{default} if $co->{format};
  
      {
          last if (-t STDOUT) || $r->{format};
          last unless eval { require Pipe::Find; 1 };
          my $pipeinfo = Pipe::Find::get_stdout_pipe_process();
          last unless $pipeinfo;
          last unless $pipeinfo->{exe} =~ m![/\\]td\z! ||
              $pipeinfo->{cmdline} =~ m!\A([^\0]*[/\\])?perl\0([^\0]*[/\\])?td\0!;
          $r->{format} = 'json';
      }
  
      if ($self->read_config) {
          $r->{read_config} = 1;
      }
  
      if ($self->read_env) {
          $r->{read_env} = 1;
      }
  
      eval {
          $log->tracef("[pericmd] Running hook_before_run ...");
          $self->hook_before_run($r);
  
          my $parse_res = $self->parse_argv($r);
          if ($parse_res->[0] == 501) {
              $r->{send_argv} = 1;
          } elsif ($parse_res->[0] != 200) {
              die $parse_res;
          }
          $r->{parse_argv_res} = $parse_res;
          $r->{args} = $parse_res->[2] // {};
  
          $r->{action} //= 'call';
  
          $log->tracef("[pericmd] Running hook_after_parse_argv ...");
          $self->hook_after_parse_argv($r);
  
          $self->parse_cmdline_src($r);
  
  
          my $missing = $parse_res->[3]{"func.missing_args"};
          die [400, "Missing required argument(s): ".join(", ", @$missing)]
              if $missing && @$missing;
  
          my $scd = $r->{subcommand_data};
          if ($scd->{pass_cmdline_object} // $self->pass_cmdline_object) {
              $r->{args}{-cmdline} = $self;
              $r->{args}{-cmdline_r} = $r;
          }
  
          $log->tracef("[pericmd] Running hook_before_action ...");
          $self->hook_before_action($r);
  
          my $meth = "action_$r->{action}";
          die [500, "Unknown action $r->{action}"] unless $self->can($meth);
          $log->tracef("[pericmd] Running %s() ...", $meth);
          $r->{res} = $self->$meth($r);
  
          $log->tracef("[pericmd] Running hook_after_action ...");
          $self->hook_after_action($r);
      };
      my $err = $@;
      if ($err || !$r->{res}) {
          if ($err) {
              $err = [500, "Died: $err"] unless ref($err) eq 'ARRAY';
              if (%Devel::Confess::) {
                  require Scalar::Util;
                  my $id = Scalar::Util::refaddr($err);
                  my $stack_trace = $Devel::Confess::MESSAGES{$id};
                  $err->[1] .= "\n$stack_trace" if $stack_trace;
              }
              $err->[1] =~ s/\n+$//;
              $r->{res} = $err;
          } else {
              $r->{res} = [500, "Bug: no response produced"];
          }
      } elsif (ref($r->{res}) ne 'ARRAY') {
          $log->tracef("[pericmd] res=%s", $r->{res}); 
          $r->{res} = [500, "Bug in program: result not an array"];
      } elsif (!$r->{res}[0] || $r->{res}[0] < 200 || $r->{res}[0] > 555) {
          $log->tracef("[pericmd] res=%s", $r->{res}); 
          $r->{res} = [500, "Bug in program: invalid result status, ".
                           "must be 200 <= x <= 555"];
      }
      $r->{format} //= $r->{res}[3]{'cmdline.default_format'};
      $r->{format} //= $r->{meta}{'cmdline.default_format'};
      my $restore_orig_result;
      my $orig_result;
      if (exists $r->{res}[3]{'cmdline.result'}) {
          $restore_orig_result = 1;
          $orig_result = $r->{res}[2];
          $r->{res}[2] = $r->{res}[3]{'cmdline.result'};
      }
    FORMAT:
      my $is_success = $r->{res}[0] =~ /\A2/ || $r->{res}[0] == 304;
      if ($is_success &&
              ($self->skip_format ||
               $r->{meta}{'cmdline.skip_format'} ||
               $r->{res}[3]{'cmdline.skip_format'})) {
          $r->{fres} = $r->{res}[2] // '';
      } elsif ($is_success &&
                   ($r->{res}[3]{stream} // $r->{meta}{result}{stream})) {
      }else {
          $log->tracef("[pericmd] Running hook_format_result ...");
          $r->{res}[3]{stream} = 0;
          $r->{fres} = $self->hook_format_result($r) // '';
      }
      $self->select_output_handle($r);
      $log->tracef("[pericmd] Running hook_display_result ...");
      $self->hook_display_result($r);
      $log->tracef("[pericmd] Running hook_after_run ...");
      $self->hook_after_run($r);
  
      if ($restore_orig_result) {
          $r->{res}[2] = $orig_result;
      }
  
      my $exitcode;
      if ($r->{res}[3] && defined($r->{res}[3]{'cmdline.exit_code'})) {
          $exitcode = $r->{res}[3]{'cmdline.exit_code'};
      } else {
          $exitcode = $self->status2exitcode($r->{res}[0]);
      }
      if ($self->exit) {
          $log->tracef("[pericmd] exit(%s)", $exitcode);
          exit $exitcode;
      } else {
          $log->tracef("[pericmd] <- run(), exitcode=%s", $exitcode);
          $r->{res}[3]{'x.perinci.cmdline.base.exit_code'} = $exitcode;
          return $r->{res};
      }
  }
  
  1;
  
  __END__
  
PERINCI_CMDLINE_BASE

$fatpacked{"Perinci/CmdLine/Help.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_CMDLINE_HELP';
  package Perinci::CmdLine::Help;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.08'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(gen_help);
  
  our %SPEC;
  
  $SPEC{gen_help} = {
      v => 1.1,
      summary => 'Generate help message for Perinci::CmdLine-based app',
      args => {
          program_name => {
              schema => 'str*',
              req => 1,
          },
          program_summary => {
              schema => 'str*',
          },
          subcommands => {
              schema => 'hash',
          },
          meta => {
              summary => 'Function metadata, must be normalized',
              schema => 'hash*',
              req => 1,
          },
          common_opts => {
              schema => 'hash*',
              default => {},
          },
          per_arg_json => {
              schema => 'bool*',
          },
          per_arg_yaml => {
              schema => 'bool*',
          },
      },
  };
  sub gen_help {
      my %args = @_;
  
      my $meta = $args{meta};
      my $common_opts = $args{common_opts} // {};
  
      my @help;
  
      my $progname = $args{program_name};
      push @help, $progname;
      {
          my $sum = $args{program_summary} // $meta->{summary};
          last unless $sum;
          push @help, " - ", $sum, "\n";
      }
  
      my $clidocdata;
  
      push @help, "\nUsage:\n";
      {
          for (sort {
              ($common_opts->{$a}{order} // 99) <=>
                  ($common_opts->{$b}{order} // 99) ||
                      $a cmp $b
              } keys %$common_opts) {
              my $co = $common_opts->{$_};
              next unless $co->{usage};
              push @help, "  $progname $co->{usage}\n";
          }
  
          require Perinci::Sub::To::CLIDocData;
          my $res = Perinci::Sub::To::CLIDocData::gen_cli_doc_data_from_meta(
              meta => $meta, meta_is_normalized => 1,
              common_opts  => $common_opts,
              per_arg_json => $args{per_arg_json},
              per_arg_yaml => $args{per_arg_yaml},
          );
          die [500, "gen_cli_doc_data_from_meta failed: ".
                   "$res->[0] - $res->[1]"] unless $res->[0] == 200;
          $clidocdata = $res->[2];
          my $usage = $clidocdata->{usage_line};
          $usage =~ s/\[\[prog\]\]/$progname/;
          push @help, "  $usage\n";
      }
  
      {
          my $subcommands = $args{subcommands} or last;
          push @help, "\nSubcommands:\n";
          if (keys(%$subcommands) >= 12) {
              no warnings 'once';
              require Text::Wrap;
              local $Text::Wrap::columns = $ENV{COLUMNS} // 80;
              push @help, Text::Wrap::wrap(
                  "  ", "  ", join(", ", sort keys %$subcommands)), "\n";
          } else {
              for my $sc_name (sort keys %$subcommands) {
                  my $sc_spec = $subcommands->{$sc_name};
                  next unless $sc_spec->{show_in_help} //1;
                  push @help, "  $sc_name\n";
              }
          }
      }
  
      {
          last unless @{ $clidocdata->{examples} };
          push @help, "\nExamples:\n";
          my $i = 0;
          my $egs = $clidocdata->{examples};
          for my $eg (@$egs) {
              $i++;
              my $cmdline = $eg->{cmdline};
              $cmdline =~ s/\[\[prog\]\]/$progname/;
              push @help, "  $eg->{summary}:\n" if $eg->{summary};
              push @help, "  % $cmdline\n";
              push @help, "\n" if $eg->{summary} && $i < @$egs;
          }
      }
  
      {
          my $desc = $args{program_description} // $meta->{description};
          last unless $desc;
          $desc =~ s/\A\n+//;
          $desc =~ s/\n+\z//;
          push @help, "\n", $desc, "\n" if $desc =~ /\S/;
      }
  
      {
          require Data::Dmp;
  
          my $opts = $clidocdata->{opts};
          last unless keys %$opts;
  
          my %options_by_cat; 
          for my $optkey (keys %$opts) {
              for my $cat (@{ $opts->{$optkey}{categories} }) {
                  push @{ $options_by_cat{$cat} }, $optkey;
              }
          }
  
          my $cats_spec = $clidocdata->{option_categories};
          for my $cat (sort {
              ($cats_spec->{$a}{order} // 50) <=> ($cats_spec->{$b}{order} // 50)
                  || $a cmp $b }
                           keys %options_by_cat) {
              my @opts = sort {length($b)<=>length($a)}
                  @{ $options_by_cat{$cat} };
              my $len = length($opts[0]);
              @opts = sort {
                  (my $a_without_dash = $a) =~ s/^-+//;
                  (my $b_without_dash = $b) =~ s/^-+//;
                  lc($a) cmp lc($b);
              } @opts;
              push @help, "\n$cat:\n";
              for my $opt (@opts) {
                  my $ospec = $opts->{$opt};
                  my $arg_spec = $ospec->{arg_spec};
                  my $is_bool = $arg_spec->{schema} &&
                      $arg_spec->{schema}[0] eq 'bool';
                  my $show_default = exists($ospec->{default}) &&
                      !$is_bool && !$ospec->{is_base64} &&
                          !$ospec->{is_json} && !$ospec->{is_yaml} &&
                              !$ospec->{is_alias};
  
                  my $add_sum = '';
                  if ($ospec->{is_base64}) {
                      $add_sum = " (base64-encoded)";
                  } elsif ($ospec->{is_json}) {
                      $add_sum = " (JSON-encoded)";
                  } elsif ($ospec->{is_yaml}) {
                      $add_sum = " (YAML-encoded)";
                  }
  
                  my $argv = '';
                  if (!$ospec->{main_opt} && defined($ospec->{pos})) {
                      if ($ospec->{greedy}) {
                          $argv = " (=arg[$ospec->{pos}-])";
                      } else {
                          $argv = " (=arg[$ospec->{pos}])";
                      }
                  }
  
                  my $cmdline_src = '';
                  if (!$ospec->{main_opt} && defined($arg_spec->{cmdline_src})) {
                      $cmdline_src = " (or from $arg_spec->{cmdline_src})";
                      $cmdline_src =~ s!_or_!/!g;
                  }
  
                  push @help, sprintf(
                      "  %-${len}s  %s%s%s%s%s\n",
                      $opt,
                      $ospec->{summary}//'',
                      $add_sum,
                      $argv,
                      $cmdline_src,
                      ($show_default && defined($ospec->{default}) ?
                           " [".Data::Dmp::dmp($ospec->{default})."]":""),
  
                  );
              }
          }
      }
  
      [200, "OK", join("", @help)];
  }
  
  1;
  
  __END__
  
PERINCI_CMDLINE_HELP

$fatpacked{"Perinci/CmdLine/Lite.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_CMDLINE_LITE';
  package Perinci::CmdLine::Lite;
  
  our $DATE = '2016-01-14'; 
  our $VERSION = '1.45'; 
  
  use 5.010001;
  use Log::Any::IfLOG '$log';
  
  use List::Util qw(first);
  use Mo qw(build default);
  extends 'Perinci::CmdLine::Base';
  
  
  has default_prompt_template => (
      is=>'rw',
      default => 'Enter %s: ',
  );
  has log => (
      is=>'rw',
      default => sub {
          if (defined $ENV{LOG}) {
              return $ENV{LOG};
          } elsif ($ENV{LOG_LEVEL} && $ENV{LOG_LEVEL} =~ /^(off|none)$/) {
              return 0;
          } elsif ($ENV{LOG_LEVEL} || $ENV{TRACE} || $ENV{DEBUG} ||
                       $ENV{VERBOSE} || $ENV{QUIET}) {
              return 0;
          }
          0;
      },
  );
  has log_level => (
      is=>'rw',
      default => sub {
          if ($ENV{LOG_LEVEL}) {
              return $ENV{LOG_LEVEL};
          } elsif ($ENV{TRACE}) {
              return 'trace';
          } elsif ($ENV{DEBUG}) {
              return 'debug';
          } elsif ($ENV{VERBOSE}) {
              return 'info';
          } elsif ($ENV{QUIET}) {
              return 'error';
          }
          'warning';
      },
  );
  has validate_args => (
      is=>'rw',
      default => 1,
  );
  has use_utf8 => {
      is=>'rw',
      default => sub {
          $ENV{UTF8} // 0;
      },
  };
  
  my $formats = [qw/text text-simple text-pretty json json-pretty csv/];
  
  sub BUILD {
      my ($self, $args) = @_;
  
      if (!$self->{riap_client}) {
          require Perinci::Access::Lite;
          my %rcargs = (
              riap_version => $self->{riap_version} // 1.1,
              %{ $self->{riap_client_args} // {} },
          );
          $self->{riap_client} = Perinci::Access::Lite->new(%rcargs);
      }
  
      if (!$self->{actions}) {
          $self->{actions} = {
              call => {},
              version => {},
              subcommands => {},
              help => {},
          };
      }
  
      my $_t = sub {
          no warnings;
          my $co_name = shift;
          my $href = $Perinci::CmdLine::Base::copts{$co_name};
          %$href;
      };
  
      if (!$self->{common_opts}) {
          my $copts = {};
  
          $copts->{version}   = { $_t->('version'), };
          $copts->{help}      = { $_t->('help'), };
  
          unless ($self->skip_format) {
              $copts->{format}    = {
                  $_t->('format'),
                  schema => ['str*' => in => $formats],
              };
              $copts->{json}      = { $_t->('json'), };
              $copts->{naked_res} = { $_t->('naked_res'), };
          }
          if ($self->subcommands) {
              $copts->{subcommands} = { $_t->('subcommands'), };
          }
          if ($self->default_subcommand) {
              $copts->{cmd} = { $_t->('cmd') };
          }
          if ($self->read_config) {
              $copts->{config_path}    = { $_t->('config_path') };
              $copts->{no_config}      = { $_t->('no_config') };
              $copts->{config_profile} = { $_t->('config_profile') };
          }
          if ($self->read_env) {
              $copts->{no_env} = { $_t->('no_env') };
          }
          if ($self->log) {
              $copts->{log_level} = { $_t->('log_level'), };
              $copts->{trace}     = { $_t->('trace'), };
              $copts->{debug}     = { $_t->('debug'), };
              $copts->{verbose}   = { $_t->('verbose'), };
              $copts->{quiet}     = { $_t->('quiet'), };
          }
          $self->{common_opts} = $copts;
      }
  
      $self->{formats} //= $formats;
  
      $self->{per_arg_json} //= 1;
  }
  
  my $setup_progress;
  sub _setup_progress_output {
      my $self = shift;
  
      return unless $ENV{PROGRESS} // (-t STDOUT);
  
      require Progress::Any::Output;
      Progress::Any::Output->set("TermProgressBarColor");
      $setup_progress = 1;
  }
  
  sub _unsetup_progress_output {
      my $self = shift;
  
      return unless $setup_progress;
      my $out = $Progress::Any::outputs{''}[0];
      $out->cleanup if $out->can("cleanup");
      $setup_progress = 0;
  }
  
  sub hook_after_parse_argv {
      my ($self, $r) = @_;
  
      my $ass  = $r->{meta}{args} // {};
      my $args = $r->{args};
      for (keys %$ass) {
          next if exists $args->{$_};
          my $as = $ass->{$_};
          if (exists $as->{default}) {
              $args->{$_} = $as->{default};
          } elsif ($as->{schema} && exists $as->{schema}[1]{default}) {
              $args->{$_} = $as->{schema}[1]{default};
          }
      }
  
      if ($self->log) {
          require Log::Any::Adapter;
          Log::Any::Adapter->set(
              'Screen',
              min_level => $r->{log_level} // $self->log_level,
              formatter => sub { $self->program_name . ": $_[1]" },
          );
      }
  }
  
  sub hook_before_action {
      my ($self, $r) = @_;
  
    VALIDATE_ARGS:
      {
          last unless $self->validate_args;
  
          last unless $r->{action} eq 'call';
  
          my $meta = $r->{meta};
  
          last if $meta->{'x.perinci.sub.wrapper.logs'} &&
              (grep { $_->{validate_args} }
               @{ $meta->{'x.perinci.sub.wrapper.logs'} });
  
          require Data::Sah;
  
          my %validators; 
  
          for my $arg (sort keys %{ $meta->{args} // {} }) {
              next unless exists($r->{args}{$arg});
  
              next if $meta->{args}{$arg}{stream};
  
              my $schema = $meta->{args}{$arg}{schema};
              next unless $schema;
              unless ($validators{"$schema"}) {
                  my $v = Data::Sah::gen_validator($schema, {
                      return_type => 'str',
                      schema_is_normalized => 1,
                  });
                  $validators{"$schema"} = $v;
              }
              my $res = $validators{"$schema"}->($r->{args}{$arg});
              if ($res) {
                  die [400, "Argument '$arg' fails validation: $res"];
              }
          }
  
          if ($meta->{args_rels}) {
              my $schema = [hash => $meta->{args_rels}];
              my $sah = Data::Sah->new;
              my $hc  = $sah->get_compiler("human");
              my $cd  = $hc->init_cd;
              $cd->{args}{lang} //= $cd->{default_lang};
              my $v = Data::Sah::gen_validator($schema, {
                  return_type => 'str',
                  human_hash_values => {
                      field  => $hc->_xlt($cd, "argument"),
                      fields => $hc->_xlt($cd, "arguments"),
                  },
              });
              my $res = $v->($r->{args});
              if ($res) {
                  die [400, $res];
              }
          }
  
      }
  }
  
  sub hook_format_result {
      require Perinci::Result::Format::Lite;
      my ($self, $r) = @_;
  
      my $fmt = $r->{format} // 'text';
  
      my $fres = Perinci::Result::Format::Lite::format(
          $r->{res}, $fmt, $r->{naked_res});
  
      if ($fmt =~ /text/ && $r->{res}[0] =~ /\A[45]/ && defined($r->{res}[1])) {
          $fres = $self->program_name . ": $fres";
      }
  
      $fres;
  }
  
  sub hook_format_row {
      my ($self, $r, $row) = @_;
  
      if (ref($row) eq 'ARRAY') {
          return join("\t", @$row) . "\n";
      } else {
          return ($row // "") . "\n";
      }
  }
  
  sub hook_display_result {
      my ($self, $r) = @_;
  
      my $res  = $r->{res};
      my $resmeta = $res->[3] // {};
  
      my $handle = $r->{output_handle};
  
      my $utf8;
      {
          last if defined($utf8 = $ENV{UTF8});
          if ($resmeta->{'x.hint.result_binary'}) {
              $utf8 = 0; last;
          }
          if ($r->{subcommand_data}) {
              last if defined($utf8 = $r->{subcommand_data}{use_utf8});
          }
  
          $utf8 = $self->use_utf8;
      }
      binmode($handle, ":utf8") if $utf8;
  
      $self->display_result($r);
  }
  
  sub hook_after_run {
      my ($self, $r) = @_;
      $self->_unsetup_progress_output;
  }
  
  sub hook_after_get_meta {
      my ($self, $r) = @_;
  
      require Perinci::Object;
      if (Perinci::Object::risub($r->{meta})->can_dry_run) {
          $self->common_opts->{dry_run} = {
              getopt  => 'dry-run',
              summary => "Run in simulation mode (also via DRY_RUN=1)",
              handler => sub {
                  my ($go, $val, $r) = @_;
                  $log->debugf("[pericmd] Dry-run mode is activated");
                  $r->{dry_run} = 1;
              },
          };
      }
  
      if ($r->{meta}{deps}) {
          require Perinci::Sub::DepChecker;
          my $res = Perinci::Sub::DepChecker::check_deps($r->{meta}{deps});
          if ($res) {
              die [412, "Dependency failed: $res"];
          }
      }
  }
  
  sub action_subcommands {
      my ($self, $r) = @_;
  
      if (!$self->subcommands) {
          say "There are no subcommands.";
          return 0;
      }
  
      say "Available subcommands:";
      my $scs = $self->list_subcommands;
      my $longest = 6;
      for (keys %$scs) { my $l = length; $longest = $l if $l > $longest }
      [200, "OK",
       join("",
            (map { sprintf("  %-${longest}s  %s\n",$_,$scs->{$_}{summary}//"") }
                 sort keys %$scs),
        )];
  }
  
  sub action_version {
      no strict 'refs';
  
      my ($self, $r) = @_;
  
      my @text;
  
      {
          my $meta = $r->{meta} = $self->get_meta($r, $self->url);
          push @text, $self->get_program_and_subcommand_name($r),
              " version ", ($meta->{entity_v} // "?"),
              ($meta->{entity_date} ? " ($meta->{entity_date})" : ''),
              "\n";
          for my $mod (@{ $meta->{'x.dynamic_generator_modules'} // [] }) {
              push @text, "  $mod version ", ${"$mod\::VERSION"},
                  (${"$mod\::DATE"} ? " (".${"$mod\::DATE"}.")" : ""),
                      "\n";
          }
      }
  
      for my $url (@{ $self->extra_urls_for_version // [] }) {
          my $meta = $self->get_meta($r, $url);
          push @text, "  $url version ", ($meta->{entity_v} // "?"),
              ($meta->{entity_date} ? " ($meta->{entity_date})" : ''),
              "\n";
      }
  
      push @text, "  ", __PACKAGE__,
          " version ", ($Perinci::CmdLine::Lite::VERSION // "?"),
          ($Perinci::CmdLine::Lite::DATE ?
           " ($Perinci::CmdLine::Lite::DATE)":''),
          "\n";
  
      [200, "OK", join("", @text)];
  }
  
  sub action_help {
      require Perinci::CmdLine::Help;
  
      my ($self, $r) = @_;
  
      my @help;
      my $scn    = $r->{subcommand_name};
      my $scd    = $r->{subcommand_data};
  
      my $meta = $self->get_meta($r, $scd->{url} // $self->{url});
  
      my $common_opts = { %{$self->common_opts} };
  
      my $has_sc_no_sc = $self->subcommands && !length($r->{subcommand_name});
      delete $common_opts->{subcommands} if $self->subcommands && !$has_sc_no_sc;
  
      my $res = Perinci::CmdLine::Help::gen_help(
          program_name => $self->get_program_and_subcommand_name($r),
          program_summary => ($scd ? $scd->{summary}:undef ) // $meta->{summary},
          program_description => $scd ? $scd->{description} : undef,
          meta => $meta,
          subcommands => $has_sc_no_sc ? $self->list_subcommands : undef,
          common_opts => $common_opts,
          per_arg_json => $self->per_arg_json,
          per_arg_yaml => $self->per_arg_yaml,
      );
  
      $res->[3]{"cmdline.skip_format"} = 1;
      $res;
  }
  
  sub action_call {
      my ($self, $r) = @_;
  
      my %extra;
      if ($r->{send_argv}) {
          $log->tracef("[pericmd] Sending argv to server: %s", $extra{argv});
          $extra{argv} = $r->{orig_argv};
      } else {
          my %extra_args;
          $extra_args{-dry_run} = 1 if $r->{dry_run};
          $extra{args} = {%extra_args, %{$r->{args}}};
      }
  
      $extra{stream_arg} = 1 if $r->{stream_arg};
  
      my $url = $r->{subcommand_data}{url};
  
      $log->tracef("[pericmd] Riap request: action=call, url=%s", $url);
  
  
      if ($r->{meta}{features}{progress}) {
          $self->_setup_progress_output;
      }
  
      $self->riap_client->request(
          call => $url, \%extra);
  }
  
  1;
  
  __END__
  
PERINCI_CMDLINE_LITE

$fatpacked{"Perinci/CmdLine/Util/Config.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_CMDLINE_UTIL_CONFIG';
  package Perinci::CmdLine::Util::Config;
  
  our $DATE = '2016-01-14'; 
  our $VERSION = '1.45'; 
  
  use 5.010;
  use strict;
  use warnings;
  use Log::Any::IfLOG '$log';
  
  use PERLANCAR::File::HomeDir qw(get_my_home_dir);
  
  our %SPEC;
  
  $SPEC{get_default_config_dirs} = {
      v => 1.1,
      args => {},
  };
  sub get_default_config_dirs {
      my @dirs;
      local $PERLANCAR::File::HomeDir::DIE_ON_FAILURE = 1;
      my $home = get_my_home_dir();
      if ($^O eq 'MSWin32') {
          push @dirs, $home;
      } else {
          push @dirs, "$home/.config", $home, "/etc";
      }
      \@dirs;
  }
  
  $SPEC{read_config} = {
      v => 1.1,
      args => {
          config_paths    => {},
          config_filename => {},
          config_dirs     => {},
          program_name    => {},
      },
  };
  sub read_config {
      require Config::IOD::Reader;
  
      my %args = @_;
  
      my $config_dirs = $args{config_dirs} // get_default_config_dirs();
  
      my $paths;
      if ($args{config_paths}) {
          $paths = $args{config_paths};
      } else {
          my $names = $args{config_filename} //
              $args{program_name} . ".conf";
          for my $dir (@$config_dirs) {
              for my $name (ref($names) eq 'ARRAY' ? @$names : ($names)) {
                  my $path = "$dir/" . $name;
                  push @$paths, $path if -e $path;
              }
          }
      }
  
      my $reader = Config::IOD::Reader->new;
      my %res;
      my @read;
      for my $path (@$paths) {
          my $hoh = $reader->read_file($path);
          push @read, $path;
          for my $section (keys %$hoh) {
              my $hash = $hoh->{$section};
              for (keys %$hash) {
                  $res{$section}{$_} = $hash->{$_};
              }
          }
      }
      [200, "OK", \%res, {'func.read_files' => \@read}];
  }
  
  $SPEC{get_args_from_config} = {
      v => 1.1,
      args => {
          r => {},
          config => {},
          args => {},
          subcommand_name => {},
          config_profile => {},
          common_opts => {},
          meta => {},
          meta_is_normalized => {},
      },
  };
  sub get_args_from_config {
      my %fargs = @_;
  
      my $r       = $fargs{r};
      my $conf    = $fargs{config};
      my $scn     = $fargs{subcommand_name} // '';
      my $profile = $fargs{config_profile};
      my $args    = $fargs{args} // {};
      my $copts   = $fargs{common_opts};
      my $meta    = $fargs{meta};
      my $found;
  
      unless ($fargs{meta_is_normalized}) {
          require Perinci::Sub::Normalize;
          $meta = Perinci::Sub::Normalize::normalize_function_metadata($meta);
      }
  
      my @sections = sort {
          ($a eq 'GLOBAL' ? 0:1) <=> ($b eq 'GLOBAL' ? 0:1) ||
              $a cmp $b
          } keys %$conf;
  
      my %seen_profiles; 
      for my $section (@sections) {
          my %keyvals;
          for my $word (split /\s+/, ($section eq 'GLOBAL' ? '' : $section)) {
              if ($word =~ /(.+)=(.*)/) {
                  $keyvals{$1} = $2;
              } else {
                  $keyvals{subcommand} = $word;
              }
          }
          $seen_profiles{$keyvals{profile}}++ if defined $keyvals{profile};
  
          my $sect_scn     = $keyvals{subcommand} // '';
          my $sect_profile = $keyvals{profile};
  
          if (length $scn) {
              next if length($sect_scn) && $sect_scn ne $scn;
          } else {
              next if length $sect_scn;
          }
          if (defined $profile) {
              next if defined($sect_profile) && $sect_profile ne $profile;
              $found = 1 if defined($sect_profile) && $sect_profile eq $profile;
          } else {
              next if defined($sect_profile);
          }
  
          my $as = $meta->{args} // {};
          for my $k (keys %{ $conf->{$section} }) {
              my $v = $conf->{$section}{$k};
              if ($copts->{$k} && $copts->{$k}{is_settable_via_config}) {
                  my $sch = $copts->{$k}{schema};
                  if ($sch) {
                      require Data::Sah::Normalize;
                      $sch = Data::Sah::Normalize::normalize_schema($sch);
                      if (ref($v) ne 'ARRAY' && $sch->[0] eq 'array') {
                          $v = [$v];
                      }
                  }
                  $copts->{$k}{handler}->(undef, $v, $r);
              } else {
                  $k =~ s/\.arg\z//;
  
                  if (ref($v) ne 'ARRAY' && $as->{$k} && $as->{$k}{schema} &&
                          $as->{$k}{schema}[0] eq 'array') {
                      $v = [$v];
                  }
                  $args->{$k} = $v;
              }
          }
      }
      $log->tracef("[pericmd] Seen config profiles: %s",
                   [sort keys %seen_profiles]);
  
      [200, "OK", $args, {'func.found'=>$found}];
  }
  
  1;
  
  __END__
  
PERINCI_CMDLINE_UTIL_CONFIG

$fatpacked{"Perinci/CmdLine/pause.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_CMDLINE_PAUSE';
  package Perinci::CmdLine::pause;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.30'; 
  
  use 5.010001;
  use strict;
  use warnings;
  use Log::Any::IfLOG qw($log);
  
  use parent qw(Perinci::CmdLine::Lite);
  
  use PERLANCAR::File::HomeDir qw(get_my_home_dir);
  
  sub hook_after_read_config_file {
      my ($self, $r) = @_;
  
      return unless $self->read_config;
      return if $r->{read_config_files} && @{$r->{read_config_files}};
  
      my $path = get_my_home_dir() . "/.pause";
      return unless -f $path;
  
      open my($fh), "<", $path or die [500, "Can't read $path: $!"];
      $log->tracef("[pericmd-pause] Reading %s ...", $path);
      $r->{read_config_files} = [$path];
      while (<$fh>) {
          if (/^user\s+(.+)/) { $r->{config}{GLOBAL}{username} = $1 }
          elsif (/^password\s+(.+)/) { $r->{config}{GLOBAL}{password} = $1 }
      }
  }
  
  1;
  
  __END__
  
PERINCI_CMDLINE_PAUSE

$fatpacked{"Perinci/Object.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_OBJECT';
  package Perinci::Object;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.24'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA    = qw(Exporter);
  our @EXPORT = qw(rimeta risub rivar ripkg envres envresmulti riresmeta);
  
  sub rimeta {
      require Perinci::Object::Metadata;
      Perinci::Object::Metadata->new(@_);
  }
  
  sub risub {
      require Perinci::Object::Function;
      Perinci::Object::Function->new(@_);
  }
  
  sub rivar {
      require Perinci::Object::Variable;
      Perinci::Object::Variable->new(@_);
  }
  
  sub ripkg {
      require Perinci::Object::Package;
      Perinci::Object::Package->new(@_);
  }
  
  sub envres {
      require Perinci::Object::EnvResult;
      Perinci::Object::EnvResult->new(@_);
  }
  
  sub envresmulti {
      require Perinci::Object::EnvResultMulti;
      Perinci::Object::EnvResultMulti->new(@_);
  }
  
  sub riresmeta {
      require Perinci::Object::ResMeta;
      Perinci::Object::ResMeta->new(@_);
  }
  
  1;
  
  __END__
  
PERINCI_OBJECT

$fatpacked{"Perinci/Object/EnvResult.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_OBJECT_ENVRESULT';
  package Perinci::Object::EnvResult;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.24'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  sub new {
      my ($class, $res) = @_;
      $res //= [0, "", undef];
      my $obj = \$res;
      bless $obj, $class;
  }
  
  sub new_ok {
      my $class = shift;
      my $res = [200, "OK"];
      if (@_) {
          push @$res, $_[0];
      }
      $class->new($res);
  }
  
  sub status {
      my ($self, $new) = @_;
      if (defined $new) {
          die "Status must be an integer between 100 and 555" unless
              int($new) eq $new && $new >= 100 && $new <= 555;
          my $old = ${$self}->[0];
          ${$self}->[0] = $new;
          return $old;
      }
      ${$self}->[0];
  }
  
  sub message {
      my ($self, $new) = @_;
      if (defined $new) {
          die "Extra must be a string" if ref($new);
          my $old = ${$self}->[1];
          ${$self}->[1] = $new;
          return $old;
      }
      ${$self}->[1];
  }
  
  
  sub payload {
      my ($self, $new) = @_;
      if (defined $new) {
          my $old = ${$self}->[2];
          ${$self}->[2] = $new;
          return $old;
      }
      ${$self}->[2];
  }
  
  sub meta {
      my ($self, $new) = @_;
      if (defined $new) {
          die "Extra must be a hashref" unless ref($new) eq 'HASH';
          my $old = ${$self}->[3];
          ${$self}->[3] = $new;
          return $old;
      }
      ${$self}->[3];
  }
  
  sub is_success {
      my ($self) = @_;
      my $status = ${$self}->[0];
      $status >= 200 && $status <= 299;
  }
  
  sub as_struct {
      my ($self) = @_;
      ${$self};
  }
  
  1;
  
  __END__
  
PERINCI_OBJECT_ENVRESULT

$fatpacked{"Perinci/Object/EnvResultMulti.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_OBJECT_ENVRESULTMULTI';
  package Perinci::Object::EnvResultMulti;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.24'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use parent qw(Perinci::Object::EnvResult);
  
  sub new {
      my ($class, $res) = @_;
      $res //= [200, "Success/no items"];
      my $obj = \$res;
      bless $obj, $class;
  }
  
  sub add_result {
      my ($self, $status, $message, $extra) = @_;
      my $num_ok  = 0;
      my $num_nok = 0;
  
      push @{ ${$self}->[3]{results} },
          {%{ $extra // {} }, status=>$status, message=>$message};
      for (@{ ${$self}->[3]{results} // [] }) {
          if ($_->{status} =~ /\A(2|304)/) {
              $num_ok++;
          } else {
              $num_nok++;
          }
      }
      if ($num_ok) {
          if ($num_nok) {
              ${$self}->[0] = 207;
              ${$self}->[1] = "Partial success";
          } else {
              ${$self}->[0] = 200;
              ${$self}->[1] = "All success";
          }
      } else {
          ${$self}->[0] = $status;
          ${$self}->[1] = $message;
      }
  }
  
  1;
  
  __END__
  
PERINCI_OBJECT_ENVRESULTMULTI

$fatpacked{"Perinci/Object/Function.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_OBJECT_FUNCTION';
  package Perinci::Object::Function;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.24'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use parent qw(Perinci::Object::Metadata);
  
  sub type { "function" }
  
  sub feature {
      my $self = shift;
      my $name = shift;
      if (@_) {
          die "1.0 can't set feature" if $self->v eq 1.0;
          my $value = shift;
          ${$self}->{features} //= {};
          my $old = ${$self}->{features}{$name};
          ${$self}->{features}{$name} = $value;
          return $old;
      } else {
          ${$self}->{features}{$name};
      }
  }
  
  sub features {
      my $self = shift;
      ${$self}->{features} // {};
  }
  
  sub can_dry_run {
      my $self = shift;
      my $ff = ${$self}->{features} // {};
      $ff->{dry_run} // $ff->{tx} && $ff->{tx}{v} == 2;
  }
  
  sub arg {
      my $self = shift;
      my $name = shift;
      if (@_) {
          die "1.0 can't set arg" if $self->v eq 1.0;
          my $value = shift;
          ${$self}->{args} //= {};
          my $old = ${$self}->{args}{$name};
          ${$self}->{args}{$name} = $value;
          return $old;
      } else {
          ${$self}->{args}{$name};
      }
  }
  
  1;
  
  __END__
  
PERINCI_OBJECT_FUNCTION

$fatpacked{"Perinci/Object/Metadata.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_OBJECT_METADATA';
  package Perinci::Object::Metadata;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.24'; 
  
  use 5.010;
  use strict;
  use warnings;
  use String::Trim::More qw(trim_blank_lines);
  
  sub new {
      my ($class, $meta) = @_;
      $meta //= {};
      my $obj = \$meta;
      bless $obj, $class;
  }
  
  sub v {
      my $self = shift;
      ${$self}->{v} // 1.0;
  }
  
  sub type {
      die "BUG: type() must be subclassed";
  }
  
  sub as_struct {
      my $self = shift;
      ${$self};
  }
  
  sub langprop {
      my $self = shift;
      my $opts;
      if (ref($_[0]) eq 'HASH') {
          $opts = shift;
      } else {
          $opts = {};
      }
      my $prop = shift;
  
      my $deflang = ${$self}->{default_lang} // "en_US";
      my $olang   = $opts->{lang} || $ENV{LANGUAGE} || $ENV{LANG} || $deflang;
      $olang =~ s/\W.+//; 
      $olang = "en_US" if $olang eq 'C';
      (my $olang2 = $olang) =~ s/\A([a-z]{2})_[A-Z]{2}\z/$1/; 
      my $mark    = $opts->{mark_different_lang} // 1;
  
      my @k;
      if ($olang eq $deflang) {
          @k = ([$olang, $prop, 0]);
      } else {
          @k = (
              [$olang, "$prop.alt.lang.$olang", 0],
              ([$olang2, "$prop.alt.lang.$olang2", 0]) x !!($olang2 ne $olang),
              [$deflang, $prop, $mark],
          );
      }
  
      my $v;
    GET:
      for my $k (@k) {
          $v = ${$self}->{$k->[1]};
          if (defined $v) {
              if ($k->[2]) {
                  my $has_nl = $v =~ s/\n\z//;
                  $v = "{$olang|$k->[0] $v}" . ($has_nl ? "\n" : "");
              }
              $v = trim_blank_lines($v);
              last GET;
          }
      }
  
      if (@_) {
          ${$self}->{$k[0][1]} = $_[0];
      }
  
      $v;
  }
  
  sub name {
      my $self = shift;
      my $opts;
      if (@_ && ref($_[0]) eq 'HASH') {
          $opts = shift;
      } else {
          $opts = {};
      }
      $self->langprop($opts, "name", @_);
  }
  
  sub caption {
      my $self = shift;
      my $opts;
      if (@_ && ref($_[0]) eq 'HASH') {
          $opts = shift;
      } else {
          $opts = {};
      }
      $self->langprop($opts, "caption", @_);
  }
  
  sub summary {
      my $self = shift;
      my $opts;
      if (@_ && ref($_[0]) eq 'HASH') {
          $opts = shift;
      } else {
          $opts = {};
      }
      $self->langprop($opts, "summary", @_);
  }
  
  sub description {
      my $self = shift;
      my $opts;
      if (@_ && ref($_[0]) eq 'HASH') {
          $opts = shift;
      } else {
          $opts = {};
      }
      $self->langprop($opts, "description", @_);
  }
  
  1;
  
  __END__
  
PERINCI_OBJECT_METADATA

$fatpacked{"Perinci/Object/Package.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_OBJECT_PACKAGE';
  package Perinci::Object::Package;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.24'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use parent qw(Perinci::Object::Metadata);
  
  sub type { "package" }
  
  1;
  
  __END__
  
PERINCI_OBJECT_PACKAGE

$fatpacked{"Perinci/Object/ResMeta.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_OBJECT_RESMETA';
  package Perinci::Object::ResMeta;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.24'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use parent qw(Perinci::Object::Metadata);
  
  sub type { "resmeta" }
  
  1;
  
  __END__
  
PERINCI_OBJECT_RESMETA

$fatpacked{"Perinci/Object/Variable.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_OBJECT_VARIABLE';
  package Perinci::Object::Variable;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '0.24'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use parent qw(Perinci::Object::Metadata);
  
  sub type { "variable" }
  
  1;
  
  __END__
  
PERINCI_OBJECT_VARIABLE

$fatpacked{"Perinci/Result/Format/Lite.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_RESULT_FORMAT_LITE';
  package Perinci::Result::Format::Lite;
  
  our $DATE = '2016-01-13'; 
  our $VERSION = '0.11'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use List::Util qw(first);
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(format);
  
  sub firstidx (&@) {
      my $f = shift;
      foreach my $i ( 0 .. $#_ )
          {
              local *_ = \$_[$i];
              return $i if $f->();
          }
      return -1;
  }
  
  sub _json {
      state $json = do {
          if    (eval { require JSON::XS; 1 })   { JSON::XS->new->canonical(1)->allow_nonref }
          elsif (eval { require JSON::Tiny::Subclassable; 1 }) { JSON::Tiny::Subclassable->new }
          elsif (eval { require JSON::PP; 1 })   { JSON::PP->new->canonical(1)->allow_nonref }
          else { die "Can't find any JSON module" }
      };
      $json;
  };
  
  sub __cleanse {
      state $cleanser = do {
          eval { require Data::Clean::JSON; 1 };
          if ($@) {
              undef;
          } else {
              Data::Clean::JSON->get_cleanser;
          }
      };
      if ($cleanser) {
          $cleanser->clean_in_place($_[0]);
      } else {
          $_[0];
      }
  }
  
  sub __gen_table {
      my ($data, $header_row, $resmeta, $format) = @_;
  
      $resmeta //= {};
  
      my @columns;
      if ($header_row) {
          @columns = @{$data->[0]};
      } else {
          @columns = map {"col$_"} 0..@{$data->[0]}-1;
      }
  
      my $column_orders; 
    SET_COLUMN_ORDERS: {
  
          my $tcos;
          if ($ENV{FORMAT_PRETTY_TABLE_COLUMN_ORDERS}) {
              $tcos = _json->encode($ENV{FORMAT_PRETTY_TABLE_COLUMN_ORDERS});
          } elsif (my $rfos = ($resmeta->{'cmdline.format_options'} //
                                   $resmeta->{format_options})) {
              my $rfo = $rfos->{'text-pretty'} // $rfos->{text} // $rfos->{any};
              if ($rfo) {
                  $tcos = $rfo->{table_column_orders};
              }
          }
          if ($tcos) {
            COLS:
              for my $cols (@$tcos) {
                  for my $col (@$cols) {
                      next COLS unless first {$_ eq $col} @columns;
                  }
                  $column_orders = $cols;
                  last SET_COLUMN_ORDERS;
              }
          }
  
          $column_orders = $resmeta->{'table.fields'};
      }
  
      if ($column_orders) {
          my @map0 = sort {
              my $idx_a = firstidx(sub {$_ eq $a->[1]},
                                                    @$column_orders) // 9999;
              my $idx_b = firstidx(sub {$_ eq $b->[1]},
                                                    @$column_orders) // 9999;
              $idx_a <=> $idx_b || $a->[1] cmp $b->[1];
          } map {[$_, $columns[$_]]} 0..@columns-1;
          my @map;
          for (0..@map0-1) {
              $map[$_] = $map0[$_][0];
          }
          my $newdata = [];
          for my $row (@$data) {
              my @newrow;
              for (0..@map-1) { $newrow[$_] = $row->[$map[$_]] }
              push @$newdata, \@newrow;
          }
          $data = $newdata;
      }
  
      if ($format eq 'text-pretty') {
          require Text::Table::Tiny;
          Text::Table::Tiny::table(rows=>$data, header_row=>$header_row) . "\n";
      } elsif ($format eq 'csv') {
          no warnings 'uninitialized';
          join(
              "",
              map {
                  my $row = $_;
                  join(
                      ",",
                      map {
                          my $cell = $_;
                          $cell =~ s/(["\\])/\\$1/g;
                          qq("$cell");
                      } @$row)."\n";
              } @$data
          );
      } else {
          no warnings 'uninitialized';
          shift @$data if $header_row;
          join("", map {join("\t", @$_)."\n"} @$data);
      }
  }
  
  sub format {
      my ($res, $format, $is_naked, $cleanse) = @_;
  
      if ($format =~ /\A(text|text-simple|text-pretty|csv)\z/) {
          $format = $format eq 'text' ?
              ((-t STDOUT) ? 'text-pretty' : 'text-simple') : $format;
          no warnings 'uninitialized';
          if ($res->[0] !~ /^(2|304)/) {
              my $fres = "ERROR $res->[0]: $res->[1]";
              if (my $prev = $res->[3]{prev}) {
                  $fres .= " ($prev->[0]: $prev->[1])";
              }
              return "$fres\n";
          } elsif ($res->[3] && $res->[3]{"x.hint.result_binary"}) {
              return $res->[2];
          } else {
              require Data::Check::Structure;
              my $data = $res->[2];
              my $max = 5;
              if (!ref($data)) {
                  $data //= "";
                  $data .= "\n" unless !length($data) || $data =~ /\n\z/;
                  return $data;
              } elsif (ref($data) eq 'ARRAY' && !@$data) {
                  return "";
              } elsif (Data::Check::Structure::is_aos($data, {max=>$max})) {
                  return join("", map {"$_\n"} @$data);
              } elsif (Data::Check::Structure::is_aoaos($data, {max=>$max})) {
                  return __gen_table($data, 0, $res->[3], $format);
              } elsif (Data::Check::Structure::is_hos($data, {max=>$max})) {
                  $data = [map {[$_, $data->{$_}]} sort keys %$data];
                  unshift @$data, ["key", "value"];
                  return __gen_table($data, 1, $res->[3], $format);
              } elsif (Data::Check::Structure::is_aohos($data, {max=>$max})) {
                  my @fieldnames;
                  if ($res->[3] && $res->[3]{'table.fields'} &&
                          $res->[3]{'table.hide_unknown_fields'}) {
                      @fieldnames = @{ $res->[3]{'table.fields'} };
                  } else {
                      my %fieldnames;
                      for my $row (@$data) {
                          $fieldnames{$_}++ for keys %$row;
                      }
                      @fieldnames = sort keys %fieldnames;
                  }
                  my $newdata = [];
                  for my $row (@$data) {
                      push @$newdata, [map {$row->{$_}} @fieldnames];
                  }
                  unshift @$newdata, \@fieldnames;
                  return __gen_table($newdata, 1, $res->[3], $format);
              } else {
                  $format = 'json-pretty';
              }
          }
      }
  
      my $tff = $res->[3]{'table.fields'};
      $res = $res->[2] if $is_naked;
  
      unless ($format =~ /\Ajson(-pretty)?\z/) {
          warn "Unknown format '$format', fallback to json-pretty";
          $format = 'json-pretty';
      }
      __cleanse($res) if ($cleanse//1);
      if ($format =~ /json/) {
          if ($tff && _json->can("sort_by") &&
                  eval { require Sort::ByExample; 1}) {
              my $cmp = Sort::ByExample->cmp($tff);
              _json->sort_by(sub { $cmp->($JSON::PP::a, $JSON::PP::b) });
          }
  
          if ($format eq 'json') {
              return _json->encode($res) . "\n";
          } else {
              _json->pretty(1);
              return _json->encode($res);
          }
      }
  }
  
  1;
  
  __END__
  
PERINCI_RESULT_FORMAT_LITE

$fatpacked{"Perinci/Sub/CoerceArgs.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_COERCEARGS';
  package Perinci::Sub::CoerceArgs;
  
  our $DATE = '2015-10-22'; 
  our $VERSION = '0.13'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Scalar::Util qw(blessed looks_like_number);
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         coerce_args
                 );
  
  our %SPEC;
  
  
  sub _coerce_to_datetime {
      my ($args, $arg_name) = @_;
  
      my $val = $args->{$arg_name};
  
      if ($val =~ /\A\d{8,}\z/) {
          require DateTime;
          $args->{$arg_name} = DateTime->from_epoch(
              epoch => $val,
              time_zone => $ENV{TZ} // "UTC",
          );
          return [200];
      } elsif ($val =~ m!\A
                         (\d{4})[/-](\d{1,2})[/-](\d{1,2})
                         (?:[ Tt](\d{1,2}):(\d{1,2}):(\d{1,2}))?
                         \z!x) {
          require DateTime;
          $args->{$arg_name} = DateTime->new(
              year => $1, month => $2, day => $3,
              hour => $4 // 0,
              minute => $4 // 0,
              second => $4 // 0,
              time_zone => $ENV{TZ} // "UTC",
          );
          return [200];
      } elsif (blessed($val)) {
          if ($val->isa("DateTime")) {
              return [200];
          } elsif ($val->isa("Time::Moment")) {
              require DateTime;
              my $tz = sprintf("%s%04d",
                               $val->offset < 0 ? "-":"+",
                               abs($val->offset/60*100));
              $args->{$arg_name} = DateTime->from_epoch(
                  epoch => $val->epoch,
                  time_zone => $tz,
              );
              return [200];
          }
      }
  
      return [400, "Can't coerce '$arg_name' to DateTime object: " .
                  "'$args->{$arg_name}'"];
  }
  
  sub _coerce_to_time_moment {
      my ($args, $arg_name) = @_;
  
      my $val = $args->{$arg_name};
  
      if ($val =~ /\A\d{8,}\z/) {
          require Time::Moment;
          $args->{$arg_name} = Time::Moment->from_epoch($val);
          return [200];
      } elsif ($val =~ m!\A
                         (\d{4})[/-](\d{1,2})[/-](\d{1,2})
                         (?:[ Tt](\d{1,2}):(\d{1,2}):(\d{1,2}))?
                         \z!x) {
          require Time::Moment;
          $args->{$arg_name} = Time::Moment->new(
              year => $1, month => $2, day => $3,
              hour => $4 // 0,
              minute => $4 // 0,
              second => $4 // 0,
          );
          return [200];
      } elsif (blessed($val)) {
          if ($val->isa("Time::Moment")) {
              return [200];
          } elsif ($val->isa("DateTime")) {
              require Time::Moment;
              $args->{$arg_name} = Time::Moment->from_object($val);
              return [200];
          }
      }
  
      return [400, "Can't coerce '$arg_name' to Time::Moment object: " .
                  "'$args->{$arg_name}'"];
  }
  
  sub _coerce_to_epoch {
      my ($args, $arg_name) = @_;
  
      my $val = $args->{$arg_name};
  
      if (looks_like_number($val)) {
          return [200];
      } elsif ($val =~ m!\A
                         (\d{4})[/-](\d{1,2})[/-](\d{1,2})
                         (?:[ Tt](\d{1,2}):(\d{1,2}):(\d{1,2}))?
                         \z!x) {
          require DateTime;
          $args->{$arg_name} = DateTime->new(
              year => $1, month => $2, day => $3,
              hour => $4 // 0,
              minute => $4 // 0,
              second => $4 // 0,
              time_zone => $ENV{TZ} // "UTC",
          )->epoch;
          return [200];
      } elsif (blessed($val)) {
          if ($val->isa("DateTime")) {
              $args->{$arg_name} = $val->epoch;
              return [200];
          } elsif ($val->isa("Time::Moment")) {
              $args->{$arg_name} = $val->epoch;
              return [200];
          }
      }
  
      return [400, "Can't coerce epoch " .
                  "'$arg_name' from '$args->{$arg_name}'"];
  }
  
  sub _coerce_to_datetime_duration {
      my ($args, $arg_name) = @_;
  
      my $val = $args->{$arg_name};
  
      my $d;
  
      if ($val =~ /\A\+?\d+(?:\.\d*)?\z/) {
          require DateTime::Duration;
          my $days = int($val/86400);
          my $secs = $val - $days*86400;
          $args->{$arg_name} = DateTime::Duration->new(
              days    => $days,
              seconds => $secs,
          );
          return [200];
      } elsif ($val =~ /\AP
                   (?:([0-9]+(?:\.[0-9]+)?)Y)?
                   (?:([0-9]+(?:\.[0-9]+)?)M)?
                   (?:([0-9]+(?:\.[0-9]+)?)W)?
                   (?:([0-9]+(?:\.[0-9]+)?)D)?
                   (?: T
                       (?:([0-9]+(?:\.[0-9]+)?)H)?
                       (?:([0-9]+(?:\.[0-9]+)?)M)?
                       (?:([0-9]+(?:\.[0-9]+)?)S)?
                   )?\z/x) {
          require DateTime::Duration;
          $args->{$arg_name} = DateTime::Duration->new(
              years   => $1 || 0,
              months  => $2 || 0,
              weeks   => $3 || 0,
              days    => $4 || 0,
              hours   => $5 || 0,
              minutes => $6 || 0,
              seconds => $7 || 0,
          );
          return [200];
      } elsif (blessed($val)) {
          if ($val->isa("DateTime::Duration")) {
              return [200];
          }
      } elsif (eval { require Time::Duration::Parse::AsHash; $d = Time::Duration::Parse::AsHash::parse_duration($val) } && !$@) {
          require DateTime::Duration;
          $args->{$arg_name} = DateTime::Duration->new(
              years   => $d->{years}   || 0,
              months  => $d->{months}  || 0,
              weeks   => $d->{weeks}   || 0,
              days    => $d->{days}    || 0,
              hours   => $d->{hours}   || 0,
              minutes => $d->{minutes} || 0,
              seconds => $d->{seconds} || 0,
          );
          return [200];
      }
  
      return [400, "Can't coerce '$arg_name' to DateTime::Duration object: " .
                  "'$args->{$arg_name}'"];
  }
  
  sub _coerce_to_secs {
      my ($args, $arg_name) = @_;
  
      my $val = $args->{$arg_name};
  
      my $d;
  
      if ($val =~ /\A\+?\d+(?:\.\d*)?\z/) {
          return [200];
      } elsif ($val =~ /\AP
                   (?:([0-9]+(?:\.[0-9]+)?)Y)?
                   (?:([0-9]+(?:\.[0-9]+)?)M)?
                   (?:([0-9]+(?:\.[0-9]+)?)W)?
                   (?:([0-9]+(?:\.[0-9]+)?)D)?
                   (?: T
                       (?:([0-9]+(?:\.[0-9]+)?)H)?
                       (?:([0-9]+(?:\.[0-9]+)?)M)?
                       (?:([0-9]+(?:\.[0-9]+)?)S)?
                   )?\z/x) {
          $args->{$arg_name} =
              (($1//0)*365 + ($2 // 0)*30 + ($3 // 0)*7 + ($4 // 0)) * 86400 +
              ($5 // 0)*3600 + ($6 // 0)*60 + ($7 // 0);
          return [200];
      } elsif (blessed($val)) {
          if ($val->isa("DateTime::Duration")) {
              my ($y, $mon, $d, $min, $s) = $val->in_units(
                  "years", "months", "days", "minutes", "seconds");
              $args->{$arg_name} =
                  ($y*365 + $mon*30 + $d) * 86400 +
                  $min*60 + $s;
              return [200];
          }
      } elsif (eval { require Time::Duration::Parse::AsHash; $d = Time::Duration::Parse::AsHash::parse_duration($val) } && !$@) {
          $args->{$arg_name} =
              ($d->{years}   // 0) * 365*86400 +
              ($d->{months}  // 0) *  30*86400 +
              ($d->{weeks}   // 0) *   7*86400 +
              ($d->{days}    // 0) *     86400 +
              ($d->{hours}   // 0) *      3600 +
              ($d->{minutes} // 0) *        60 +
              ($d->{seconds} // 0);
          return [200];
      }
  
      return [400, "Can't coerce '$arg_name' to seconds: " .
                  "'$args->{$arg_name}'"];
  }
  
  $SPEC{coerce_args} = {
      v           => 1.1,
      summary     => 'Coerce arguments',
      description => <<'_',
  
  This routine can be used when function arguments are retrieved from strings,
  like from command-line arguments in CLI application (see
  `Perinci::CmdLine::Lite` or `Perinci::CmdLine::Classic`) or from web form
  variables in web application (see `Borang`). For convenience, object or complex
  data structure can be converted from string (e.g. `DateTime` object from strings
  like `2015-03-27` or epoch integer). And filters can be applied to
  clean/preprocess the string (e.g. remove leading/trailing blanks) beforehand.
  
  _
      args => {
          meta => {
              summary => 'Rinci function metadata',
              schema  => 'hash*',
              req     => 1,
          },
          meta_is_normalized => {
              schema => 'bool*',
          },
          args => {
              summary => 'Reference to hash which store the arguments',
              schema  => 'hash*',
          },
      },
  };
  sub coerce_args {
      my %fargs = @_;
  
      my $meta = $fargs{meta} or return [400, "Please specify meta"];
      unless ($fargs{meta_is_normalized}) {
          require Perinci::Sub::Normalize;
          $meta = Perinci::Sub::Normalize::normalize_function_metadata($meta);
      }
      my $args = $fargs{args};
  
      for my $arg_name (keys %$args) {
          my $val = $args->{$arg_name};
          next unless defined($val);
          my $arg_spec = $meta->{args}{$arg_name};
          next unless $arg_spec;
  
          if (my $filters = $arg_spec->{filters}) {
              for my $filter (@$filters) {
                  if (ref($filter) eq 'CODE') {
                      $val = $filter->($val);
                  } elsif ($filter eq 'trim') {
                      $val =~ s/\A\s+//s;
                      $val =~ s/\s+\z//s;
                  } elsif ($filter eq 'ltrim') {
                      $val =~ s/\s+\z//s;
                  } elsif ($filter eq 'rtrim') {
                      $val =~ s/\A\s+//s;
                  } else {
                      return [400, "Unknown filter '$filter' ".
                                  "for argument '$arg_name'"];
                  }
              }
              $args->{$arg_name} = $val if @$filters;
          }
  
          if (my $schema = $arg_spec->{schema}) {
              my $coerce_to = $arg_spec->{'x.perl.coerce_to'} // '';
              if ($schema->[0] eq 'obj') {
                  my $class = $schema->[1]{isa} // '';
                  if ($class eq 'DateTime') {
                      my $coerce_res = _coerce_to_datetime($args, $arg_name);
                      return $coerce_res unless $coerce_res->[0] == 200;
                  } elsif ($class eq 'DateTime::Duration') {
                      my $coerce_res = _coerce_to_datetime_duration($args, $arg_name);
                      return $coerce_res unless $coerce_res->[0] == 200;
                  } elsif ($class eq 'Time::Moment') {
                      my $coerce_res = _coerce_to_time_moment($args, $arg_name);
                      return $coerce_res unless $coerce_res->[0] == 200;
                  }
              } elsif ($schema->[0] eq 'date') {
                  if ($coerce_to eq 'DateTime') {
                      my $coerce_res = _coerce_to_datetime($args, $arg_name);
                      return $coerce_res unless $coerce_res->[0] == 200;
                  } elsif ($coerce_to eq 'Time::Moment') {
                      my $coerce_res = _coerce_to_time_moment($args, $arg_name);
                      return $coerce_res unless $coerce_res->[0] == 200;
                  } elsif ($coerce_to eq 'int(epoch)') {
                      my $coerce_res = _coerce_to_epoch($args, $arg_name);
                      return $coerce_res unless $coerce_res->[0] == 200;
                  }
              } elsif ($schema->[0] eq 'duration') {
                  if ($coerce_to eq 'DateTime::Duration') {
                      my $coerce_res = _coerce_to_datetime_duration($args, $arg_name);
                      return $coerce_res unless $coerce_res->[0] == 200;
                  } elsif ($coerce_to eq 'int(secs)') {
                      my $coerce_res = _coerce_to_secs($args, $arg_name);
                      return $coerce_res unless $coerce_res->[0] == 200;
                  }
              }
          } 
      }
  
      [200, "OK", $args];
  }
  
  1;
  
  __END__
  
PERINCI_SUB_COERCEARGS

$fatpacked{"Perinci/Sub/Complete.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_COMPLETE';
  package Perinci::Sub::Complete;
  
  our $DATE = '2015-12-30'; 
  our $VERSION = '0.84'; 
  
  use 5.010001;
  use strict;
  use warnings;
  use Log::Any::IfLOG '$log';
  
  use Complete::Util qw(hashify_answer complete_array_elem combine_answers);
  use Complete::Common qw(:all);
  use Perinci::Sub::Util qw(gen_modified_sub);
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(
                         complete_from_schema
                         complete_arg_val
                         complete_arg_elem
                         complete_cli_arg
                 );
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Complete command-line argument using Rinci metadata',
  };
  
  my %common_args_riap = (
      riap_client => {
          summary => 'Optional, to perform complete_arg_val to the server',
          schema  => 'obj*',
          description => <<'_',
  
  When the argument spec in the Rinci metadata contains `completion` key, this
  means there is custom completion code for that argument. However, if retrieved
  from a remote server, sometimes the `completion` key no longer contains the code
  (it has been cleansed into a string). Moreover, the completion code needs to run
  on the server.
  
  If supplied this argument and te `riap_server_url` argument, the function will
  try to request to the server (via Riap request `complete_arg_val`). Otherwise,
  the function will just give up/decline completing.
  
  _
          },
      riap_server_url => {
          summary => 'Optional, to perform complete_arg_val to the server',
          schema  => 'str*',
          description => <<'_',
  
  See the `riap_client` argument.
  
  _
      },
      riap_uri => {
          summary => 'Optional, to perform complete_arg_val to the server',
          schema  => 'str*',
          description => <<'_',
  
  See the `riap_client` argument.
  
  _
      },
  );
  
  $SPEC{complete_from_schema} = {
      v => 1.1,
      summary => 'Complete a value from schema',
      description => <<'_',
  
  Employ some heuristics to complete a value from Sah schema. For example, if
  schema is `[str => in => [qw/new open resolved rejected/]]`, then we can
  complete from the `in` clause. Or for something like `[int => between => [1,
  20]]` we can complete using values from 1 to 20.
  
  _
      args => {
          schema => {
              summary => 'Must be normalized',
              req => 1,
          },
          word => {
              schema => [str => default => ''],
              req => 1,
          },
      },
  };
  sub complete_from_schema {
      my %args = @_;
      my $sch  = $args{schema}; 
      my $word = $args{word} // "";
  
      my $fres;
      $log->tracef("[comp][periscomp] entering complete_from_schema, word=<%s>, schema=%s", $word, $sch);
  
      my ($type, $cs) = @{$sch};
  
      my $static;
      my $words;
      eval {
          if ($cs->{is} && !ref($cs->{is})) {
              $log->tracef("[comp][periscomp] adding completion from 'is' clause");
              push @$words, $cs->{is};
              $static++;
              return; 
          }
          if ($cs->{in}) {
              $log->tracef("[comp][periscomp] adding completion from 'in' clause");
              push @$words, grep {!ref($_)} @{ $cs->{in} };
              $static++;
              return; 
          }
          if ($type eq 'any') {
              require Data::Sah::Normalize;
              if ($cs->{of} && @{ $cs->{of} }) {
                  $fres = combine_answers(
                      grep { defined } map {
                          complete_from_schema(
                              schema=>Data::Sah::Normalize::normalize_schema($_),
                              word => $word,
                          )
                      } @{ $cs->{of} }
                  );
                  goto RETURN_RES; 
              }
          }
          if ($type eq 'bool') {
              $log->tracef("[comp][periscomp] adding completion from possible values of bool");
              push @$words, 0, 1;
              $static++;
              return; 
          }
          if ($type eq 'int') {
              my $limit = 100;
              if ($cs->{between} &&
                      $cs->{between}[0] - $cs->{between}[0] <= $limit) {
                  $log->tracef("[comp][periscomp] adding completion from 'between' clause");
                  push @$words, $cs->{between}[0] .. $cs->{between}[1];
                  $static++;
              } elsif ($cs->{xbetween} &&
                           $cs->{xbetween}[0] - $cs->{xbetween}[0] <= $limit) {
                  $log->tracef("[comp][periscomp] adding completion from 'xbetween' clause");
                  push @$words, $cs->{xbetween}[0]+1 .. $cs->{xbetween}[1]-1;
                  $static++;
              } elsif (defined($cs->{min}) && defined($cs->{max}) &&
                           $cs->{max}-$cs->{min} <= $limit) {
                  $log->tracef("[comp][periscomp] adding completion from 'min' & 'max' clauses");
                  push @$words, $cs->{min} .. $cs->{max};
                  $static++;
              } elsif (defined($cs->{min}) && defined($cs->{xmax}) &&
                           $cs->{xmax}-$cs->{min} <= $limit) {
                  $log->tracef("[comp][periscomp] adding completion from 'min' & 'xmax' clauses");
                  push @$words, $cs->{min} .. $cs->{xmax}-1;
                  $static++;
              } elsif (defined($cs->{xmin}) && defined($cs->{max}) &&
                           $cs->{max}-$cs->{xmin} <= $limit) {
                  $log->tracef("[comp][periscomp] adding completion from 'xmin' & 'max' clauses");
                  push @$words, $cs->{xmin}+1 .. $cs->{max};
                  $static++;
              } elsif (defined($cs->{xmin}) && defined($cs->{xmax}) &&
                           $cs->{xmax}-$cs->{xmin} <= $limit) {
                  $log->tracef("[comp][periscomp] adding completion from 'xmin' & 'xmax' clauses");
                  push @$words, $cs->{xmin}+1 .. $cs->{xmax}-1;
                  $static++;
              } elsif (length($word) && $word !~ /\A-?\d*\z/) {
                  $log->tracef("[comp][periscomp] word not an int");
                  $words = [];
              } else {
                  $words = [];
                  for my $sign ("", "-") {
                      for ("", 0..9) {
                          my $i = $sign . $word . $_;
                          next unless length $i;
                          next unless $i =~ /\A-?\d+\z/;
                          next if $i eq '-0';
                          next if $i =~ /\A-?0\d/;
                          next if $cs->{between} &&
                              ($i < $cs->{between}[0] ||
                                   $i > $cs->{between}[1]);
                          next if $cs->{xbetween} &&
                              ($i <= $cs->{xbetween}[0] ||
                                   $i >= $cs->{xbetween}[1]);
                          next if defined($cs->{min} ) && $i <  $cs->{min};
                          next if defined($cs->{xmin}) && $i <= $cs->{xmin};
                          next if defined($cs->{max} ) && $i >  $cs->{max};
                          next if defined($cs->{xmin}) && $i >= $cs->{xmax};
                          push @$words, $i;
                      }
                  }
                  $words = [sort @$words];
              }
              return; 
          }
          if ($type eq 'float') {
              if (length($word) && $word !~ /\A-?\d*(\.\d*)?\z/) {
                  $log->tracef("[comp][periscomp] word not a float");
                  $words = [];
              } else {
                  $words = [];
                  for my $sig ("", "-") {
                      for ("", 0..9,
                           ".0",".1",".2",".3",".4",".5",".6",".7",".8",".9") {
                          my $f = $sig . $word . $_;
                          next unless length $f;
                          next unless $f =~ /\A-?\d+(\.\d+)?\z/;
                          next if $f eq '-0';
                          next if $f =~ /\A-?0\d\z/;
                          next if $cs->{between} &&
                              ($f < $cs->{between}[0] ||
                                   $f > $cs->{between}[1]);
                          next if $cs->{xbetween} &&
                              ($f <= $cs->{xbetween}[0] ||
                                   $f >= $cs->{xbetween}[1]);
                          next if defined($cs->{min} ) && $f <  $cs->{min};
                          next if defined($cs->{xmin}) && $f <= $cs->{xmin};
                          next if defined($cs->{max} ) && $f >  $cs->{max};
                          next if defined($cs->{xmin}) && $f >= $cs->{xmax};
                          push @$words, $f;
                      }
                  }
              }
              return; 
          }
      }; 
  
      $log->tracef("[periscomp] complete_from_schema died: %s", $@) if $@;
  
      goto RETURN_RES unless $words;
      $fres = hashify_answer(
          complete_array_elem(array=>$words, word=>$word),
          {static=>$static && $word eq '' ? 1:0},
      );
  
    RETURN_RES:
      $log->tracef("[comp][periscomp] leaving complete_from_schema, result=%s", $fres);
      $fres;
  }
  
  $SPEC{complete_arg_val} = {
      v => 1.1,
      summary => 'Given argument name and function metadata, complete value',
      description => <<'_',
  
  Will attempt to complete using the completion routine specified in the argument
  specification (the `completion` property, or in the case of `complete_arg_elem`
  function, the `element_completion` property), or if that is not specified, from
  argument's schema using `complete_from_schema`.
  
  Completion routine will get `%args`, with the following keys:
  
  * `word` (str, the word to be completed)
  * `ci` (bool, whether string matching should be case-insensitive)
  * `arg` (str, the argument name which value is currently being completed)
  * `index (int, only for the `complete_arg_elem` function, the index in the
     argument array that is currently being completed, starts from 0)
  * `args` (hash, the argument hash to the function, so far)
  
  as well as extra keys from `extras` (but these won't overwrite the above
  standard keys).
  
  Completion routine should return a completion answer structure (described in
  `Complete`) which is either a hash or an array. The simplest form of answer is
  just to return an array of strings. Completion routine can also return undef to
  express declination.
  
  _
      args => {
          meta => {
              summary => 'Rinci function metadata, must be normalized',
              schema => 'hash*',
              req => 1,
          },
          arg => {
              summary => 'Argument name',
              schema => 'str*',
              req => 1,
          },
          word => {
              summary => 'Word to be completed',
              schema => ['str*', default => ''],
          },
          args => {
              summary => 'Collected arguments so far, '.
                  'will be passed to completion routines',
              schema  => 'hash',
          },
          extras => {
              summary => 'Add extra arguments to completion routine',
              schema  => 'hash',
              description => <<'_',
  
  The keys from this `extras` hash will be merged into the final `%args` passed to
  completion routines. Note that standard keys like `word`, `cword`, `ci`, and so
  on as described in the function description will not be overwritten by this.
  
  _
          },
  
          %common_args_riap,
      },
      result_naked => 1,
      result => {
          schema => 'array', 
      },
  };
  sub complete_arg_val {
      my %args = @_;
  
      $log->tracef("[comp][periscomp] entering complete_arg_val, arg=<%s>", $args{arg});
      my $fres;
  
      my $extras = $args{extras} // {};
  
      my $meta = $args{meta} or do {
          $log->tracef("[comp][periscomp] meta is not supplied, declining");
          goto RETURN_RES;
      };
      my $arg  = $args{arg} or do {
          $log->tracef("[comp][periscomp] arg is not supplied, declining");
          goto RETURN_RES;
      };
      my $word = $args{word} // '';
  
  
      my $args_prop = $meta->{args} // {};
      my $arg_spec = $args_prop->{$arg} or do {
          $log->tracef("[comp][periscomp] arg '$arg' is not specified in meta, declining");
          goto RETURN_RES;
      };
  
      my $static;
      eval { 
  
          my $comp;
        GET_COMP_ROUTINE:
          {
              $comp = $arg_spec->{completion};
              if ($comp) {
                  $log->tracef("[comp][periscomp] using arg completion routine from 'completion' property");
                  last GET_COMP_ROUTINE;
              }
              my $xcomp = $arg_spec->{'x.completion'};
              if ($xcomp) {
                  require Module::Path::More;
                  my $mod = "Perinci::Sub::XCompletion::$xcomp->[0]";
                  if (Module::Path::More::module_path(module=>$mod)) {
                      $log->tracef("[comp][periscomp] loading module %s ...", $mod);
                      my $mod_pm = $mod; $mod_pm =~ s!::!/!g; $mod_pm .= ".pm";
                      require $mod_pm;
                      my $fref = \&{"$mod\::gen_completion"};
                      $comp = $fref->(%{ $xcomp->[1] });
                  }
                  if ($comp) {
                      $log->tracef("[comp][periscomp] using arg completion routine from 'x.completion' attribute");
                      last GET_COMP_ROUTINE;
                  }
              }
              my $ent = $arg_spec->{'x.schema.entity'};
              if ($ent) {
                  require Module::Path::More;
                  my $mod = "Perinci::Sub::ArgEntity::$ent";
                  if (Module::Path::More::module_path(module=>$mod)) {
                      $log->tracef("[comp][periscomp] loading module %s ...", $mod);
                      my $mod_pm = $mod; $mod_pm =~ s!::!/!g; $mod_pm .= ".pm";
                      require $mod_pm;
                      if (defined &{"$mod\::complete_arg_val"}) {
                          $log->tracef("[comp][periscomp] using arg completion routine from complete_arg_val() from %s", $mod);
                          $comp = \&{"$mod\::complete_arg_val"};
                          last GET_COMP_ROUTINE;
                      }
                  }
              }
          } 
  
          if ($comp) {
              if (ref($comp) eq 'CODE') {
                  $log->tracef("[comp][periscomp] invoking arg completion routine");
                  $fres = $comp->(
                      %$extras,
                      word=>$word, arg=>$arg, args=>$args{args});
                  return; 
              } elsif (ref($comp) eq 'ARRAY') {
                  $log->tracef("[comp][periscomp] using array specified in arg completion routine: %s", $comp);
                  $fres = complete_array_elem(array=>$comp, word=>$word);
                  $static++;
                  return; 
              }
  
              $log->tracef("[comp][periscomp] arg spec's 'completion' property is not a coderef or arrayref");
              if ($args{riap_client} && $args{riap_server_url}) {
                  $log->tracef("[comp][periscomp] trying to perform complete_arg_val request to Riap server");
                  my $res = $args{riap_client}->request(
                      complete_arg_val => $args{riap_server_url},
                      {(uri=>$args{riap_uri}) x !!defined($args{riap_uri}),
                       arg=>$arg, word=>$word},
                  );
                  if ($res->[0] != 200) {
                      $log->tracef("[comp][periscomp] Riap request failed (%s), declining", $res);
                      return; 
                  }
                  $fres = $res->[2];
                  return; 
              }
  
              $log->tracef("[comp][periscomp] declining");
              return; 
          }
  
          my $sch = $arg_spec->{schema};
          unless ($sch) {
              $log->tracef("[comp][periscomp] arg spec does not specify schema, declining");
              return; 
          };
  
  
          $fres = complete_from_schema(schema=>$sch, word=>$word);
      };
      $log->debug("[comp][periscomp] completion died: $@") if $@;
      unless ($fres) {
          $log->tracef("[comp][periscomp] no completion from metadata possible, declining");
          goto RETURN_RES;
      }
  
      $fres = hashify_answer($fres);
      $fres->{static} //= $static && $word eq '' ? 1:0;
    RETURN_RES:
      $log->tracef("[comp][periscomp] leaving complete_arg_val, result=%s", $fres);
      $fres;
  }
  
  gen_modified_sub(
      output_name  => 'complete_arg_elem',
      install_sub  => 0,
      base_name    => 'complete_arg_val',
      summary      => 'Given argument name and function metadata, '.
          'complete array element',
      add_args     => {
          index => {
              summary => 'Index of element to complete',
              schema  => [int => min => 0],
          },
      },
  );
  sub complete_arg_elem {
      require Data::Sah::Normalize;
  
      my %args = @_;
  
      my $fres;
  
      $log->tracef("[comp][periscomp] entering complete_arg_elem, arg=<%s>, index=<%d>",
                   $args{arg}, $args{index});
  
      my $extras = $args{extras} // {};
  
      my $ourextras = {arg=>$args{arg}, args=>$args{args}};
  
      my $meta = $args{meta} or do {
          $log->tracef("[comp][periscomp] meta is not supplied, declining");
          goto RETURN_RES;
      };
      my $arg  = $args{arg} or do {
          $log->tracef("[comp][periscomp] arg is not supplied, declining");
          goto RETURN_RES;
      };
      defined(my $index = $args{index}) or do {
          $log->tracef("[comp][periscomp] index is not supplied, declining");
          goto RETURN_RES;
      };
      my $word = $args{word} // '';
  
  
      my $args_prop = $meta->{args} // {};
      my $arg_spec = $args_prop->{$arg} or do {
          $log->tracef("[comp][periscomp] arg '$arg' is not specified in meta, declining");
          goto RETURN_RES;
      };
  
      my $static;
      eval { 
  
          my $elcomp;
        GET_ELCOMP_ROUTINE:
          {
              $elcomp = $arg_spec->{element_completion};
              if ($elcomp) {
                  $log->tracef("[comp][periscomp] using arg element completion routine from 'element_completion' property");
                  last GET_ELCOMP_ROUTINE;
              }
              my $xelcomp = $arg_spec->{'x.element_completion'};
              if ($xelcomp) {
                 require Module::Path::More;
                  my $mod = "Perinci::Sub::XCompletion::$xelcomp->[0]";
                  if (Module::Path::More::module_path(module=>$mod)) {
                      $log->tracef("[comp][periscomp] loading module %s ...", $mod);
                      my $mod_pm = $mod; $mod_pm =~ s!::!/!g; $mod_pm .= ".pm";
                      require $mod_pm;
                      my $fref = \&{"$mod\::gen_completion"};
                      $elcomp = $fref->(%{ $xelcomp->[1] });
                  }
                  if ($elcomp) {
                      $log->tracef("[comp][periscomp] using arg element completion routine from 'x.element_completion' attribute");
                      last GET_ELCOMP_ROUTINE;
                  }
              }
              my $ent = $arg_spec->{'x.schema.element_entity'};
              if ($ent) {
                  require Module::Path::More;
                  my $mod = "Perinci::Sub::ArgEntity::$ent";
                  if (Module::Path::More::module_path(module=>$mod)) {
                      $log->tracef("[comp][periscomp] loading module %s ...", $mod);
                      my $mod_pm = $mod; $mod_pm =~ s!::!/!g; $mod_pm .= ".pm";
                      require $mod_pm;
                      if (defined &{"$mod\::complete_arg_val"}) {
                          $log->tracef("[comp][periscomp] using arg element completion routine from complete_arg_val() from %s", $mod);
                          $elcomp = \&{"$mod\::complete_arg_val"};
                          last GET_ELCOMP_ROUTINE;
                      }
                  }
              }
          } 
  
          $ourextras->{index} = $index;
          if ($elcomp) {
              if (ref($elcomp) eq 'CODE') {
                  $log->tracef("[comp][periscomp] invoking arg element completion routine");
                  $fres = $elcomp->(
                      %$extras,
                      %$ourextras,
                      word=>$word);
                  return; 
              } elsif (ref($elcomp) eq 'ARRAY') {
                  $log->tracef("[comp][periscomp] using array specified in arg element completion routine: %s", $elcomp);
                  $fres = complete_array_elem(array=>$elcomp, word=>$word);
                  $static = $word eq '';
              }
  
              $log->tracef("[comp][periscomp] arg spec's 'element_completion' property is not a coderef or ".
                               "arrayref");
              if ($args{riap_client} && $args{riap_server_url}) {
                  $log->tracef("[comp][periscomp] trying to perform complete_arg_elem request to Riap server");
                  my $res = $args{riap_client}->request(
                      complete_arg_elem => $args{riap_server_url},
                      {(uri=>$args{riap_uri}) x !!defined($args{riap_uri}),
                       arg=>$arg, args=>$args{args}, word=>$word,
                       index=>$index},
                  );
                  if ($res->[0] != 200) {
                      $log->tracef("[comp][periscomp] Riap request failed (%s), declining", $res);
                      return; 
                  }
                  $fres = $res->[2];
                  return; 
              }
  
              $log->tracef("[comp][periscomp] declining");
              return; 
          }
  
          my $sch = $arg_spec->{schema};
          unless ($sch) {
              $log->tracef("[comp][periscomp] arg spec does not specify schema, declining");
              return; 
          };
  
  
          my ($type, $cs) = @{ $sch };
          if ($type ne 'array') {
              $log->tracef("[comp][periscomp] can't complete element for non-array");
              return; 
          }
  
          unless ($cs->{of}) {
              $log->tracef("[comp][periscomp] schema does not specify 'of' clause, declining");
              return; 
          }
  
          my $elsch = Data::Sah::Normalize::normalize_schema($cs->{of});
  
          $fres = complete_from_schema(schema=>$elsch, word=>$word);
      };
      $log->debug("[comp][periscomp] completion died: $@") if $@;
      unless ($fres) {
          $log->tracef("[comp][periscomp] no completion from metadata possible, declining");
          goto RETURN_RES;
      }
  
      $fres = hashify_answer($fres);
      $fres->{static} //= $static && $word eq '' ? 1:0;
    RETURN_RES:
      $log->tracef("[comp][periscomp] leaving complete_arg_elem, result=%s", $fres);
      $fres;
  }
  
  $SPEC{complete_cli_arg} = {
      v => 1.1,
      summary => 'Complete command-line argument using Rinci function metadata',
      description => <<'_',
  
  This routine uses `Perinci::Sub::GetArgs::Argv` to generate `Getopt::Long`
  specification from arguments list in Rinci function metadata and common options.
  Then, it will use `Complete::Getopt::Long` to complete option names, option
  values, as well as arguments.
  
  _
      args => {
          meta => {
              summary => 'Rinci function metadata',
              schema => 'hash*',
              req => 1,
          },
          words => {
              summary => 'Command-line arguments',
              schema => ['array*' => {of=>'str*'}],
              req => 1,
          },
          cword => {
              summary => 'On which argument cursor is located (zero-based)',
              schema => 'int*',
              req => 1,
          },
          completion => {
              summary => 'Supply custom completion routine',
              description => <<'_',
  
  If supplied, instead of the default completion routine, this code will be called
  instead. Will receive all arguments that `Complete::Getopt::Long` will pass, and
  additionally:
  
  * `arg` (str, the name of function argument)
  * `args` (hash, the function arguments formed so far)
  * `index` (int, if completing argument element value)
  
  _
              schema => 'code*',
          },
          per_arg_json => {
              summary => 'Will be passed to Perinci::Sub::GetArgs::Argv',
              schema  => 'bool',
          },
          per_arg_yaml => {
              summary => 'Will be passed to Perinci::Sub::GetArgs::Argv',
              schema  => 'bool',
          },
          common_opts => {
              summary => 'Common options',
              description => <<'_',
  
  A hash where the values are hashes containing these keys: `getopt` (Getopt::Long
  option specification), `handler` (Getopt::Long handler). Will be passed to
  `get_args_from_argv()`. Example:
  
      {
          help => {
              getopt  => 'help|h|?',
              handler => sub { ... },
              summary => 'Display help and exit',
          },
          version => {
              getopt  => 'version|v',
              handler => sub { ... },
              summary => 'Display version and exit',
          },
      }
  
  _
              schema => ['hash*'],
          },
          extras => {
              summary => 'Add extra arguments to completion routine',
              schema  => 'hash',
              description => <<'_',
  
  The keys from this `extras` hash will be merged into the final `%args` passed to
  completion routines. Note that standard keys like `word`, `cword`, `ci`, and so
  on as described in the function description will not be overwritten by this.
  
  _
          },
          func_arg_starts_at => {
              schema  => 'int*',
              default => 0,
              description => <<'_',
  
  This is a (temporary?) workaround for Perinci::CmdLine. In an application with
  subcommands (e.g. `cmd --verbose subcmd arg0 arg1 ...`), then `words` will still
  contain the subcommand name. Positional function arguments then start at 1 not
  0. This option allows offsetting function arguments.
  
  _
          },
          %common_args_riap,
      },
      result_naked => 1,
      result => {
          schema => 'hash*',
          description => <<'_',
  
  You can use `format_completion` function in `Complete::Bash` module to format
  the result of this function for bash.
  
  _
      },
  };
  sub complete_cli_arg {
      require Complete::Getopt::Long;
      require Perinci::Sub::GetArgs::Argv;
  
      my %args   = @_;
      my $meta   = $args{meta} or die "Please specify meta";
      my $words  = $args{words} or die "Please specify words";
      my $cword  = $args{cword}; defined($cword) or die "Please specify cword";
      my $copts  = $args{common_opts} // {};
      my $comp   = $args{completion};
      my $extras = {
          %{ $args{extras} // {} },
          words => $args{words},
          cword => $args{cword},
      };
  
      my $fname = __PACKAGE__ . "::complete_cli_arg"; 
      my $fres;
  
      my $word   = $words->[$cword];
      my $args_prop = $meta->{args} // {};
  
      $log->tracef('[comp][periscomp] entering %s(), words=%s, cword=%d, word=<%s>',
                   $fname, $words, $cword, $word);
  
      my $genres = Perinci::Sub::GetArgs::Argv::gen_getopt_long_spec_from_meta(
          meta         => $meta,
          common_opts  => $copts,
          per_arg_json => $args{per_arg_json},
          per_arg_yaml => $args{per_arg_yaml},
          ignore_converted_code => 1,
      );
      die "Can't generate getopt spec from meta: $genres->[0] - $genres->[1]"
          unless $genres->[0] == 200;
      my $gospec = $genres->[2];
      my $specmeta = $genres->[3]{'func.specmeta'};
  
      my $gares = Perinci::Sub::GetArgs::Argv::get_args_from_argv(
          argv   => [@$words],
          meta   => $meta,
          strict => 0,
      );
  
      my $copts_by_ospec = {};
      for (keys %$copts) { $copts_by_ospec->{$copts->{$_}{getopt}}=$copts->{$_} }
  
      my $compgl_comp = sub {
          $log->tracef("[comp][periscomp] entering completion routine (that we supply to Complete::Getopt::Long)");
          my %cargs = @_;
          my $type  = $cargs{type};
          my $ospec = $cargs{ospec} // '';
          my $word  = $cargs{word};
  
          my $fres;
  
          my %rargs = (
              riap_server_url => $args{riap_server_url},
              riap_uri        => $args{riap_uri},
              riap_client     => $args{riap_client},
          );
  
          if (my $sm = $specmeta->{$ospec}) {
              $cargs{type} = 'optval';
              if ($sm->{arg}) {
                  $log->tracef("[comp][periscomp] completing option value for a known function argument, arg=<%s>, ospec=<%s>", $sm->{arg}, $ospec);
                  $cargs{arg} = $sm->{arg};
                  my $arg_spec = $args_prop->{$sm->{arg}} or goto RETURN_RES;
                  if ($comp) {
                      $log->tracef("[comp][periscomp] invoking routine supplied from 'completion' argument");
                      my $compres;
                      eval { $compres = $comp->(%cargs) };
                      $log->debug("[comp][periscomp] completion died: $@") if $@;
                      $log->tracef("[comp][periscomp] result from 'completion' routine: %s", $compres);
                      if ($compres) {
                          $fres = $compres;
                          goto RETURN_RES;
                      }
                  }
                  if ($ospec =~ /\@$/) {
                      $fres = complete_arg_elem(
                          meta=>$meta, arg=>$sm->{arg}, args=>$gares->[2],
                          word=>$word, index=>$cargs{nth}, 
                          extras=>$extras, %rargs);
                      goto RETURN_RES;
                  } else {
                      $fres = complete_arg_val(
                          meta=>$meta, arg=>$sm->{arg}, args=>$gares->[2],
                          word=>$word, extras=>$extras, %rargs);
                      goto RETURN_RES;
                  }
              } else {
                  $log->tracef("[comp][periscomp] completing option value for a common option, ospec=<%s>", $ospec);
                  $cargs{arg}  = undef;
                  my $codata = $copts_by_ospec->{$ospec};
                  if ($comp) {
                      $log->tracef("[comp][periscomp] invoking routine supplied from 'completion' argument");
                      my $res;
                      eval { $res = $comp->(%cargs) };
                      $log->debug("[comp][periscomp] completion died: $@") if $@;
                      if ($res) {
                          $fres = $res;
                          goto RETURN_RES;
                      }
                  }
                  if ($codata->{completion}) {
                      $cargs{arg}  = undef;
                      $log->tracef("[comp][periscomp] completing with common option's 'completion' property");
                      my $res;
                      eval { $res = $codata->{completion}->(%cargs) };
                      $log->debug("[comp][periscomp] completion died: $@") if $@;
                      if ($res) {
                          $fres = $res;
                          goto RETURN_RES;
                      }
                  }
                  if ($codata->{schema}) {
                      require Data::Sah::Normalize;
                      my $nsch = Data::Sah::Normalize::normalize_schema(
                          $codata->{schema});
                      $log->tracef("[comp][periscomp] completing with common option's schema");
                      $fres = complete_from_schema(
                          schema => $nsch, word=>$word);
                      goto RETURN_RES;
                  }
                  goto RETURN_RES;
              }
          } elsif ($type eq 'arg') {
              $log->tracef("[comp][periscomp] completing argument #%d", $cargs{argpos});
              $cargs{type} = 'arg';
  
              my $pos = $cargs{argpos};
              my $fasa = $args{func_arg_starts_at} // 0;
  
              for my $an (keys %$args_prop) {
                  my $arg_spec = $args_prop->{$an};
                  next unless !$arg_spec->{greedy} &&
                      defined($arg_spec->{pos}) && $arg_spec->{pos} == $pos - $fasa;
                  $log->tracef("[comp][periscomp] this argument position is for non-greedy function argument <%s>", $an);
                  $cargs{arg} = $an;
                  if ($comp) {
                      $log->tracef("[comp][periscomp] invoking routine supplied from 'completion' argument");
                      my $res;
                      eval { $res = $comp->(%cargs) };
                      $log->debug("[comp][periscomp] completion died: $@") if $@;
                      if ($res) {
                          $fres = $res;
                          goto RETURN_RES;
                      }
                  }
                  $fres = complete_arg_val(
                      meta=>$meta, arg=>$an, args=>$gares->[2],
                      word=>$word, extras=>$extras, %rargs);
                  goto RETURN_RES;
              }
  
              for my $an (sort {
                  ($args_prop->{$b}{pos} // 9999) <=> ($args_prop->{$a}{pos} // 9999)
              } keys %$args_prop) {
                  my $arg_spec = $args_prop->{$an};
                  next unless $arg_spec->{greedy} &&
                      defined($arg_spec->{pos}) && $arg_spec->{pos} <= $pos - $fasa;
                  my $index = $pos - $fasa - $arg_spec->{pos};
                  $cargs{arg} = $an;
                  $cargs{index} = $index;
                  $log->tracef("[comp][periscomp] this position is for greedy function argument <%s>'s element[%d]", $an, $index);
                  if ($comp) {
                      $log->tracef("[comp][periscomp] invoking routine supplied from 'completion' argument");
                      my $res;
                      eval { $res = $comp->(%cargs) };
                      $log->debug("[comp][periscomp] completion died: $@") if $@;
                      if ($res) {
                          $fres = $res;
                          goto RETURN_RES;
                      }
                  }
                  $fres = complete_arg_elem(
                      meta=>$meta, arg=>$an, args=>$gares->[2],
                      word=>$word, index=>$index, extras=>$extras, %rargs);
                  goto RETURN_RES;
              }
  
              $log->tracef("[comp][periscomp] there is no matching function argument at this position");
              if ($comp) {
                  $log->tracef("[comp][periscomp] invoking routine supplied from 'completion' argument");
                  my $res;
                  eval { $res = $comp->(%cargs) };
                  $log->debug("[comp][periscomp] completion died: $@") if $@;
                  if ($res) {
                      $fres = $res;
                      goto RETURN_RES;
                  }
              }
              goto RETURN_RES;
          } else {
              $log->tracef("[comp][periscomp] completing option value for an unknown/ambiguous option, declining ...");
              goto RETURN_RES;
          }
        RETURN_RES:
          $log->tracef("[comp][periscomp] leaving completion routine (that we supply to Complete::Getopt::Long)");
          $fres;
      }; 
  
      $fres = Complete::Getopt::Long::complete_cli_arg(
          getopt_spec => $gospec,
          words       => $words,
          cword       => $cword,
          completion  => $compgl_comp,
          extras      => $extras,
      );
  
    RETURN_RES:
      $log->tracef('[comp][periscomp] leaving %s(), result=%s',
                   $fname, $fres);
      $fres;
  }
  
  1;
  
  __END__
  
PERINCI_SUB_COMPLETE

$fatpacked{"Perinci/Sub/ConvertArgs/Argv.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_CONVERTARGS_ARGV';
  package Perinci::Sub::ConvertArgs::Argv;
  
  our $DATE = '2015-12-17'; 
  our $VERSION = '0.07'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Data::Sah::Util::Type qw(is_simple);
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(convert_args_to_argv);
  
  our %SPEC;
  
  sub _json {
      require JSON;
      state $json = JSON->new->allow_nonref;
      $json->encode($_[0]);
  }
  
  sub _encode {
      ref($_[0]) ? _json($_[0]) : $_[0];
  }
  
  $SPEC{convert_args_to_argv} = {
      v => 1.1,
      summary => 'Convert hash arguments to command-line options (and arguments)',
      description => <<'_',
  
  Convert hash arguments to command-line arguments. This is the reverse of
  `Perinci::Sub::GetArgs::Argv::get_args_from_argv`.
  
  Note: currently the function expects schemas in metadata to be normalized
  already.
  
  _
      args => {
          args => {req=>1, schema=>'hash*', pos=>0},
          meta => {req=>0, schema=>'hash*', pos=>1},
          use_pos => {
              summary => 'Whether to use positional arguments',
              schema  => 'bool',
              description => <<'_',
  
  For example, given this metadata:
  
      {
          v => 1.1,
          args => {
            arg1 => {pos=>0, req=>1},
            arg2 => {pos=>1},
            arg3 => {},
          },
      }
  
  then under `use_pos=0` the hash `{arg1=>1, arg2=>2, arg3=>'a b'}` will be
  converted to `['--arg1', 1, '--arg2', 2, '--arg3', 'a b']`. Meanwhile if
  `use_pos=1` the same hash will be converted to `[1, 2, '--arg3', 'a b']`.
  
  _
          },
      },
  };
  sub convert_args_to_argv {
      my %fargs = @_;
  
      my $iargs = $fargs{args} or return [400, "Please specify args"];
      my $meta  = $fargs{meta} // {v=>1.1};
      my $args_prop = $meta->{args} // {};
  
      my $v = $meta->{v} // 1.0;
      return [412, "Sorry, only metadata version 1.1 is supported (yours: $v)"]
          unless $v == 1.1;
  
      my @argv;
      my %iargs = %$iargs; 
  
      if ($fargs{use_pos}) {
          for my $arg (sort {$args_prop->{$a}{pos} <=> $args_prop->{$b}{pos}}
                           grep {defined $args_prop->{$_}{pos}} keys %iargs) {
              my $pos = $args_prop->{$arg}{pos};
              if ($args_prop->{$arg}{greedy}) {
                  my $sch = $args_prop->{$arg}{schema};
                  my $is_array_of_simple = $sch && $sch->[0] eq 'array' &&
                      $sch->[1]{of} && is_simple($sch->[1]{of});
                  for my $el (@{ $iargs{$arg} }) {
                      $argv[$pos] = $is_array_of_simple ? $el : _encode($el);
                      $pos++;
                  }
              } else {
                  $argv[$pos] = _encode($iargs{$arg});
              }
              delete $iargs{$arg};
          }
      }
  
      for (sort keys %iargs) {
          my $sch = $args_prop->{$_}{schema};
          my $is_bool = $sch && $sch->[0] eq 'bool';
          my $is_array_of_simple = $sch && $sch->[0] eq 'array' &&
              $sch->[1]{of} && is_simple($sch->[1]{of});
          my $can_be_comma_separated = $is_array_of_simple &&
              $sch->[1]{of}[0] =~ /\A(int|float)\z/; 
          my $opt = $_; $opt =~ s/_/-/g;
          my $dashopt = length($opt) > 1 ? "--$opt" : "-$opt";
          if ($is_bool) {
              if ($iargs{$_}) {
                  push @argv, $dashopt;
              } else {
                  push @argv, "--no$opt";
              }
          } elsif ($can_be_comma_separated) {
              push @argv, "$dashopt", join(",", @{ $iargs{$_} });
          } elsif ($is_array_of_simple) {
              for (@{ $iargs{$_} }) {
                  push @argv, "$dashopt", $_;
              }
          } else {
              if (ref $iargs{$_}) {
                  push @argv, "$dashopt-json", _encode($iargs{$_});
              } else {
                  push @argv, $dashopt, "$iargs{$_}";
              }
          }
      }
      [200, "OK", \@argv];
  }
  
  1;
  
  __END__
  
PERINCI_SUB_CONVERTARGS_ARGV

$fatpacked{"Perinci/Sub/ConvertArgs/Array.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_CONVERTARGS_ARRAY';
  package Perinci::Sub::ConvertArgs::Array;
  
  our $DATE = '2015-12-29'; 
  our $VERSION = '0.08'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(convert_args_to_array);
  
  our %SPEC;
  
  $SPEC{convert_args_to_array} = {
      v => 1.1,
      summary => 'Convert hash arguments to array',
      description => <<'_',
  
  Using information in 'args' property (particularly the 'pos' and 'greedy' of
  each argument spec), convert hash arguments to array.
  
  Example:
  
      my $meta = {
          v => 1.1,
          summary => 'Multiply 2 numbers (a & b)',
          args => {
              a => ['num*' => {arg_pos=>0}],
              b => ['num*' => {arg_pos=>1}],
          }
      }
  
  then 'convert_args_to_array(args=>{a=>2, b=>3}, meta=>$meta)' will produce:
  
      [200, "OK", [2, 3]]
  
  _
      args => {
          args => {req=>1, schema=>'hash*', pos=>0},
          meta => {req=>1, schema=>'hash*', pos=>1},
      },
  };
  sub convert_args_to_array {
      my %input_args   = @_;
      my $args         = $input_args{args} or return [400, "Please specify args"];
      my $meta         = $input_args{meta} or return [400, "Please specify meta"];
      my $args_prop    = $meta->{args} // {};
  
      my $v = $meta->{v} // 1.0;
      return [412, "Sorry, only metadata version 1.1 is supported (yours: $v)"]
          unless $v == 1.1;
  
  
      my @array;
  
      while (my ($k, $v) = each %$args) {
          next if $k =~ /\A-/; 
          my $as = $args_prop->{$k};
          return [412, "Argument $k: Not specified in args property"] unless $as;
          my $pos = $as->{pos};
          return [412, "Argument $k: No pos specified in arg spec"]
              unless defined $pos;
          if ($as->{greedy}) {
              $v = [$v] if ref($v) ne 'ARRAY';
              for (@array .. $pos-1) {
                  $array[$_] = undef;
              }
              splice @array, $pos, 0, @$v;
          } else {
              $array[$pos] = $v;
          }
      }
      [200, "OK", \@array];
  }
  
  1;
  
  __END__
  
PERINCI_SUB_CONVERTARGS_ARRAY

$fatpacked{"Perinci/Sub/GetArgs/Argv.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_GETARGS_ARGV';
  package Perinci::Sub::GetArgs::Argv;
  
  our $DATE = '2015-12-17'; 
  our $VERSION = '0.70'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Data::Sah::Normalize qw(normalize_schema);
  use Getopt::Long::Negate::EN qw(negations_for_option);
  use Getopt::Long::Util qw(parse_getopt_long_opt_spec);
  use List::Util qw(first);
  use Perinci::Sub::GetArgs::Array qw(get_args_from_array);
  use Perinci::Sub::Util qw(err);
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         gen_getopt_long_spec_from_meta
                         get_args_from_argv
                 );
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Get subroutine arguments from command line arguments (@ARGV)',
  };
  
  my $re_simple_scalar = qr/^(str|num|int|float|bool|buf|re|date|duration)$/;
  
  sub _parse_json {
      my $str = shift;
  
      state $json = do {
          require JSON::PP;
          JSON::PP->new->allow_nonref;
      };
  
      state $cleanser = do {
          if (eval { require Data::Clean::FromJSON; 1 }) {
              Data::Clean::FromJSON->get_cleanser;
          } else {
              undef;
          }
      };
  
      my $res;
      eval { $res = $json->decode($str); $cleanser->clean_in_place($res) if $cleanser };
      my $e = $@;
      return (!$e, $e, $res);
  }
  
  sub _parse_yaml {
      no warnings 'once';
  
      state $yaml_xs_available = do {
          if (eval { require YAML::XS; 1 }) {
              1;
          } else {
              require YAML::Old;
              0;
          }
      };
  
      my $str = shift;
  
      my $res;
      eval {
          if ($yaml_xs_available) {
              $res = YAML::XS::Load($str);
          } else {
              $str = "--- $str" unless $str =~ /\A--- /;
              $str .= "\n" unless $str =~ /\n\z/;
              $res = YAML::Old::Load($str);
          }
      };
      my $e = $@;
      return (!$e, $e, $res);
  }
  
  sub _arg2opt {
      my $opt = shift;
      $opt =~ s/[^A-Za-z0-9-]+/-/g; 
      $opt;
  }
  
  sub _opt2ospec {
      my ($opt, $schema, $arg_spec) = @_;
      my $type = $schema->[0];
      my $cs   = $schema->[1];
      my $is_array_of_simple_scalar = $type eq 'array' &&
          $cs->{of} && $cs->{of}[0] =~ $re_simple_scalar;
      if ($is_array_of_simple_scalar && $arg_spec && $arg_spec->{'x.name.is_plural'}) {
          if ($arg_spec->{'x.name.singular'}) {
              $opt = $arg_spec->{'x.name.singular'};
          } else {
              require Lingua::EN::PluralToSingular;
              $opt = Lingua::EN::PluralToSingular::to_singular($opt);
          }
      }
      if ($type eq 'bool') {
          if (length($opt) == 1 || $cs->{is}) {
              return ($opt, {opts=>[$opt]});
          } else {
              my @res;
              my @negs = negations_for_option($opt);
              push @res, $opt, {opts=>[$opt]}, {is_neg=>0, neg_opts=>\@negs};
              for (@negs) {
                  push @res, $_, {opts=>[$_]}, {is_neg=>1, pos_opts=>[$opt]};
              }
              return @res;
          }
      } elsif ($type eq 'buf') {
          return (
              "$opt=s", {opts=>[$opt], desttype=>"", type=>"s"}, undef,
              "$opt-base64=s", {opts=>["$opt-base64"], desttype=>"", type=>"s"}, {is_base64=>1},
          );
      } else {
          my $t = ($type eq 'int' ? 'i' : $type eq 'float' ? 'f' :
                       $is_array_of_simple_scalar ? 's@' : 's');
          return ("$opt=$t", {opts=>[$opt], desttype=>"", type=>$t});
      }
  }
  
  sub _args2opts {
      my %args = @_;
  
      my $argprefix        = $args{argprefix};
      my $parent_args      = $args{parent_args};
      my $meta             = $args{meta};
      my $seen_opts        = $args{seen_opts};
      my $seen_common_opts = $args{seen_common_opts};
      my $seen_func_opts   = $args{seen_func_opts};
      my $rargs            = $args{rargs};
      my $go_spec          = $args{go_spec};
      my $specmeta         = $args{specmeta};
  
      my $args_prop = $meta->{args} // {};
  
      for my $arg (keys %$args_prop) {
          my $fqarg    = "$argprefix$arg";
          my $arg_spec = $args_prop->{$arg};
          my $sch      = $arg_spec->{schema} // ['any', {}];
          my $type     = $sch->[0] // '';
          my $cs       = $sch->[1] // {};
  
          if ($type eq 'array' && $cs->{of}) {
              $cs->{of} = normalize_schema($cs->{of});
          }
          my $opt = _arg2opt($fqarg);
          if ($seen_opts->{$opt}) {
              my $i = 1;
              my $opt2;
              while (1) {
                  $opt2 = "$opt-arg" . ($i > 1 ? $i : '');
                  last unless $seen_opts->{$opt2};
                  $i++;
              }
              $opt = $opt2;
          }
  
          my $is_simple_scalar = $type =~ $re_simple_scalar;
          my $is_array_of_simple_scalar = $type eq 'array' &&
              $cs->{of} && $cs->{of}[0] =~ $re_simple_scalar;
          my $can_be_comma_separated = $is_array_of_simple_scalar &&
              $cs->{of}[0] =~ /\A(int|float)\z/; 
  
          my $stash = {};
  
  
          my $handler = sub {
              my ($val, $val_set);
  
              my $num_called = ++$stash->{called}{$arg};
  
              my $rargs = do {
                  if (ref($rargs) eq 'ARRAY') {
                      $rargs->[$num_called-1] //= {};
                      $rargs->[$num_called-1];
                  } else {
                      $rargs;
                  }
              };
  
              if ($is_array_of_simple_scalar) {
                  $rargs->{$arg} //= [];
                  $val_set = 1;
                  if ($can_be_comma_separated) {
                      $val = [split /\s*,\s*/, $_[1]];
                      push @{ $rargs->{$arg} }, @$val;
                  } else {
                      $val = $_[1];
                      push @{ $rargs->{$arg} }, $val;
                  }
              } elsif ($is_simple_scalar) {
                  $val_set = 1; $val = $_[1];
                  $rargs->{$arg} = $val;
              } else {
                  {
                      my ($success, $e, $decoded);
                      ($success, $e, $decoded) = _parse_json($_[1]);
                      if ($success) {
                          $val_set = 1; $val = $decoded;
                          $rargs->{$arg} = $val;
                          last;
                      }
                      ($success, $e, $decoded) = _parse_yaml($_[1]);
                      if ($success) {
                          $val_set = 1; $val = $decoded;
                          $rargs->{$arg} = $val;
                          last;
                      }
                      die "Invalid YAML/JSON in arg '$fqarg'";
                  }
              }
              if ($val_set && $arg_spec->{cmdline_on_getopt}) {
                  $arg_spec->{cmdline_on_getopt}->(
                      arg=>$arg, fqarg=>$fqarg, value=>$val, args=>$rargs,
                      opt=>$opt,
                  );
              }
          }; 
  
          my @triplets = _opt2ospec($opt, $sch, $arg_spec);
          my $aliases_processed;
          while (my ($ospec, $parsed, $extra) = splice @triplets, 0, 3) {
              $extra //= {};
              if ($extra->{is_neg}) {
                  $go_spec->{$ospec} = sub { $handler->($_[0], 0) };
              } elsif (defined $extra->{is_neg}) {
                  $go_spec->{$ospec} = sub { $handler->($_[0], 1) };
              } elsif ($extra->{is_base64}) {
                  $go_spec->{$ospec} = sub {
                      require MIME::Base64;
                      my $decoded = MIME::Base64::decode($_[1]);
                      $handler->($_[0], $decoded);
                  };
              } else {
                  $go_spec->{$ospec} = $handler;
              }
  
              $specmeta->{$ospec} = {arg=>$arg, fqarg=>$fqarg, parsed=>$parsed, %$extra};
              for (@{ $parsed->{opts} }) {
                  $seen_opts->{$_}++; $seen_func_opts->{$_} = $fqarg;
              }
  
              if ($parent_args->{per_arg_json} && $type !~ $re_simple_scalar) {
                  my $jopt = "$opt-json";
                  if ($seen_opts->{$jopt}) {
                      warn "Clash of option: $jopt, not added";
                  } else {
                      my $jospec = "$jopt=s";
                      my $parsed = {type=>"s", opts=>[$jopt]};
                      $go_spec->{$jospec} = sub {
                          my ($success, $e, $decoded);
                          ($success, $e, $decoded) = _parse_json($_[1]);
                          if ($success) {
                              $rargs->{$arg} = $decoded;
                          } else {
                              die "Invalid JSON in option --$jopt: $_[1]: $e";
                          }
                      };
                      $specmeta->{$jospec} = {arg=>$arg, fqarg=>$fqarg, is_json=>1, parsed=>$parsed, %$extra};
                      $seen_opts->{$jopt}++; $seen_func_opts->{$jopt} = $fqarg;
                  }
              }
              if ($parent_args->{per_arg_yaml} && $type !~ $re_simple_scalar) {
                  my $yopt = "$opt-yaml";
                  if ($seen_opts->{$yopt}) {
                      warn "Clash of option: $yopt, not added";
                  } else {
                      my $yospec = "$yopt=s";
                      my $parsed = {type=>"s", opts=>[$yopt]};
                      $go_spec->{$yospec} = sub {
                          my ($success, $e, $decoded);
                          ($success, $e, $decoded) = _parse_yaml($_[1]);
                          if ($success) {
                              $rargs->{$arg} = $decoded;
                          } else {
                              die "Invalid YAML in option --$yopt: $_[1]: $e";
                          }
                      };
                      $specmeta->{$yospec} = {arg=>$arg, fqarg=>$fqarg, is_yaml=>1, parsed=>$parsed, %$extra};
                      $seen_opts->{$yopt}++; $seen_func_opts->{$yopt} = $fqarg;
                  }
              }
  
              if ($arg_spec->{cmdline_aliases} && !$aliases_processed++) {
                  for my $al (keys %{$arg_spec->{cmdline_aliases}}) {
                      my $alspec = $arg_spec->{cmdline_aliases}{$al};
                      my $alsch = $alspec->{schema} //
                          $alspec->{is_flag} ? [bool=>{req=>1,is=>1}] : $sch;
                      my $altype = $alsch->[0];
                      my $alopt = _arg2opt("$argprefix$al");
                      if ($seen_opts->{$alopt}) {
                          warn "Clash of cmdline_alias option $al";
                          next;
                      }
                      my $alcode = $alspec->{code};
                      my $alospec;
                      my $parsed;
                      if ($alcode && $alsch->[0] eq 'bool') {
                          $alospec = $alopt; 
                          $parsed = {opts=>[$alopt]};
                      } else {
                          ($alospec, $parsed) = _opt2ospec($alopt, $alsch);
                      }
  
                      if ($alcode) {
                          if ($alcode eq 'CODE') {
                              if ($parent_args->{ignore_converted_code}) {
                                  $alcode = sub {};
                              } else {
                                  return [
                                      501,
                                      join("",
                                           "Code in cmdline_aliases for arg $fqarg ",
                                           "got converted into string, probably ",
                                           "because of JSON/YAML transport"),
                                  ];
                              }
                          }
                          $go_spec->{$alospec} = sub {
  
                              my $num_called = ++$stash->{called}{$arg};
                              my $rargs = do {
                                  if (ref($rargs) eq 'ARRAY') {
                                      $rargs->[$num_called-1] //= {};
                                      $rargs->[$num_called-1];
                                  } else {
                                      $rargs;
                                  }
                              };
  
                              $alcode->($rargs, $_[1]);
                          };
                      } else {
                          $go_spec->{$alospec} = $handler;
                      }
                      $specmeta->{$alospec} = {
                          alias     => $al,
                          is_alias  => 1,
                          alias_for => $ospec,
                          arg       => $arg,
                          fqarg     => $fqarg,
                          is_code   => $alcode ? 1:0,
                          parsed    => $parsed,
                          %$extra,
                      };
                      push @{$specmeta->{$ospec}{($alcode ? '':'non').'code_aliases'}},
                          $alospec;
                      $seen_opts->{$alopt}++; $seen_func_opts->{$alopt} = $fqarg;
                  }
              } 
  
              if ($arg_spec->{meta}) {
                  $rargs->{$arg} = {};
                  my $res = _args2opts(
                      %args,
                      argprefix => "$argprefix$arg\::",
                      meta      => $arg_spec->{meta},
                      rargs     => $rargs->{$arg},
                  );
                  return $res if $res;
              }
  
              if ($arg_spec->{element_meta}) {
                  $rargs->{$arg} = [];
                  my $res = _args2opts(
                      %args,
                      argprefix => "$argprefix$arg\::",
                      meta      => $arg_spec->{element_meta},
                      rargs     => $rargs->{$arg},
                  );
                  return $res if $res;
              }
          } 
  
      } 
  
      undef;
  }
  
  $SPEC{gen_getopt_long_spec_from_meta} = {
      v           => 1.1,
      summary     => 'Generate Getopt::Long spec from Rinci function metadata',
      description => <<'_',
  
  This routine will produce a `Getopt::Long` specification from Rinci function
  metadata, as well as some more data structure in the result metadata to help
  producing a command-line help/usage message.
  
  Function arguments will be mapped to command-line options with the same name,
  with non-alphanumeric characters changed to `-` (`-` is preferred over `_`
  because it lets user avoid pressing Shift on popular keyboards). For example:
  `file_size` becomes `file-size`, `file_size.max` becomes `file-size-max`. If
  function argument option name clashes with command-line option or another
  existing option, it will be renamed to `NAME-arg` (or `NAME-arg2` and so on).
  For example: `help` will become `help-arg` (if `common_opts` contains `help`,
  that is).
  
  Each command-line alias (`cmdline_aliases` property) in the argument
  specification will also be added as command-line option, except if it clashes
  with an existing option, in which case this function will warn and skip adding
  the alias. For more information about `cmdline_aliases`, see `Rinci::function`.
  
  For arguments with type of `bool`, Getopt::Long will by default also
  automatically recognize `--noNAME` or `--no-NAME` in addition to `--name`. So
  this function will also check those names for clashes.
  
  For arguments with type array of simple scalar, `--NAME` can be specified more
  than once to append to the array.
  
  If `per_arg_json` setting is active, and argument's schema is not a "required
  simple scalar" (e.g. an array, or a nullable string), then `--NAME-json` will
  also be added to let users input undef (through `--NAME-json null`) or a
  non-scalar value (e.g. `--NAME-json '[1,2,3]'`). If this name conflicts with
  another existing option, a warning will be displayed and the option will not be
  added.
  
  If `per_arg_yaml` setting is active, and argument's schema is not a "required
  simple scalar" (e.g. an array, or a nullable string), then `--NAME-yaml` will
  also be added to let users input undef (through `--NAME-yaml '~'`) or a
  non-scalar value (e.g. `--NAME-yaml '[foo, bar]'`). If this name conflicts with
  another existing option, a warning will be displayed and the option will not be
  added. YAML can express a larger set of values, e.g. binary data, circular
  references, etc.
  
  Will produce a hash (Getopt::Long spec), with `func.specmeta`, `func.opts`,
  `func.common_opts`, `func.func_opts` that contain extra information
  (`func.specmeta` is a hash of getopt spec name and a hash of extra information
  while `func.*opts` lists all used option names).
  
  _
      args => {
          meta => {
              summary => 'Rinci function metadata',
              schema  => 'hash*',
              req     => 1,
          },
          meta_is_normalized => {
              schema => 'bool*',
          },
          args => {
              summary => 'Reference to hash which will store the result',
              schema  => 'hash*',
          },
          common_opts => {
              summary => 'Common options',
              description => <<'_',
  
  A hash where the values are hashes containing these keys: `getopt` (Getopt::Long
  option specification), `handler` (Getopt::Long handler). Will be passed to
  `get_args_from_argv()`. Example:
  
      {
          help => {
              getopt  => 'help|h|?',
              handler => sub { ... },
              summary => 'Display help and exit',
          },
          version => {
              getopt  => 'version|v',
              handler => sub { ... },
              summary => 'Display version and exit',
          },
      }
  
  _
              schema => ['hash*'],
          },
          per_arg_json => {
              summary => 'Whether to add --NAME-json for non-simple arguments',
              schema  => 'bool',
              default => 0,
              description => <<'_',
  
  Will also interpret command-line arguments as JSON if assigned to function
  arguments, if arguments' schema is not simple scalar.
  
  _
          },
          per_arg_yaml => {
              summary => 'Whether to add --NAME-yaml for non-simple arguments',
              schema  => 'bool',
              default => 0,
              description => <<'_',
  
  Will also interpret command-line arguments as YAML if assigned to function
  arguments, if arguments' schema is not simple scalar.
  
  _
          },
          ignore_converted_code => {
              summary => 'Whether to ignore coderefs converted to string',
              schema => 'bool',
              default => 0,
              description => <<'_',
  
  Across network through JSON encoding, coderef in metadata (e.g. in
  `cmdline_aliases` property) usually gets converted to string `CODE`. In some
  cases, like for tab completion, this is pretty harmless so you can turn this
  option on. For example, in the case of `cmdline_aliases`, the effect is just
  that command-line aliases code are not getting executed, but this is usually
  okay.
  
  _
          },
      },
  };
  sub gen_getopt_long_spec_from_meta {
      my %fargs = @_;
  
      my $meta       = $fargs{meta} or return [400, "Please specify meta"];
      unless ($fargs{meta_is_normalized}) {
          require Perinci::Sub::Normalize;
          $meta = Perinci::Sub::Normalize::normalize_function_metadata($meta);
      }
      my $co           = $fargs{common_opts} // {};
      my $per_arg_yaml = $fargs{per_arg_yaml} // 0;
      my $per_arg_json = $fargs{per_arg_json} // 0;
      my $ignore_converted_code = $fargs{ignore_converted_code};
      my $rargs        = $fargs{args} // {};
  
      my %go_spec;
      my %specmeta; 
      my %seen_opts;
      my %seen_common_opts;
      my %seen_func_opts;
  
      for my $k (keys %$co) {
          my $v = $co->{$k};
          my $ospec   = $v->{getopt};
          my $handler = $v->{handler};
          my $res = parse_getopt_long_opt_spec($ospec)
              or return [400, "Can't parse common opt spec '$ospec'"];
          $go_spec{$ospec} = $handler;
          $specmeta{$ospec} = {common_opt=>$k, arg=>undef, parsed=>$res};
          for (@{ $res->{opts} }) {
              return [412, "Clash of common opt '$_'"] if $seen_opts{$_};
              $seen_opts{$_}++; $seen_common_opts{$_} = $ospec;
              if ($res->{is_neg}) {
                  $seen_opts{"no$_"}++ ; $seen_common_opts{"no$_"}  = $ospec;
                  $seen_opts{"no-$_"}++; $seen_common_opts{"no-$_"} = $ospec;
              }
          }
      }
  
      my $res = _args2opts(
          argprefix        => "",
          parent_args      => \%fargs,
          meta             => $meta,
          seen_opts        => \%seen_opts,
          seen_common_opts => \%seen_common_opts,
          seen_func_opts   => \%seen_func_opts,
          rargs            => $rargs,
          go_spec          => \%go_spec,
          specmeta         => \%specmeta,
      );
      return $res if $res;
  
      my $opts        = [sort(map {length($_)>1 ? "--$_":"-$_"} keys %seen_opts)];
      my $common_opts = [sort(map {length($_)>1 ? "--$_":"-$_"} keys %seen_common_opts)];
      my $func_opts   = [sort(map {length($_)>1 ? "--$_":"-$_"} keys %seen_func_opts)];
      my $opts_by_common = {};
      for my $k (keys %$co) {
          my $v = $co->{$k};
          my $ospec = $v->{getopt};
          my @opts;
          for (keys %seen_common_opts) {
              next unless $seen_common_opts{$_} eq $ospec;
              push @opts, (length($_)>1 ? "--$_":"-$_");
          }
          $opts_by_common->{$ospec} = [sort @opts];
      }
  
      my $opts_by_arg = {};
      for (keys %seen_func_opts) {
          my $fqarg = $seen_func_opts{$_};
          push @{ $opts_by_arg->{$fqarg} }, length($_)>1 ? "--$_":"-$_";
      }
      for (keys %$opts_by_arg) {
          $opts_by_arg->{$_} = [sort @{ $opts_by_arg->{$_} }];
      }
  
      [200, "OK", \%go_spec,
       {
           "func.specmeta"       => \%specmeta,
           "func.opts"           => $opts,
           "func.common_opts"    => $common_opts,
           "func.func_opts"      => $func_opts,
           "func.opts_by_arg"    => $opts_by_arg,
           "func.opts_by_common" => $opts_by_common,
       }];
  }
  
  $SPEC{get_args_from_argv} = {
      v => 1.1,
      summary => 'Get subroutine arguments (%args) from command-line arguments '.
          '(@ARGV)',
      description => <<'_',
  
  Using information in Rinci function metadata's `args` property, parse command
  line arguments `@argv` into hash `%args`, suitable for passing into subroutines.
  
  Currently uses Getopt::Long's GetOptions to do the parsing.
  
  As with GetOptions, this function modifies its `argv` argument, so you might
  want to copy the original `argv` first (or pass a copy instead) if you want to
  preserve the original.
  
  See also: gen_getopt_long_spec_from_meta() which is the routine that generates
  the specification.
  
  _
      args => {
          argv => {
              schema => ['array*' => {
                  of => 'str*',
              }],
              description => 'If not specified, defaults to @ARGV',
          },
          args => {
              summary => 'Specify input args, with some arguments preset',
              schema  => ['hash'],
          },
          meta => {
              schema => ['hash*' => {}],
              req => 1,
          },
          meta_is_normalized => {
              summary => 'Can be set to 1 if your metadata is normalized, '.
                  'to avoid duplicate effort',
              schema => 'bool',
              default => 0,
          },
          strict => {
              schema => ['bool' => {default=>1}],
              summary => 'Strict mode',
              description => <<'_',
  
  If set to 0, will still return parsed argv even if there are parsing errors
  (reported by Getopt::Long). If set to 1 (the default), will die upon error.
  
  Normally you would want to use strict mode, for more error checking. Setting off
  strict is used by, for example, Perinci::Sub::Complete during completion where
  the command-line might still be incomplete.
  
  Should probably be named `ignore_errors`. :-)
  
  _
          },
          per_arg_yaml => {
              schema => ['bool' => {default=>0}],
              summary => 'Whether to recognize --ARGNAME-yaml',
              description => <<'_',
  
  This is useful for example if you want to specify a value which is not
  expressible from the command-line, like 'undef'.
  
      % script.pl --name-yaml '~'
  
  See also: per_arg_json. You should enable just one instead of turning on both.
  
  _
          },
          per_arg_json => {
              schema => ['bool' => {default=>0}],
              summary => 'Whether to recognize --ARGNAME-json',
              description => <<'_',
  
  This is useful for example if you want to specify a value which is not
  expressible from the command-line, like 'undef'.
  
      % script.pl --name-json 'null'
  
  But every other string will need to be quoted:
  
      % script.pl --name-json '"foo"'
  
  See also: per_arg_yaml. You should enable just one instead of turning on both.
  
  _
          },
          common_opts => {
              summary => 'Common options',
              description => <<'_',
  
  A hash where the values are hashes containing these keys: `getopt` (Getopt::Long
  option specification), `handler` (Getopt::Long handler). Will be passed to
  `get_args_from_argv()`. Example:
  
      {
          help => {
              getopt  => 'help|h|?',
              handler => sub { ... },
              summary => 'Display help and exit',
          },
          version => {
              getopt  => 'version|v',
              handler => sub { ... },
              summary => 'Display version and exit',
          },
      }
  
  _
              schema => ['hash*'],
          },
          allow_extra_elems => {
              schema => ['bool' => {default=>0}],
              summary => 'Allow extra/unassigned elements in argv',
              description => <<'_',
  
  If set to 1, then if there are array elements unassigned to one of the
  arguments, instead of generating an error, this function will just ignore them.
  
  This option will be passed to Perinci::Sub::GetArgs::Array's allow_extra_elems.
  
  _
          },
          on_missing_required_args => {
              schema => 'code',
              summary => 'Execute code when there is missing required args',
              description => <<'_',
  
  This can be used to give a chance to supply argument value from other sources if
  not specified by command-line options. Perinci::CmdLine, for example, uses this
  hook to supply value from STDIN or file contents (if argument has `cmdline_src`
  specification key set).
  
  This hook will be called for each missing argument. It will be supplied hash
  arguments: (arg => $the_missing_argument_name, args =>
  $the_resulting_args_so_far, spec => $the_arg_spec).
  
  The hook can return true if it succeeds in making the missing situation
  resolved. In this case, this function will not report the argument as missing.
  
  _
          },
          ignore_converted_code => {
              summary => 'Whether to ignore coderefs converted to string',
              schema => 'bool',
              default => 0,
              description => <<'_',
  
  Across network through JSON encoding, coderef in metadata (e.g. in
  `cmdline_aliases` property) usually gets converted to string `CODE`. In some
  cases, like for tab completion, this is harmless so you can turn this option on.
  
  _
          },
      },
      result => {
          description => <<'_',
  
  Error codes:
  
  * 400 - Error in Getopt::Long option specification, e.g. in common_opts.
  
  * 500 - failure in GetOptions, meaning argv is not valid according to metadata
    specification (only if 'strict' mode is enabled).
  
  * 501 - coderef in cmdline_aliases got converted into a string, probably because
    the metadata was transported (e.g. through Riap::HTTP/Riap::Simple).
  
  _
      },
  };
  sub get_args_from_argv {
      require Getopt::Long;
  
      my %fargs = @_;
      my $argv       = $fargs{argv} // \@ARGV;
      my $meta       = $fargs{meta} or return [400, "Please specify meta"];
      unless ($fargs{meta_is_normalized}) {
          require Perinci::Sub::Normalize;
          $meta = Perinci::Sub::Normalize::normalize_function_metadata($meta);
      }
      my $strict            = $fargs{strict} // 1;
      my $common_opts       = $fargs{common_opts} // {};
      my $per_arg_yaml      = $fargs{per_arg_yaml} // 0;
      my $per_arg_json      = $fargs{per_arg_json} // 0;
      my $allow_extra_elems = $fargs{allow_extra_elems} // 0;
      my $on_missing        = $fargs{on_missing_required_args};
      my $ignore_converted_code = $fargs{ignore_converted_code};
  
      my $rargs = $fargs{args} // {};
  
      my $genres = gen_getopt_long_spec_from_meta(
          meta => $meta, meta_is_normalized => 1,
          args => $rargs,
          common_opts  => $common_opts,
          per_arg_json => $per_arg_json,
          per_arg_yaml => $per_arg_yaml,
          ignore_converted_code => $ignore_converted_code,
      );
      return err($genres->[0], "Can't generate Getopt::Long spec", $genres)
          if $genres->[0] != 200;
      my $go_spec = $genres->[2];
  
      {
          local $SIG{__WARN__} = sub{} if !$strict;
          my $old_go_conf = Getopt::Long::Configure(
              $strict ? "no_pass_through" : "pass_through",
              "no_ignore_case", "permute", "bundling", "no_getopt_compat");
          my $res = Getopt::Long::GetOptionsFromArray($argv, %$go_spec);
          Getopt::Long::Configure($old_go_conf);
          unless ($res) {
              return [500, "GetOptions failed"] if $strict;
          }
      }
  
  
      my $args_prop = $meta->{args};
  
      if (@$argv) {
          my $res = get_args_from_array(
              array=>$argv, meta => $meta,
              meta_is_normalized => 1,
              allow_extra_elems => $allow_extra_elems,
          );
          if ($res->[0] != 200 && $strict) {
              return err(500, "Get args from array failed", $res);
          } elsif ($strict && $res->[0] != 200) {
              return err("Can't get args from argv", $res);
          } elsif ($res->[0] == 200) {
              my $pos_args = $res->[2];
              for my $name (keys %$pos_args) {
                  my $arg_spec = $args_prop->{$name};
                  my $val      = $pos_args->{$name};
                  if (exists $rargs->{$name}) {
                      return [400, "You specified option --$name but also ".
                                  "argument #".$arg_spec->{pos}] if $strict;
                  }
                  my $type = $arg_spec->{schema}[0];
                  my $cs   = $arg_spec->{schema}[1];
                  my $is_simple_scalar = $type =~ $re_simple_scalar;
                  my $is_array_of_simple_scalar = $type eq 'array' &&
                      $cs->{of} && $cs->{of}[0] =~ $re_simple_scalar;
  
                  if ($arg_spec->{greedy} && ref($val) eq 'ARRAY' &&
                          !$is_array_of_simple_scalar) {
                      my $i = 0;
                      for (@$val) {
                        TRY_PARSING_AS_JSON_YAML:
                          {
                              my ($success, $e, $decoded);
                              if ($per_arg_json) {
                                  ($success, $e, $decoded) = _parse_json($_);
                                  if ($success) {
                                      $_ = $decoded;
                                      last TRY_PARSING_AS_JSON_YAML;
                                  } else {
                                      warn "Failed trying to parse argv #$i as JSON: $e";
                                  }
                              }
                              if ($per_arg_yaml) {
                                  ($success, $e, $decoded) = _parse_yaml($_);
                                  if ($success) {
                                      $_ = $decoded;
                                      last TRY_PARSING_AS_JSON_YAML;
                                  } else {
                                      warn "Failed trying to parse argv #$i as YAML: $e";
                                  }
                              }
                          }
                          $i++;
                      }
                  }
                  if (!$arg_spec->{greedy} && !$is_simple_scalar) {
                    TRY_PARSING_AS_JSON_YAML:
                      {
                          my ($success, $e, $decoded);
                          if ($per_arg_json) {
                              ($success, $e, $decoded) = _parse_json($val);
                              if ($success) {
                                  $val = $decoded;
                                  last TRY_PARSING_AS_JSON_YAML;
                              } else {
                                  warn "Failed trying to parse argv #$arg_spec->{pos} as JSON: $e";
                              }
                          }
                          if ($per_arg_yaml) {
                              ($success, $e, $decoded) = _parse_yaml($val);
                              if ($success) {
                                  $val = $decoded;
                                  last TRY_PARSING_AS_JSON_YAML;
                              } else {
                                  warn "Failed trying to parse argv #$arg_spec->{pos} as YAML: $e";
                              }
                          }
                      }
                  }
                  $rargs->{$name} = $val;
                  if ($arg_spec->{cmdline_on_getopt}) {
                      if ($arg_spec->{greedy}) {
                          $arg_spec->{cmdline_on_getopt}->(
                              arg=>$name, fqarg=>$name, value=>$_, args=>$rargs,
                              opt=>undef, 
                          ) for @$val;
                      } else {
                          $arg_spec->{cmdline_on_getopt}->(
                              arg=>$name, fqarg=>$name, value=>$val, args=>$rargs,
                              opt=>undef, 
                          );
                      }
                  }
              }
          }
      }
  
  
      my %missing_args;
      for my $arg (keys %$args_prop) {
          my $arg_spec = $args_prop->{$arg};
          if (!exists($rargs->{$arg})) {
              next unless $arg_spec->{req};
              if ($on_missing) {
                  next if $on_missing->(arg=>$arg, args=>$rargs, spec=>$arg_spec);
              }
              next if exists $rargs->{$arg};
              $missing_args{$arg} = 1;
          }
      }
  
      {
          last unless $strict;
  
          for my $arg (keys %$args_prop) {
              my $arg_spec = $args_prop->{$arg};
              next unless exists $rargs->{$arg};
              next unless $arg_spec->{deps};
              my $dep_arg = $arg_spec->{deps}{arg};
              next unless $dep_arg;
              return [400, "You specify '$arg', but don't specify '$dep_arg' ".
                          "(upon which '$arg' depends)"]
                  unless exists $rargs->{$dep_arg};
          }
      }
  
      [200, "OK", $rargs, {
          "func.missing_args" => [sort keys %missing_args],
          "func.gen_getopt_long_spec_result" => $genres,
      }];
  }
  
  1;
  
  __END__
  
PERINCI_SUB_GETARGS_ARGV

$fatpacked{"Perinci/Sub/GetArgs/Array.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_GETARGS_ARRAY';
  package Perinci::Sub::GetArgs::Array;
  
  our $DATE = '2015-09-04'; 
  our $VERSION = '0.15'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(get_args_from_array);
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
  };
  
  $SPEC{get_args_from_array} = {
      v => 1.1,
      summary => 'Get subroutine arguments (%args) from array',
      description => <<'_',
  
  Using information in metadata's `args` property (particularly the `pos` and
  `greedy` arg type clauses), extract arguments from an array into a hash
  `\%args`, suitable for passing into subs.
  
  Example:
  
      my $meta = {
          v => 1.1,
          summary => 'Multiply 2 numbers (a & b)',
          args => {
              a => {schema=>'num*', pos=>0},
              b => {schema=>'num*', pos=>1},
          }
      }
  
  then `get_args_from_array(array=>[2, 3], meta=>$meta)` will produce:
  
      [200, "OK", {a=>2, b=>3}]
  
  _
      args => {
          array => {
              schema => ['array*' => {}],
              req => 1,
              description => <<'_',
  
  NOTE: array will be modified/emptied (elements will be taken from the array as
  they are put into the resulting args). Copy your array first if you want to
  preserve its content.
  
  _
          },
          meta => {
              schema => ['hash*' => {}],
              req => 1,
          },
          meta_is_normalized => {
              summary => 'Can be set to 1 if your metadata is normalized, '.
                  'to avoid duplicate effort',
              schema => 'bool',
              default => 0,
          },
          allow_extra_elems => {
              schema => ['bool' => {default=>0}],
              summary => 'Allow extra/unassigned elements in array',
              description => <<'_',
  
  If set to 1, then if there are array elements unassigned to one of the arguments
  (due to missing `pos`, for example), instead of generating an error, the
  function will just ignore them.
  
  _
          },
      },
  };
  sub get_args_from_array {
      my %fargs = @_;
      my $ary  = $fargs{array} or return [400, "Please specify array"];
      my $meta = $fargs{meta} or return [400, "Please specify meta"];
      unless ($fargs{meta_is_normalized}) {
          require Perinci::Sub::Normalize;
          $meta = Perinci::Sub::Normalize::normalize_function_metadata(
              $meta);
      }
      my $allow_extra_elems = $fargs{allow_extra_elems} // 0;
  
      my $rargs = {};
  
      my $args_p = $meta->{args} // {};
      for my $i (reverse 0..@$ary-1) {
          while (my ($a, $as) = each %$args_p) {
              my $o = $as->{pos};
              if (defined($o) && $o == $i) {
                  if ($as->{greedy}) {
                      my $type = $as->{schema}[0];
                      my @elems = splice(@$ary, $i);
                      if ($type eq 'array') {
                          $rargs->{$a} = \@elems;
                      } else {
                          $rargs->{$a} = join " ", @elems;
                      }
                  } else {
                      $rargs->{$a} = splice(@$ary, $i, 1);
                  }
              }
          }
      }
  
      return [400, "There are extra, unassigned elements in array: [".
                  join(", ", @$ary)."]"] if @$ary && !$allow_extra_elems;
  
      [200, "OK", $rargs];
  }
  
  1;
  
  __END__
  
PERINCI_SUB_GETARGS_ARRAY

$fatpacked{"Perinci/Sub/Normalize.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_NORMALIZE';
  package Perinci::Sub::Normalize;
  
  our $DATE = '2016-01-07'; 
  our $VERSION = '0.15'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         normalize_function_metadata
                 );
  
  sub _normalize{
      my ($meta, $ver, $opts, $proplist, $nmeta, $prefix, $modprefix) = @_;
  
      my $opt_aup = $opts->{allow_unknown_properties};
      my $opt_nss = $opts->{normalize_sah_schemas};
      my $opt_rip = $opts->{remove_internal_properties};
  
      if (defined $ver) {
          defined($meta->{v}) && $meta->{v} eq $ver
              or die "$prefix: Metadata version must be $ver";
      }
  
    KEY:
      for my $k (keys %$meta) {
          die "Invalid prop/attr syntax '$k', must be word/dotted-word only"
              unless $k =~ /\A(\w+)(?:\.(\w+(?:\.\w+)*))?(?:\((\w+)\))?\z/;
  
          my ($prop, $attr);
          if (defined $3) {
              $prop = $1;
              $attr = defined($2) ? "$2.alt.lang.$3" : "alt.lang.$3";
          } else {
              $prop = $1;
              $attr = $2;
          }
  
          my $nk = "$prop" . (defined($attr) ? ".$attr" : "");
  
          if ($prop =~ /\A_/ || defined($attr) && $attr =~ /\A_|\._/) {
              unless ($opt_rip) {
                  $nmeta->{$nk} = $meta->{$k};
              }
              next KEY;
          }
  
          my $prop_proplist = $proplist->{$prop};
  
          if (!$opt_aup && !$prop_proplist) {
              $modprefix //= $prefix;
              my $mod = "Perinci/Sub/Property$modprefix/$prop.pm";
              eval { require $mod };
              if ($@) {
                  die "Unknown property '$prefix/$prop' (and couldn't ".
                      "load property module '$mod'): $@" if $@;
              }
              $prop_proplist = $proplist->{$prop};
          }
          die "Unknown property '$prefix/$prop'"
              unless $opt_aup || $prop_proplist;
  
          if ($prop_proplist && $prop_proplist->{_prop}) {
              die "Property '$prefix/$prop' must be a hash"
                  unless ref($meta->{$k}) eq 'HASH';
              $nmeta->{$nk} = {};
              _normalize(
                  $meta->{$k},
                  $prop_proplist->{_ver},
                  $opts,
                  $prop_proplist->{_prop},
                  $nmeta->{$nk},
                  "$prefix/$prop",
              );
          } elsif ($prop_proplist && $prop_proplist->{_elem_prop}) {
              die "Property '$prefix/$prop' must be an array"
                  unless ref($meta->{$k}) eq 'ARRAY';
              $nmeta->{$nk} = [];
              my $i = 0;
              for (@{ $meta->{$k} }) {
                  my $href = {};
                  if (ref($_) eq 'HASH') {
                      _normalize(
                          $_,
                          $prop_proplist->{_ver},
                          $opts,
                          $prop_proplist->{_elem_prop},
                          $href,
                          "$prefix/$prop/$i",
                      );
                      push @{ $nmeta->{$nk} }, $href;
                  } else {
                      push @{ $nmeta->{$nk} }, $_;
                  }
                  $i++;
              }
          } elsif ($prop_proplist && $prop_proplist->{_value_prop}) {
              die "Property '$prefix/$prop' must be a hash"
                  unless ref($meta->{$k}) eq 'HASH';
              $nmeta->{$nk} = {};
              for (keys %{ $meta->{$k} }) {
                  $nmeta->{$nk}{$_} = {};
                  die "Property '$prefix/$prop/$_' must be a hash"
                      unless ref($meta->{$k}{$_}) eq 'HASH';
                  _normalize(
                      $meta->{$k}{$_},
                      $prop_proplist->{_ver},
                      $opts,
                      $prop_proplist->{_value_prop},
                      $nmeta->{$nk}{$_},
                      "$prefix/$prop/$_",
                      ($prop eq 'args' ? "$prefix/arg" : undef),
                  );
              }
          } else {
              if ($k eq 'schema' && $opt_nss) { 
                  require Data::Sah::Normalize;
                  $nmeta->{$nk} = Data::Sah::Normalize::normalize_schema(
                      $meta->{$k});
              } else {
                  $nmeta->{$nk} = $meta->{$k};
              }
          }
      }
  
      $nmeta;
  }
  
  sub normalize_function_metadata($;$) {
      my ($meta, $opts) = @_;
  
      $opts //= {};
  
      $opts->{allow_unknown_properties}    //= 0;
      $opts->{normalize_sah_schemas}       //= 1;
      $opts->{remove_internal_properties}  //= 0;
  
      require Sah::Schema::Rinci;
      my $sch = $Sah::Schema::Rinci::SCHEMAS{rinci_function}
          or die "BUG: Rinci schema structure changed (1)";
      my $sch_proplist = $sch->[1]{_prop}
          or die "BUG: Rinci schema structure changed (2)";
  
      _normalize($meta, 1.1, $opts, $sch_proplist, {}, '');
  }
  
  1;
  
  __END__
  
PERINCI_SUB_NORMALIZE

$fatpacked{"Perinci/Sub/To/CLIDocData.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_TO_CLIDOCDATA';
  package Perinci::Sub::To::CLIDocData;
  
  our $DATE = '2015-12-17'; 
  our $VERSION = '0.24'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Perinci::Object;
  use Perinci::Sub::Util qw(err);
  
  our %SPEC;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(gen_cli_doc_data_from_meta);
  
  sub _has_cats {
      for my $spec (@{ $_[0] }) {
          for (@{ $spec->{tags} // [] }) {
              my $tag_name = ref($_) ? $_->{name} : $_;
              if ($tag_name =~ /^category:/) {
                  return 1;
              }
          }
      }
      0;
  }
  
  sub _add_category_from_spec {
      my ($cats_spec, $thing, $spec, $noun, $has_cats) = @_;
      my @cats;
      for (@{ $spec->{tags} // [] }) {
          my $tag_name = ref($_) ? $_->{name} : $_;
          if ($tag_name =~ /^category:(.+)/) {
              my $cat = ucfirst($1);
              $cat =~ s/-/ /g;
              $cat .= " " . $noun;
              push @cats, [$cat, 50]; 
          }
      }
      if (!@cats) {
          @cats = [$has_cats ? "Other $noun" : ucfirst($noun), 99]; 
      }
  
      $thing->{category} = $cats[0][0];
      $thing->{categories} = [map {$_->[0]} @cats];
  
      $cats_spec->{$_->[0]}{order} //= $_->[1] for @cats;
  }
  
  sub _add_default_from_arg_spec {
      my ($opt, $arg_spec) = @_;
      if (exists $arg_spec->{default}) {
          $opt->{default} = $arg_spec->{default};
      } elsif ($arg_spec->{schema} && exists($arg_spec->{schema}[1]{default})) {
          $opt->{default} = $arg_spec->{schema}[1]{default};
      }
  }
  
  sub _dash_prefix {
      length($_[0]) > 1 ? "--$_[0]" : "-$_[0]";
  }
  
  sub _fmt_opt {
      my $spec = shift;
      my @ospecs = @_;
      my @res;
      my $i = 0;
      for my $ospec (@ospecs) {
          my $j = 0;
          my $parsed = $ospec->{parsed};
          for (@{ $parsed->{opts} }) {
              my $opt = _dash_prefix($_);
              if ($i==0 && $j==0) {
                  if ($parsed->{type}) {
                      if ($spec->{'x.schema.entity'}) {
                          $opt .= "=".$spec->{'x.schema.entity'};
                      } elsif ($spec->{'x.schema.element_entity'}) {
                          $opt .= "=".$spec->{'x.schema.element_entity'};
                      } else {
                          $opt .= "=$parsed->{type}";
                      }
                  }
                  $opt .= "*" if $spec->{req} && !$ospec->{is_base64} &&
                      !$ospec->{is_json} && !$ospec->{is_yaml};
              }
              push @res, $opt;
              $j++;
          }
          $i++;
      }
      join ", ", @res;
  }
  
  $SPEC{gen_cli_doc_data_from_meta} = {
      v => 1.1,
      summary => 'From Rinci function metadata, generate structure convenient '.
          'for producing CLI documentation (help/usage/POD)',
      description => <<'_',
  
  This function calls `Perinci::Sub::GetArgs::Argv`'s
  `gen_getopt_long_spec_from_meta()` (or receive its result as an argument, if
  passed, to avoid calling the function twice) and post-processes it: produce
  command usage line, format the options, include information from metadata, group
  the options by category. It also selects examples in the `examples` property
  which are applicable to CLI environment and format them.
  
  The resulting data structure is convenient to use when one wants to produce a
  documentation for CLI program (including help/usage message and POD).
  
  _
      args => {
          meta => {
              schema => 'hash*', 
              req => 1,
              pos => 0,
          },
          meta_is_normalized => {
              schema => 'bool*',
          },
          common_opts => {
              summary => 'Will be passed to gen_getopt_long_spec_from_meta()',
              schema  => 'hash*',
          },
          ggls_res => {
              summary => 'Full result from gen_getopt_long_spec_from_meta()',
              schema  => 'array*', 
              description => <<'_',
  
  If you already call `Perinci::Sub::GetArgs::Argv`'s
  `gen_getopt_long_spec_from_meta()`, you can pass the _full_ enveloped result
  here, to avoid calculating twice. What will be useful for the function is the
  extra result in result metadata (`func.*` keys in `$res->[3]` hash).
  
  _
          },
          per_arg_json => {
              schema => 'bool',
              summary => 'Pass per_arg_json=1 to Perinci::Sub::GetArgs::Argv',
          },
          per_arg_yaml => {
              schema => 'bool',
              summary => 'Pass per_arg_json=1 to Perinci::Sub::GetArgs::Argv',
          },
          lang => {
              schema => 'str*',
          },
      },
      result => {
          schema => 'hash*',
      },
  };
  sub gen_cli_doc_data_from_meta {
      require Getopt::Long::Negate::EN;
  
      my %args = @_;
  
      my $lang = $args{lang};
      my $meta = $args{meta} or return [400, 'Please specify meta'];
      my $common_opts = $args{common_opts};
      unless ($args{meta_is_normalized}) {
          require Perinci::Sub::Normalize;
          $meta = Perinci::Sub::Normalize::normalize_function_metadata($meta);
      }
      my $ggls_res = $args{ggls_res} // do {
          require Perinci::Sub::GetArgs::Argv;
          Perinci::Sub::GetArgs::Argv::gen_getopt_long_spec_from_meta(
              meta=>$meta, meta_is_normalized=>1, common_opts=>$common_opts,
              per_arg_json => $args{per_arg_json},
              per_arg_yaml => $args{per_arg_yaml},
          );
      };
      $ggls_res->[0] == 200 or return $ggls_res;
  
      my $args_prop = $meta->{args} // {};
      my $clidocdata = {
          option_categories => {},
          example_categories => {},
      };
  
      {
          my @args;
          my %args_prop = %$args_prop; 
          my $max_pos = -1;
          for (values %args_prop) {
              $max_pos = $_->{pos}
                  if defined($_->{pos}) && $_->{pos} > $max_pos;
          }
          my $pos = 0;
          while ($pos <= $max_pos) {
              my ($arg, $arg_spec);
              for (keys %args_prop) {
                  $arg_spec = $args_prop{$_};
                  if (defined($arg_spec->{pos}) && $arg_spec->{pos}==$pos) {
                      $arg = $_;
                      last;
                  }
              }
              $pos++;
              next unless defined($arg);
              if ($arg_spec->{req}) {
                  push @args, "<$arg>";
              } else {
                  push @args, "[$arg]";
              }
              $args[-1] .= "..." if $arg_spec->{greedy};
              delete $args_prop{$arg};
          }
          unshift @args, "[options]" if keys(%args_prop) || keys(%$common_opts); 
          $clidocdata->{usage_line} = "[[prog]]".
              (@args ? " ".join(" ", @args) : "");
      }
  
      my %opts;
      {
          my $ospecs = $ggls_res->[3]{'func.specmeta'};
          my (@k, @k_aliases);
        OSPEC1:
          for (sort keys %$ospecs) {
              my $ospec = $ospecs->{$_};
              {
                  last unless $ospec->{is_alias};
                  next if $ospec->{is_code};
                  my $arg_spec = $args_prop->{$ospec->{arg}};
                  my $alias_spec = $arg_spec->{cmdline_aliases}{$ospec->{alias}};
                  next if $alias_spec->{summary};
                  push @k_aliases, $_;
                  next OSPEC1;
              }
              push @k, $_;
          }
  
          my %negs; 
  
        OSPEC2:
          while (@k) {
              my $k = shift @k;
              my $ospec = $ospecs->{$k};
              my $opt;
              my $optkey;
  
              if ($ospec->{is_alias} || defined($ospec->{arg})) {
                  my $arg_spec;
                  my $alias_spec;
  
                  if ($ospec->{is_alias}) {
  
                      $arg_spec = $args_prop->{ $ospec->{arg} };
                      $alias_spec = $arg_spec->{cmdline_aliases}{$ospec->{alias}};
                      my $rimeta = rimeta($alias_spec);
                      $optkey = _fmt_opt($arg_spec, $ospec);
                      $opt = {
                          opt_parsed => $ospec->{parsed},
                          orig_opt => $k,
                          is_alias => 1,
                          alias_for => $ospec->{alias_for},
                          summary => $rimeta->langprop({lang=>$lang}, 'summary') //
                              "Alias for "._dash_prefix($ospec->{parsed}{opts}[0]),
                          description =>
                              $rimeta->langprop({lang=>$lang}, 'description'),
                      };
                  } else {
  
                      $arg_spec = $args_prop->{$ospec->{arg}};
                      my $rimeta = rimeta($arg_spec);
                      $opt = {
                          opt_parsed => $ospec->{parsed},
                          orig_opt => $k,
                      };
  
                      if (defined($ospec->{is_neg})) {
                          my $default = $arg_spec->{default} //
                              $arg_spec->{schema}[1]{default};
                          next OSPEC2 if  $default && !$ospec->{is_neg};
                          next OSPEC2 if !$default &&  $ospec->{is_neg};
                          if ($ospec->{is_neg}) {
                              next OSPEC2 if $negs{$ospec->{arg}}++;
                          }
                      }
  
                      if ($ospec->{is_neg}) {
                          $opt->{summary} =
                              $rimeta->langprop({lang=>$lang}, 'summary.alt.bool.not');
                      } elsif (defined $ospec->{is_neg}) {
                          $opt->{summary} =
                              $rimeta->langprop({lang=>$lang}, 'summary.alt.bool.yes') //
                                  $rimeta->langprop({lang=>$lang}, 'summary');
                      } elsif (($ospec->{parsed}{type}//'') eq 's@') {
                          $opt->{summary} =
                              $rimeta->langprop({lang=>$lang}, 'summary.alt.plurality.singular') //
                                  $rimeta->langprop({lang=>$lang}, 'summary');
                      } else {
                          $opt->{summary} =
                              $rimeta->langprop({lang=>$lang}, 'summary');
                      }
                      $opt->{description} =
                          $rimeta->langprop({lang=>$lang}, 'description');
  
                      my @aliases;
                      my $j = $#k_aliases;
                      while ($j >= 0) {
                          my $aospec = $ospecs->{ $k_aliases[$j] };
                          {
                              last unless $aospec->{arg} eq $ospec->{arg};
                              push @aliases, $aospec;
                              splice @k_aliases, $j, 1;
                          }
                          $j--;
                      }
  
                      $optkey = _fmt_opt($arg_spec, $ospec, @aliases);
                  }
  
                  $opt->{arg_spec} = $arg_spec;
                  $opt->{alias_spec} = $alias_spec if $alias_spec;
  
                  for (qw/arg fqarg is_base64 is_json is_yaml/) {
                      $opt->{$_} = $ospec->{$_} if defined $ospec->{$_};
                  }
  
                  for (qw/req pos greedy is_password links tags/) {
                      $opt->{$_} = $arg_spec->{$_} if defined $arg_spec->{$_};
                  }
  
                  _add_category_from_spec($clidocdata->{option_categories},
                                          $opt, $arg_spec, "options", 1);
                  _add_default_from_arg_spec($opt, $arg_spec);
  
              } else {
  
                  my $spec = $common_opts->{$ospec->{common_opt}};
  
                  my $show_neg = $ospec->{parsed}{is_neg} && $spec->{default};
  
                  local $ospec->{parsed}{opts} = do {
                      my @opts = Getopt::Long::Negate::EN::negations_for_option(
                          $ospec->{parsed}{opts}[0]);
                      [ $opts[0] ];
                  } if $show_neg;
  
                  $optkey = _fmt_opt($spec, $ospec);
                  my $rimeta = rimeta($spec);
                  $opt = {
                      opt_parsed => $ospec->{parsed},
                      orig_opt => $k,
                      common_opt => $ospec->{common_opt},
                      common_opt_spec => $spec,
                      summary => $show_neg ?
                          $rimeta->langprop({lang=>$lang}, 'summary.alt.bool.not') :
                              $rimeta->langprop({lang=>$lang}, 'summary'),
                      (schema => $spec->{schema}) x !!$spec->{schema},
                      ('x.schema.entity' => $spec->{'x.schema.entity'}) x !!$spec->{'x.schema.entity'},
                      ('x.schema.element_entity' => $spec->{'x.schema.element_entity'}) x !!$spec->{'x.schema.element_entity'},
                      description =>
                          $rimeta->langprop({lang=>$lang}, 'description'),
                      (default => $spec->{default}) x !!(exists($spec->{default}) && !$show_neg),
                  };
  
                  _add_category_from_spec($clidocdata->{option_categories},
                                          $opt, $spec, "options", 1);
  
              }
  
              $opts{$optkey} = $opt;
          }
  
        OPT1:
          for my $k (keys %opts) {
              my $opt = $opts{$k};
              next unless $opt->{is_alias} || $opt->{is_base64} ||
                  $opt->{is_json} || $opt->{is_yaml};
              for my $k2 (keys %opts) {
                  my $arg_opt = $opts{$k2};
                  next if $arg_opt->{is_alias} || $arg_opt->{is_base64} ||
                      $arg_opt->{is_json} || $arg_opt->{is_yaml};
                  next unless defined($arg_opt->{arg}) &&
                      $arg_opt->{arg} eq $opt->{arg};
                  $opt->{main_opt} = $k2;
                  next OPT1;
              }
          }
  
      }
      $clidocdata->{opts} = \%opts;
  
      my @examples;
      {
          my $examples = $meta->{examples} // [];
          my $has_cats = _has_cats($examples);
  
          for my $eg (@$examples) {
              my $rimeta = rimeta($eg);
              my $argv;
              my $cmdline;
              if (defined($eg->{src})) {
                  if ($eg->{src_plang} =~ /^(sh|bash)$/) {
                      $cmdline = $eg->{src};
                  } else {
                      next;
                  }
              } else {
                  require String::ShellQuote;
                  if ($eg->{argv}) {
                      $argv = $eg->{argv};
                  } else {
                      require Perinci::Sub::ConvertArgs::Argv;
                      my $res = Perinci::Sub::ConvertArgs::Argv::convert_args_to_argv(
                          args => $eg->{args}, meta => $meta, use_pos => 1);
                      return err($res, 500, "Can't convert args to argv")
                          unless $res->[0] == 200;
                      $argv = $res->[2];
                  }
                  $cmdline = "[[prog]]";
                  for my $arg (@$argv) {
                      my $qarg = String::ShellQuote::shell_quote($arg);
                      $cmdline .= " $qarg"; 
                  }
              }
              my $egdata = {
                  cmdline      => $cmdline,
                  summary      => $rimeta->langprop({lang=>$lang}, 'summary'),
                  description  => $rimeta->langprop({lang=>$lang}, 'description'),
                  example_spec => $eg,
              };
              _add_category_from_spec($clidocdata->{example_categories},
                                      $egdata, $eg, "examples", $has_cats);
              push @examples, $egdata;
          }
      }
      $clidocdata->{examples} = \@examples;
  
      [200, "OK", $clidocdata];
  }
  
  1;
  
  __END__
  
PERINCI_SUB_TO_CLIDOCDATA

$fatpacked{"Perinci/Sub/Util.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_UTIL';
  package Perinci::Sub::Util;
  
  our $DATE = '2015-12-31'; 
  our $VERSION = '0.44'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         err
                         caller
                         gen_modified_sub
                         warn_err
                         die_err
                 );
  
  our %SPEC;
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'Helper when writing functions',
  };
  
  our $STACK_TRACE;
  our @_c; 
  our $_i; 
  sub err {
      require Scalar::Util;
  
      my @caller = CORE::caller(1);
      if (!@caller) {
          @caller = ("main", "-e", 1, "program");
      }
  
      my ($status, $msg, $meta, $prev);
  
      for (@_) {
          my $ref = ref($_);
          if ($ref eq 'ARRAY') { $prev = $_ }
          elsif ($ref eq 'HASH') { $meta = $_ }
          elsif (!$ref) {
              if (Scalar::Util::looks_like_number($_)) {
                  $status = $_;
              } else {
                  $msg = $_;
              }
          }
      }
  
      $status //= 500;
      $msg  //= "$caller[3] failed";
      $meta //= {};
      $meta->{prev} //= $prev if $prev;
  
      if (!$meta->{logs}) {
  
          my $stack_trace;
          {
              no warnings;
              last unless $STACK_TRACE // $INC{"Carp/Always.pm"};
              last if $prev && ref($prev->[3]) eq 'HASH' &&
                  ref($prev->[3]{logs}) eq 'ARRAY' &&
                      ref($prev->[3]{logs}[0]) eq 'HASH' &&
                          $prev->[3]{logs}[0]{stack_trace};
              $stack_trace = [];
              $_i = 1;
              while (1) {
                  {
                      package DB;
                      @_c = CORE::caller($_i);
                      if (@_c) {
                          $_c[4] = [@DB::args];
                      }
                  }
                  last unless @_c;
                  push @$stack_trace, [@_c];
                  $_i++;
              }
          }
          push @{ $meta->{logs} }, {
              type    => 'create',
              time    => time(),
              package => $caller[0],
              file    => $caller[1],
              line    => $caller[2],
              func    => $caller[3],
              ( stack_trace => $stack_trace ) x !!$stack_trace,
          };
      }
  
      [$status, $msg, undef, $meta];
  }
  
  sub caller {
      my $n0 = shift;
      my $n  = $n0 // 0;
  
      my $pkg = $Perinci::Sub::Wrapper::default_wrapped_package //
          'Perinci::Sub::Wrapped';
  
      my @r;
      my $i =  0;
      my $j = -1;
      while ($i <= $n+1) { 
          $j++;
          @r = CORE::caller($j);
          last unless @r;
          if ($r[0] eq $pkg && $r[1] =~ /^\(eval /) {
              next;
          }
          $i++;
      }
  
      return unless @r;
      return defined($n0) ? @r : $r[0];
  }
  
  $SPEC{gen_modified_sub} = {
      v => 1.1,
      summary => 'Generate modified metadata (and subroutine) based on another',
      description => <<'_',
  
  Often you'll want to create another sub (and its metadata) based on another, but
  with some modifications, e.g. add/remove/rename some arguments, change summary,
  add/remove some properties, and so on.
  
  Instead of cloning the Rinci metadata and modify it manually yourself, this
  routine provides some shortcuts.
  
  You can specify base sub/metadata using `base_name` (string, subroutine name,
  either qualified or not) or `base_code` (coderef) + `base_meta` (hash).
  
  _
      args => {
          base_name => {
              summary => 'Subroutine name (either qualified or not)',
              schema => 'str*',
              description => <<'_',
  
  If not qualified with package name, will be searched in the caller's package.
  Rinci metadata will be searched in `%SPEC` package variable.
  
  Alternatively, you can also specify `base_code` and `base_meta`.
  
  _
          },
          base_code => {
              summary => 'Base subroutine code',
              schema  => 'code*',
              description => <<'_',
  
  If you specify this, you'll also need to specify `base_meta`.
  
  Alternatively, you can specify `base_name` instead, to let this routine search
  the base subroutine from existing Perl package.
  
  _
          },
          base_meta => {
              summary => 'Base Rinci metadata',
              schema  => 'hash*', 
          },
          output_name => {
              summary => 'Where to install the modified sub',
              schema  => 'str*',
              description => <<'_',
  
  Subroutine will be put in the specified name. If the name is not qualified with
  package name, will use caller's package. If no `output_code` is specified, the
  base subroutine reference will be assigned here.
  
  Note that this argument is optional.
  
  _
          },
          output_code => {
              summary => 'Code for the modified sub',
              schema  => 'code*',
              description => <<'_',
  
  If not specified will use `base_code` (which will then be required).
  
  _
          },
          summary => {
              summary => 'Summary for the mod subroutine',
              schema  => 'str*',
          },
          description => {
              summary => 'Description for the mod subroutine',
              schema  => 'str*',
          },
          remove_args => {
              summary => 'List of arguments to remove',
              schema  => 'array*',
          },
          add_args => {
              summary => 'Arguments to add',
              schema  => 'hash*',
          },
          replace_args => {
              summary => 'Arguments to add',
              schema  => 'hash*',
          },
          rename_args => {
              summary => 'Arguments to rename',
              schema  => 'hash*',
          },
          modify_args => {
              summary => 'Arguments to modify',
              description => <<'_',
  
  For each argument you can specify a coderef. The coderef will receive the
  argument ($arg_spec) and is expected to modify the argument specification.
  
  _
              schema  => 'hash*',
          },
          modify_meta => {
              summary => 'Specify code to modify metadata',
              schema  => 'code*',
              description => <<'_',
  
  Code will be called with arguments ($meta) where $meta is the cloned Rinci
  metadata.
  
  _
          },
          install_sub => {
              schema  => 'bool',
              default => 1,
          },
      },
      result => {
          schema => ['hash*' => {
              keys => {
                  code => ['code*'],
                  meta => ['hash*'], 
              },
          }],
      },
  };
  sub gen_modified_sub {
      require Function::Fallback::CoreOrPP;
  
      my %args = @_;
  
      my ($base_code, $base_meta);
      if ($args{base_name}) {
          my ($pkg, $leaf);
          if ($args{base_name} =~ /(.+)::(.+)/) {
              ($pkg, $leaf) = ($1, $2);
          } else {
              $pkg  = CORE::caller();
              $leaf = $args{base_name};
          }
          no strict 'refs';
          $base_code = \&{"$pkg\::$leaf"};
          $base_meta = ${"$pkg\::SPEC"}{$leaf};
          die "Can't find Rinci metadata for $pkg\::$leaf" unless $base_meta;
      } elsif ($args{base_meta}) {
          $base_meta = $args{base_meta};
          $base_code = $args{base_code}
              or die "Please specify base_code";
      } else {
          die "Please specify base_name or base_code+base_meta";
      }
  
      my $output_meta = Function::Fallback::CoreOrPP::clone($base_meta);
      my $output_code = $args{output_code} // $base_code;
  
      for (qw/summary description/) {
          $output_meta->{$_} = $args{$_} if $args{$_};
      }
      if ($args{remove_args}) {
          delete $output_meta->{args}{$_} for @{ $args{remove_args} };
      }
      if ($args{add_args}) {
          for my $k (keys %{ $args{add_args} }) {
              my $v = $args{add_args}{$k};
              die "Can't add arg '$k' in mod sub: already exists"
                  if $output_meta->{args}{$k};
              $output_meta->{args}{$k} = $v;
          }
      }
      if ($args{replace_args}) {
          for my $k (keys %{ $args{replace_args} }) {
              my $v = $args{replace_args}{$k};
              die "Can't replace arg '$k' in mod sub: doesn't exist"
                  unless $output_meta->{args}{$k};
              $output_meta->{args}{$k} = $v;
          }
      }
      if ($args{rename_args}) {
          for my $old (keys %{ $args{rename_args} }) {
              my $new = $args{rename_args}{$old};
              my $as = $output_meta->{args}{$old};
              die "Can't rename arg '$old' in mod sub: doesn't exist" unless $as;
              die "Can't rename arg '$old'->'$new' in mod sub: ".
                  "new name already exist" if $output_meta->{args}{$new};
              $output_meta->{args}{$new} = $as;
              delete $output_meta->{args}{$old};
          }
      }
      if ($args{modify_args}) {
          for (keys %{ $args{modify_args} }) {
              $args{modify_args}{$_}->($output_meta->{args}{$_});
          }
      }
      if ($args{modify_meta}) {
          $args{modify_meta}->($output_meta);
      }
  
      if ($args{output_name}) {
          my ($pkg, $leaf);
          if ($args{output_name} =~ /(.+)::(.+)/) {
              ($pkg, $leaf) = ($1, $2);
          } else {
              $pkg  = CORE::caller();
              $leaf = $args{output_name};
          }
          no strict 'refs';
          no warnings 'redefine';
          *{"$pkg\::$leaf"}       = $output_code if $args{install_sub} // 1;
          ${"$pkg\::SPEC"}{$leaf} = $output_meta;
      }
  
      [200, "OK", {code=>$output_code, meta=>$output_meta}];
  }
  
  
  sub warn_err {
      require Carp;
  
      my $res = err(@_);
      Carp::carp("ERROR $res->[0]: $res->[1]");
  }
  
  sub die_err {
      require Carp;
  
      my $res = err(@_);
      Carp::croak("ERROR $res->[0]: $res->[1]");
  }
  
  1;
  
  __END__
  
PERINCI_SUB_UTIL

$fatpacked{"Perinci/Sub/Util/ResObj.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_UTIL_RESOBJ';
  package Perinci::Sub::Util::ResObj;
  
  our $DATE = '2015-12-31'; 
  our $VERSION = '0.44'; 
  
  use Carp;
  use overload
      q("") => sub {
          my $res = shift; "ERROR $err->[0]: $err->[1]\n" . Carp::longmess();
      };
  
  1;
  
  __END__
  
PERINCI_SUB_UTIL_RESOBJ

$fatpacked{"Perinci/Sub/Util/Sort.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PERINCI_SUB_UTIL_SORT';
  package Perinci::Sub::Util::Sort;
  
  our $DATE = '2015-12-31'; 
  our $VERSION = '0.44'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         sort_args
                 );
  
  our %SPEC;
  
  sub sort_args {
      my $args = shift;
      sort {
          (($args->{$a}{pos} // 9999) <=> ($args->{$b}{pos} // 9999)) ||
              $a cmp $b
          } keys %$args;
  }
  
  1;
  
  __END__
  
PERINCI_SUB_UTIL_SORT

$fatpacked{"Progress/Any.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PROGRESS_ANY';
  package Progress::Any;
  
  our $DATE = '2015-01-27'; 
  our $VERSION = '0.20'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Time::Duration qw();
  use Time::HiRes qw(time);
  
  sub import {
      my ($self, @args) = @_;
      my $caller = caller();
      for (@args) {
          if ($_ eq '$progress') {
              my $progress = $self->get_indicator(task => '');
              {
                  no strict 'refs';
                  my $v = "$caller\::progress";
                  *$v = \$progress;
              }
          } else {
              die "Unknown import argument: $_";
          }
      }
  }
  
  our %indicators;  
  
  our %outputs;     
  
  our %output_data; 
  
  
  sub _init_indicator {
      my ($class, $task) = @_;
  
  
      return $indicators{$task} if $indicators{$task};
  
      my $progress = bless({
          task        => $task,
          title       => $task,
          target      => 0,
          pos         => 0,
          state       => 'stopped',
  
          _remaining          => undef,
          _set_remaining_time => undef,
          _elapsed            => 0,
          _start_time         => 0,
      }, $class);
      $indicators{$task} = $progress;
  
      if ($task =~ s/\.?\w+\z//) {
          $class->_init_indicator($task);
      }
  
      $progress;
  }
  
  sub get_indicator {
      my ($class, %args) = @_;
  
      my %oargs = %args;
  
      my $task   = delete($args{task});
      if (!defined($task)) {
          my @caller = caller(0);
          $task = $caller[0] eq '(eval)' ? 'main' : $caller[0];
          $task =~ s/::/./g;
          $task =~ s/[^.\w]+/_/g;
      }
      die "Invalid task syntax '$task', please only use dotted words"
          unless $task =~ /\A(?:\w+(\.\w+)*)?\z/;
  
      my %uargs;
  
      my $p = $class->_init_indicator($task);
      for my $an (qw/title target pos remaining state/) {
          if (exists $args{$an}) {
              $uargs{$an} = delete($args{$an});
          }
      }
      die "Unknown argument(s) to get_indicator(): ".join(", ", keys(%args))
          if keys(%args);
      $p->_update(%uargs) if keys %uargs;
  
      $p;
  }
  
  my %attrs = (
      title     => {is => 'rw'},
      target    => {is => 'rw'},
      pos       => {is => 'rw'},
      state     => {is => 'rw'},
  );
  
  for my $an (keys %attrs) {
      next if $attrs{$an}{manual};
      my $code;
      if ($attrs{$an}{is} eq 'rw') {
          $code = sub {
              my $self = shift;
              if (@_) {
                  $self->_update($an => shift);
              }
              $self->{$an};
          };
      } else {
          $code = sub {
              my $self = shift;
              die "Can't set value, $an is an ro attribute" if @_;
              $self->{$an};
          };
      }
      no strict 'refs';
      *{$an} = $code;
  }
  
  sub elapsed {
      my $self = shift;
  
      if ($self->{state} eq 'started') {
          return $self->{_elapsed} + (time()-$self->{_start_time});
      } else {
          return $self->{_elapsed};
      }
  }
  
  sub total_pos {
      my $self = shift;
  
      my $t = $self->{task};
  
      my $res = $self->{pos};
      for (keys %indicators) {
          if ($t eq '') {
              next if $_ eq '';
          } else {
              next unless index($_, "$t.") == 0;
          }
          $res += $indicators{$_}{pos};
      }
      $res;
  }
  
  sub total_target {
      my $self = shift;
  
      my $t = $self->{task};
  
      my $res = $self->{target};
      return undef unless defined($res);
  
      for (keys %indicators) {
          if ($t eq '') {
              next if $_ eq '';
          } else {
              next unless index($_, "$t.") == 0;
          }
          return undef unless defined $indicators{$_}{target};
          $res += $indicators{$_}{target};
      }
      $res;
  }
  
  sub percent_complete {
      my $self = shift;
  
      my $total_pos    = $self->total_pos;
      my $total_target = $self->total_target;
  
      return undef unless defined($total_target);
      if ($total_target == 0) {
          if ($self->{state} eq 'finished') {
              return 100;
          } else {
              return 0;
          }
      } else {
          return $total_pos / $total_target * 100;
      }
  }
  
  sub remaining {
      my $self = shift;
  
      if (defined $self->{_remaining}) {
          if ($self->{state} eq 'started') {
              my $r = $self->{_remaining}-(time()-$self->{_set_remaining_time});
              return $r > 0 ? $r : 0;
          } else {
              return $self->{_remaining};
          }
      } else {
          if (defined $self->{target}) {
              if ($self->{pos} == 0) {
                  return 0;
              } else {
                  return ($self->{target} - $self->{pos})/$self->{pos} *
                      $self->elapsed;
              }
          } else {
              return undef;
          }
      }
  }
  
  sub total_remaining {
      my $self = shift;
  
      my $t = $self->{task};
  
      my $res = $self->remaining;
      return undef unless defined $res;
  
      for (keys %indicators) {
          if ($t eq '') {
              next if $_ eq '';
          } else {
              next unless index($_, "$t.") == 0;
          }
          my $res2 = $indicators{$_}->remaining;
          return undef unless defined $res2;
          $res += $res2;
      }
      $res;
  }
  
  sub _update {
      my ($self, %args) = @_;
  
  
      my $now = time();
  
      my $task = $self->{task};
  
    SET_TITLE:
      {
          last unless exists $args{title};
          my $val = $args{title};
          die "Invalid value for title, must be defined"
              unless defined($val);
          $self->{title} = $val;
      }
  
    SET_TARGET:
      {
          last unless exists $args{target};
          my $val = $args{target};
          die "Invalid value for target, must be a positive number or undef"
              unless !defined($val) || $val >= 0;
          if (defined($val) && $self->{pos} > $val) {
              $self->{pos} = $val;
          }
          $self->{target} = $val;
          undef $self->{_remaining};
      }
  
    SET_POS:
      {
          last unless exists $args{pos};
          my $val = $args{pos};
          die "Invalid value for pos, must be a positive number"
              unless defined($val) && $val >= 0;
          if (defined($self->{target}) && $val > $self->{target}) {
              $val = $self->{target};
          }
          $self->{pos} = $val;
          undef $self->{_remaining};
      }
  
    SET_REMAINING:
      {
          last unless exists $args{remaining};
          my $val = $args{remaining};
          die "Invalid value for remaining, must be a positive number"
              unless defined($val) && $val >= 0;
          $self->{_remaining} = $val;
          $self->{_set_remaining_time} = $now;
      }
  
    SET_STATE:
      {
          last unless exists $args{state};
          my $old = $self->{state};
          my $val = $args{state} // 'started';
          die "Invalid value for state, must be stopped/started/finished"
              unless $val =~ /\A(?:stopped|started|finished)\z/;
          last if $old eq $val;
          if ($val eq 'started') {
              $self->{_start_time} = $now;
  
              my @parents;
              {
                  my $t = $task;
                  while (1) {
                      last unless $t =~ s/\.\w+\z//;
                      push @parents, $t;
                  }
                  push @parents, '';
              }
              for my $t (@parents) {
                  my $p = $indicators{$t};
                  if ($p->{state} ne 'started') {
                      $p->{state}       = 'started';
                      $p->{_start_time} = $now;
                  }
              }
          } else {
              $self->{_elapsed} += $now - $self->{_start_time};
              if ($val eq 'finished') {
                  die "BUG: Can't finish task '$task', pos is still < target"
                      if defined($self->{target}) &&
                          $self->{pos} < $self->{target};
                  $self->{_remaining} = 0;
                  $self->{_set_remaining_time} = $now;
              }
          }
          $self->{state} = $val;
      }
  
    DONE:
      return;
  }
  
  sub _should_update_output {
      my ($self, $output, $now) = @_;
  
      my $key = "$output";
      $output_data{$key} //= {};
      my $odata = $output_data{$key};
      if (!defined($odata->{mtime})) {
          return 1;
      } elsif ($self->{state} eq 'finished') {
          return 1;
      } elsif ($odata->{force_update}) {
          delete $odata->{force_update};
          return 1;
      } else {
          if (!defined($odata->{freq})) {
              $odata->{freq} = -0.5;
          }
          if ($odata->{freq} < 0) {
              return 1 if $now >= $odata->{mtime} - $odata->{freq};
          } else {
              return 1 if abs($self->{pos} - $odata->{pos}) >= $odata->{freq};
          }
          return 0;
      }
  }
  
  sub update {
      my ($self, %args) = @_;
  
      my $pos   = delete($args{pos}) // $self->{pos} + 1;
      my $state = delete($args{state}) // 'started';
      $self->_update(pos => $pos, state => $state);
  
      my $message  = delete($args{message});
      my $level    = delete($args{level});
      die "Unknown argument(s) to update(): ".join(", ", keys(%args))
          if keys(%args);
  
      my $now = time();
  
      {
          my $task = $self->{task};
          while (1) {
              if ($outputs{$task}) {
                  for my $output (@{ $outputs{$task} }) {
                      next unless $self->_should_update_output($output, $now);
                      if (ref($message) eq 'CODE') {
                          $message = $message->();
                      }
                      $output->update(
                          indicator => $indicators{$task},
                          message   => $message,
                          level     => $level,
                          time      => $now,
                      );
                      my $key = "$output";
                      $output_data{$key}{mtime} = $now;
                      $output_data{$key}{pos}   = $pos;
                  }
              }
              last unless $task =~ s/\.?\w+\z//;
          }
      }
  }
  
  sub start {
      my $self = shift;
      $self->_update(state => 'started');
  }
  
  sub stop {
      my $self = shift;
      $self->_update(state => 'stopped');
  }
  
  sub finish {
      my ($self, %args) = @_;
      $self->update(pos=>$self->{target}, state=>'finished', %args);
  }
  
  sub fill_template {
      my ($self, $template, %args) = @_;
  
  
      state $re = qr{( # all=1
                         %
                         ( #width=2
                             -?\d+ )?
                         ( #dot=3
                             \.?)
                         ( #prec=4
                             \d+)?
                         ( #conv=5
                             [emnPpRrTt%])
                     )}x;
  
      state $sub = sub {
          my %args = @_;
  
          my ($all, $width, $dot, $prec, $conv) = ($1, $2, $3, $4, $5);
  
          my $p = $args{indicator};
  
          my ($fmt, $sconv, $data);
          if ($conv eq 'n') {
              $data = $p->{task};
          } elsif ($conv eq 't') {
              $data = $p->{title};
          } elsif ($conv eq '%') {
              $data = '%';
          } elsif ($conv eq 'm') {
              $data = $args{message} // '';
          } elsif ($conv eq 'p') {
              my $val = $p->percent_complete;
              $width //= 3;
              if (defined $val) {
                  $data = $val;
                  $prec //= 0;
                  $sconv = "f";
              } else {
                  $data = '?';
              }
          } elsif ($conv eq 'P') {
              $data = $p->total_pos;
              $prec //= 0;
              $sconv = "f";
          } elsif ($conv eq 'T') {
              my $val = $p->total_target;
              if (defined $val) {
                  $data = $val;
                  $prec //= 0;
                  $sconv = "f";
              } else {
                  $data = '?';
              }
          } elsif ($conv eq 'e') {
              my $val = $p->elapsed;
              $val = 1 if $val < 1; 
              $data = Time::Duration::concise(Time::Duration::duration($val));
              $width //= -8;
          } elsif ($conv eq 'r') {
              my $val = $p->total_remaining;
              if (defined $val) {
                  $val = 1 if $val < 1; 
                  $data = Time::Duration::concise(Time::Duration::duration($val));
              } else {
                  $data = '?';
              }
              $width //= -8;
          } elsif ($conv eq 'R') {
              my $val = $p->total_remaining;
              if (defined $val) {
                  $val = 1 if $val < 1; 
                  $data = Time::Duration::concise(Time::Duration::duration($val)).
                      " left"; 
              } else {
                  $val = $p->elapsed;
                  $val = 1 if $val < 1; 
                  $data = Time::Duration::concise(Time::Duration::duration($val)).
                      " elapsed"; 
              }
              $width //= -(8 + 1 + 7);
          } else {
              $fmt = '%s';
              $data = $all;
          }
  
          $sconv //= 's';
          $dot = "." if $sconv eq 'f';
          $fmt //= join("", grep {defined} ("%", $width, $dot, $prec, $sconv));
  
          sprintf $fmt, $data;
  
      };
      $template =~ s{$re}{$sub->(%args, indicator=>$self)}egox;
  
      $template;
  }
  
  1;
  
  __END__
  
PROGRESS_ANY

$fatpacked{"Progress/Any/Output.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PROGRESS_ANY_OUTPUT';
  package Progress::Any::Output;
  
  our $DATE = '2015-01-27'; 
  our $VERSION = '0.20'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Progress::Any;
  
  sub import {
      my $self = shift;
      __PACKAGE__->set(@_) if @_;
  }
  
  sub _set_or_add {
      my $class = shift;
      my $which = shift;
  
      my $opts;
      if (@_ && ref($_[0]) eq 'HASH') {
          $opts = shift;
      } else {
          $opts = {};
      }
  
      my $output = shift or die "Please specify output name";
      $output =~ /\A(?:\w+(::\w+)*)?\z/ or die "Invalid output syntax '$output'";
  
      my $task = $opts->{task} // "";
  
      my $outputo;
      unless (ref $outputo) {
          my $outputpm = $output; $outputpm =~ s!::!/!g; $outputpm .= ".pm";
          require "Progress/Any/Output/$outputpm";
          no strict 'refs';
          $outputo = "Progress::Any::Output::$output"->new(@_);
      }
  
      if ($which eq 'set') {
          $Progress::Any::outputs{$task} = [$outputo];
      } else {
          $Progress::Any::outputs{$task} //= [];
          push @{ $Progress::Any::outputs{$task} }, $outputo;
      }
  
      $outputo;
  }
  
  sub set {
      my $class = shift;
      $class->_set_or_add('set', @_);
  }
  
  sub add {
      my $class = shift;
      $class->_set_or_add('add', @_);
  }
  
  1;
  
  __END__
  
PROGRESS_ANY_OUTPUT

$fatpacked{"Progress/Any/Output/Null.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PROGRESS_ANY_OUTPUT_NULL';
  package Progress::Any::Output::Null;
  
  use 5.010;
  use strict;
  use warnings;
  
  our $VERSION = '0.20'; 
  
  sub new {
      my ($class, %args) = @_;
      bless \%args, $class;
  }
  
  sub update {
      1;
  }
  
  1;
  
  __END__
  
PROGRESS_ANY_OUTPUT_NULL

$fatpacked{"Progress/Any/Output/TermProgressBarColor.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'PROGRESS_ANY_OUTPUT_TERMPROGRESSBARCOLOR';
  package Progress::Any::Output::TermProgressBarColor;
  
  our $DATE = '2015-08-29'; 
  our $VERSION = '0.21'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Color::ANSI::Util qw(ansifg ansibg);
  require Win32::Console::ANSI if $^O =~ /Win/;
  
  $|++;
  
  my ($ph1, $ph2);
  
  sub _patch {
      my $out = shift;
  
      return if $ph1;
      require Monkey::Patch::Action;
      $ph1 = Monkey::Patch::Action::patch_package(
          'Log::Any::Adapter::Screen', 'hook_before_log', 'replace',
          sub {
              $out->cleanup;
              $Progress::Any::output_data{"$out"}{force_update} = 1;
          }
      ) if defined &{"Log::Any::Adapter::Screen::hook_before_log"};
      $ph2 = Monkey::Patch::Action::patch_package(
          'Log::Any::Adapter::Screen', 'hook_after_log', 'replace',
          sub {
              my ($self, $msg) = @_;
              print { $self->{_fh} } "\n" unless $msg =~ /\R\z/;
              $out->keep_delay_showing if $out->{show_delay};
          }
      ) if defined &{"Log::Any::Adapter::Screen::hook_after_log"};
  }
  
  sub _unpatch {
      undef $ph1;
      undef $ph2;
  }
  
  sub new {
      my ($class, %args0) = @_;
  
      my %args;
  
      $args{width} = delete($args0{width});
      if (!defined($args{width})) {
          my ($cols, $rows);
          if ($ENV{COLUMNS}) {
              $cols = $ENV{COLUMNS};
          } elsif (eval { require Term::Size; 1 }) {
              ($cols, $rows) = Term::Size::chars();
          } else {
              $cols = 80;
          }
          $args{width} = $^O =~ /Win/ ? $cols-1 : $cols;
      }
  
      $args{fh} = delete($args0{fh});
      $args{fh} //= \*STDOUT;
  
      $args{show_delay} = delete($args0{show_delay});
  
      $args{wide} = delete($args0{wide});
  
      keys(%args0) and die "Unknown output parameter(s): ".
          join(", ", keys(%args0));
  
      $args{_last_hide_time} = time();
  
      require Text::ANSI::NonWideUtil;
      if ($args{wide}) {
          require Text::ANSI::WideUtil;
      }
  
      my $self = bless \%args, $class;
      $self->_patch;
      $self;
  }
  
  sub update {
      my ($self, %args) = @_;
  
      my $now = time();
  
      if (defined $self->{show_delay}) {
          return if $now - $self->{show_delay} < $self->{_last_hide_time};
      }
  
      my $ll = $self->{_lastlen};
      if (defined $self->{_lastlen}) {
          print { $self->{fh} } "\b" x $self->{_lastlen};
          undef $self->{_lastlen};
      }
  
      my $p = $args{indicator};
      my $tottgt = $p->total_target;
      my $totpos = $p->total_pos;
      my $is_complete = $p->{state} eq 'finished' ||
          defined($tottgt) && $tottgt > 0 && $totpos == $tottgt;
      if ($is_complete) {
          if ($ll) {
              my $fh = $self->{fh};
              print $fh " " x $ll, "\b" x $ll;
              $self->{_last_hide_time} = $now;
          }
          return;
      }
  
      my $bar;
      my $bar_pct = $p->fill_template("%p%% ", %args);
  
      my $bar_eta = $p->fill_template("%R", %args);
  
      my $bar_bar = "";
      my $bwidth = $self->{width} - length($bar_pct) - length($bar_eta) - 2;
      if ($bwidth > 0) {
          if ($tottgt) {
              my $bfilled = int($totpos / $tottgt * $bwidth);
              $bfilled = $bwidth if $bfilled > $bwidth;
              $bar_bar = ("=" x $bfilled) . (" " x ($bwidth-$bfilled));
  
              my $message = $args{message};
          } else {
              my $bfilled = int(0.15 * $bwidth);
              $bfilled = 1 if $bfilled < 1;
              $self->{_x}++;
              if ($self->{_x} > $bwidth-$bfilled) {
                  $self->{_x} = 0;
              }
              $bar_bar = (" " x $self->{_x}) . ("=" x $bfilled) .
                  (" " x ($bwidth-$self->{_x}-$bfilled));
          }
  
          my $msg = $args{message};
          if (defined $msg) {
              if ($msg =~ m!</elspan!) {
                  require String::Elide::Parts;
                  $msg = String::Elide::Parts::elide($msg, $bwidth);
              }
              my $mwidth;
              if ($self->{wide}) {
                  $msg = Text::ANSI::WideUtil::ta_mbtrunc($msg, $bwidth);
                  $mwidth = Text::ANSI::WideUtil::ta_mbswidth($msg);
              } else {
                  $msg = Text::ANSI::NonWideUtil::ta_trunc($msg, $bwidth);
                  $mwidth = Text::ANSI::NonWideUtil::ta_length($msg);
              }
              $bar_bar = ansifg("808080") . $msg . ansifg("ff8000") .
                  substr($bar_bar, $mwidth);
          }
  
          $bar_bar = ansifg("ff8000") . $bar_bar;
      }
  
      $bar = join(
          "",
          ansifg("ffff00"), $bar_pct,
          "[$bar_bar]",
          ansifg("ffff00"), $bar_eta,
          "\e[0m",
      );
      print { $self->{fh} } $bar;
  
      $self->{_lastlen} = Text::ANSI::NonWideUtil::ta_length($bar);
  }
  
  sub cleanup {
      my ($self) = @_;
  
  
      my $ll = $self->{_lastlen};
      return unless $ll;
      print { $self->{fh} } "\b" x $ll, " " x $ll, "\b" x $ll;
  }
  
  sub keep_delay_showing {
      my $self = shift;
  
      $self->{_last_hide_time} = time();
  }
  
  sub DESTROY {
      my $self = shift;
      $self->_unpatch;
  }
  
  1;
  
  __END__
  
PROGRESS_ANY_OUTPUT_TERMPROGRESSBARCOLOR

$fatpacked{"Regexp/Stringify.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'REGEXP_STRINGIFY';
  package Regexp::Stringify;
  
  our $DATE = '2015-09-04'; 
  our $VERSION = '0.04'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use re qw(regexp_pattern);
  use Version::Util qw(version_ge);
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(stringify_regexp);
  
  our %SPEC;
  
  $SPEC{stringify_regexp} = {
      v => 1.1,
      summary => 'Stringify a Regexp object',
      description => <<'_',
  
  This routine is an alternative to Perl's default stringification of Regexp
  object (i.e.:`"$re"`) and has some features/options, e.g.: producing regexp
  string that is compatible with certain perl versions.
  
  If given a string (or other non-Regexp object), will return it as-is.
  
  _
      args => {
          regexp => {
              schema => 're*',
              req => 1,
              pos => 0,
          },
          plver => {
              summary => 'Target perl version',
              schema => 'str*',
              description => <<'_',
  
  Try to produce a regexp object compatible with a certain perl version (should at
  least be >= 5.10).
  
  For example, in perl 5.14 regex stringification changes, e.g. `qr/hlagh/i` would
  previously be stringified as `(?i-xsm:hlagh)`, but now it's stringified as
  `(?^i:hlagh)`. If you set `plver` to 5.10 or 5.12, then this routine will
  still produce the former. It will also ignore regexp modifiers that are
  introduced in newer perls.
  
  Note that not all regexp objects are translatable to older perls, e.g. if they
  contain constructs not known to older perls like `(^...)` before perl 5.14.
  
  _
          },
          with_qr => {
              schema  => 'bool',
              description => <<'_',
  
  If you set this to 1, then `qr/a/i` will be stringified as `'qr/a/i'` instead as
  `'(^i:a)'`. The resulting string can then be eval-ed to recreate the Regexp
  object.
  
  _
          },
      },
      result_naked => 1,
      result => {
          schema => 'str*',
      },
  };
  sub stringify_regexp {
      my %args = @_;
  
      my $re = $args{regexp};
      return $re unless ref($re) eq 'Regexp';
      my $plver = $args{plver} // $^V;
  
      my ($pat, $mod) = regexp_pattern($re);
  
      my $ge_5140 = version_ge($plver, 5.014);
      unless ($ge_5140) {
          $mod =~ s/[adlu]//g;
      }
  
      if ($args{with_qr}) {
          return "qr($pat)$mod";
      } else {
          if ($ge_5140) {
              return "(^$mod:$pat)";
          } else {
              return "(?:(?$mod-)$pat)";
          }
      }
  }
  
  1;
  
  __END__
  
REGEXP_STRINGIFY

$fatpacked{"Regexp/Wildcards.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'REGEXP_WILDCARDS';
  package Regexp::Wildcards;
  
  use strict;
  use warnings;
  
  use Carp           qw<croak>;
  use Scalar::Util   qw<blessed>;
  use Text::Balanced qw<extract_bracketed>;
  
  
  use vars qw<$VERSION>;
  BEGIN {
   $VERSION = '1.05';
  }
  
  
  sub _check_self {
   croak 'First argument isn\'t a valid ' . __PACKAGE__ . ' object'
    unless blessed $_[0] and $_[0]->isa(__PACKAGE__);
  }
  
  my %types = (
   jokers   => [ qw<jokers> ],
   sql      => [ qw<sql> ],
   commas   => [ qw<commas> ],
   brackets => [ qw<brackets> ],
   unix     => [ qw<jokers brackets> ],
   win32    => [ qw<jokers commas> ],
  );
  $types{$_} = $types{win32} for qw<dos os2 MSWin32 cygwin>;
  $types{$_} = $types{unix}  for qw<linux
                                    darwin machten next
                                    aix irix hpux dgux dynixptx
                                    bsdos freebsd openbsd
                                    svr4 solaris sunos dec_osf
                                    sco_sv unicos unicosmk>;
  
  my %escapes = (
   jokers   => '?*',
   sql      => '_%',
   commas   => ',',
   brackets => '{},',
   groups   => '()',
   anchors  => '^$',
  );
  
  my %captures = (
   single   => sub { $_[1] ? '(.)' : '.' },
   any      => sub { $_[1] ? ($_[0]->{greedy} ? '(.*)'
                                              : '(.*?)')
                           : '.*' },
   brackets => sub { $_[1] ? '(' : '(?:'; },
   greedy   => undef,
  );
  
  sub _validate {
   my $self  = shift;
   _check_self $self;
   my $valid = shift;
   my $old   = shift;
   $old = { } unless defined $old;
  
   my %opts;
   if (@_ <= 1) {
    $opts{set} = defined $_[0] ? $_[0] : { };
   } elsif (@_ % 2) {
    croak 'Arguments must be passed as an unique scalar or as key => value pairs';
   } else {
    %opts = @_;
   }
  
   my %checked;
   for (qw<set add rem>) {
    my $opt = $opts{$_};
    next unless defined $opt;
  
    my $cb = {
     ''      => sub { +{ ($_[0] => 1) x (exists $valid->{$_[0]}) } },
     'ARRAY' => sub { +{ map { ($_ => 1) x (exists $valid->{$_}) } @{$_[0]} } },
     'HASH'  => sub { +{ map { ($_ => $_[0]->{$_}) x (exists $valid->{$_}) }
                          keys %{$_[0]} } }
    }->{ ref $opt };
    croak 'Wrong option set' unless $cb;
    $checked{$_} = $cb->($opt);
   }
  
   my $config = (exists $checked{set}) ? $checked{set} : $old;
   $config->{$_} = $checked{add}->{$_} for grep $checked{add}->{$_},
                                            keys %{$checked{add} || {}};
   delete $config->{$_}                for grep $checked{rem}->{$_},
                                            keys %{$checked{rem} || {}};
  
   $config;
  }
  
  sub _do {
   my $self = shift;
  
   my $config;
   $config->{do}      = $self->_validate(\%escapes, $self->{do}, @_);
   $config->{escape}  = '';
   $config->{escape} .= $escapes{$_} for keys %{$config->{do}};
   $config->{escape}  = quotemeta $config->{escape};
  
   $config;
  }
  
  sub do {
   my $self = shift;
   _check_self $self;
  
   my $config  = $self->_do(@_);
   $self->{$_} = $config->{$_} for keys %$config;
  
   $self;
  }
  
  sub _capture {
   my $self = shift;
  
   my $config;
   $config->{capture} = $self->_validate(\%captures, $self->{capture}, @_);
   $config->{greedy}  = delete $config->{capture}->{greedy};
   for (keys %captures) {
    $config->{'c_' . $_} = $captures{$_}->($config, $config->{capture}->{$_})
                                                 if $captures{$_}; 
   }
  
   $config;
  }
  
  sub capture {
   my $self = shift;
   _check_self $self;
  
   my $config  = $self->_capture(@_);
   $self->{$_} = $config->{$_} for keys %$config;
  
   $self;
  }
  
  sub _type {
   my ($self, $type) = @_;
   $type = 'unix'     unless defined $type;
   croak 'Wrong type' unless exists $types{$type};
  
   my $config      = $self->_do($types{$type});
   $config->{type} = $type;
  
   $config;
  }
  
  sub type {
   my $self = shift;
   _check_self $self;
  
   my $config  = $self->_type(@_);
   $self->{$_} = $config->{$_} for keys %$config;
  
   $self;
  }
  
  sub new {
   my $class = shift;
   $class    = blessed($class) || $class || __PACKAGE__;
  
   croak 'Optional arguments must be passed as key => value pairs' if @_ % 2;
   my %args = @_;
  
   my $self = bless { }, $class;
  
   if (defined $args{do}) {
    $self->do($args{do});
   } else {
    $self->type($args{type});
   }
  
   $self->capture($args{capture});
  }
  
  
  sub convert {
   my ($self, $wc, $type) = @_;
   _check_self $self;
  
   my $config = (defined $type) ? $self->_type($type) : $self;
   return unless defined $wc;
  
   my $e = $config->{escape};
   $wc =~ s/
    (?<!\\)(
     (?:\\\\)*
     (?:
       [^\w\s\\$e]
      |
       \\
       (?: [^\W$e] | \s | $ )
     )
    )
   /\\$1/gx;
  
   my $do = $config->{do};
   $wc = $self->_jokers($wc) if $do->{jokers};
   $wc = $self->_sql($wc)    if $do->{sql};
   if ($do->{brackets}) {
    $wc = $self->_bracketed($wc);
   } elsif ($do->{commas} and $wc =~ /(?<!\\)(?:\\\\)*,/) {
    $wc = $self->{'c_brackets'} . $self->_commas($wc) . ')';
   }
  
   $wc
  }
  
  
  sub _extract ($) { extract_bracketed $_[0], '{',  qr/.*?(?<!\\)(?:\\\\)*(?={)/ }
  
  sub _jokers {
   my $self = shift;
   local $_ = $_[0];
  
   my $s = $self->{c_single};
   s/(?<!\\)((?:\\\\)*)\?/$1$s/g;
   $s = $self->{c_any};
   s/(?<!\\)((?:\\\\)*)\*+/$1$s/g;
  
   $_
  }
  
  sub _sql {
   my $self = shift;
   local $_ = $_[0];
  
   my $s = $self->{c_single};
   s/(?<!\\)((?:\\\\)*)_/$1$s/g;
   $s = $self->{c_any};
   s/(?<!\\)((?:\\\\)*)%+/$1$s/g;
  
   $_
  }
  
  sub _commas {
   local $_ = $_[1];
  
   s/(?<!\\)((?:\\\\)*),/$1|/g;
  
   $_
  }
  
  sub _brackets {
   my ($self, $rest) = @_;
  
   substr $rest, 0, 1, '';
   chop $rest;
  
   my ($re, $bracket, $prefix) = ('');
   while (do { ($bracket, $rest, $prefix) = _extract $rest; $bracket }) {
    $re .= $self->_commas($prefix) . $self->_brackets($bracket);
   }
   $re .= $self->_commas($rest);
  
   $self->{c_brackets} . $re . ')';
  }
  
  sub _bracketed {
   my ($self, $rest) = @_;
  
   my ($re, $bracket, $prefix) = ('');
   while (do { ($bracket, $rest, $prefix) = _extract $rest; $bracket }) {
    $re .= $prefix . $self->_brackets($bracket);
   }
   $re .= $rest;
  
   $re =~ s/(?<!\\)((?:\\\\)*[\{\},])/\\$1/g;
  
   $re;
  }
  
  1; 
REGEXP_WILDCARDS

$fatpacked{"Rinci.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'RINCI';
  package Rinci;
  
  our $VERSION = '1.1.78'; 
  
  1;
  
  __END__
  
RINCI

$fatpacked{"Role/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ROLE_TINY';
  package Role::Tiny;
  
  sub _getglob { \*{$_[0]} }
  sub _getstash { \%{"$_[0]::"} }
  
  use strict;
  use warnings;
  
  our $VERSION = '2.000001';
  $VERSION = eval $VERSION;
  
  our %INFO;
  our %APPLIED_TO;
  our %COMPOSED;
  our %COMPOSITE_INFO;
  our @ON_ROLE_CREATE;
  
  
  BEGIN {
    *_WORK_AROUND_BROKEN_MODULE_STATE = "$]" < 5.009 ? sub(){1} : sub(){0};
    *_MRO_MODULE = "$]" < 5.010 ? sub(){"MRO/Compat.pm"} : sub(){"mro.pm"};
  }
  
  sub Role::Tiny::__GUARD__::DESTROY {
    delete $INC{$_[0]->[0]} if @{$_[0]};
  }
  
  sub _load_module {
    (my $proto = $_[0]) =~ s/::/\//g;
    $proto .= '.pm';
    return 1 if $INC{$proto};
    return 1 if grep !/::$/, keys %{_getstash($_[0])||{}};
    my $guard = _WORK_AROUND_BROKEN_MODULE_STATE
      && bless([ $proto ], 'Role::Tiny::__GUARD__');
    require $proto;
    pop @$guard if _WORK_AROUND_BROKEN_MODULE_STATE;
    return 1;
  }
  
  sub import {
    my $target = caller;
    my $me = shift;
    strict->import;
    warnings->import;
    return if $me->is_role($target); 
    $INFO{$target}{is_role} = 1;
    my $stash = _getstash($target);
    foreach my $type (qw(before after around)) {
      *{_getglob "${target}::${type}"} = sub {
        require Class::Method::Modifiers;
        push @{$INFO{$target}{modifiers}||=[]}, [ $type => @_ ];
        return;
      };
    }
    *{_getglob "${target}::requires"} = sub {
      push @{$INFO{$target}{requires}||=[]}, @_;
      return;
    };
    *{_getglob "${target}::with"} = sub {
      $me->apply_roles_to_package($target, @_);
      return;
    };
    my @not_methods = (map { *$_{CODE}||() } grep !ref($_), values %$stash);
    @{$INFO{$target}{not_methods}={}}{@not_methods} = @not_methods;
    $APPLIED_TO{$target} = { $target => undef };
    $_->($target) for @ON_ROLE_CREATE;
  }
  
  sub role_application_steps {
    qw(_install_methods _check_requires _install_modifiers _copy_applied_list);
  }
  
  sub apply_single_role_to_package {
    my ($me, $to, $role) = @_;
  
    _load_module($role);
  
    die "This is apply_role_to_package" if ref($to);
    die "${role} is not a Role::Tiny" unless $me->is_role($role);
  
    foreach my $step ($me->role_application_steps) {
      $me->$step($to, $role);
    }
  }
  
  sub _copy_applied_list {
    my ($me, $to, $role) = @_;
    @{$APPLIED_TO{$to}||={}}{keys %{$APPLIED_TO{$role}}} = ();
  }
  
  sub apply_roles_to_object {
    my ($me, $object, @roles) = @_;
    die "No roles supplied!" unless @roles;
    my $class = ref($object);
    bless($_[1], $me->create_class_with_roles($class, @roles));
  }
  
  my $role_suffix = 'A000';
  sub _composite_name {
    my ($me, $superclass, @roles) = @_;
  
    my $new_name = join(
      '__WITH__', $superclass, my $compose_name = join '__AND__', @roles
    );
  
    if (length($new_name) > 252) {
      $new_name = $COMPOSED{abbrev}{$new_name} ||= do {
        my $abbrev = substr $new_name, 0, 250 - length $role_suffix;
        $abbrev =~ s/(?<!:):$//;
        $abbrev.'__'.$role_suffix++;
      };
    }
    return wantarray ? ($new_name, $compose_name) : $new_name;
  }
  
  sub create_class_with_roles {
    my ($me, $superclass, @roles) = @_;
  
    die "No roles supplied!" unless @roles;
  
    _load_module($superclass);
    {
      my %seen;
      $seen{$_}++ for @roles;
      if (my @dupes = grep $seen{$_} > 1, @roles) {
        die "Duplicated roles: ".join(', ', @dupes);
      }
    }
  
    my ($new_name, $compose_name) = $me->_composite_name($superclass, @roles);
  
    return $new_name if $COMPOSED{class}{$new_name};
  
    foreach my $role (@roles) {
      _load_module($role);
      die "${role} is not a Role::Tiny" unless $me->is_role($role);
    }
  
    require(_MRO_MODULE);
  
    my $composite_info = $me->_composite_info_for(@roles);
    my %conflicts = %{$composite_info->{conflicts}};
    if (keys %conflicts) {
      my $fail =
        join "\n",
          map {
            "Method name conflict for '$_' between roles "
            ."'".join(' and ', sort values %{$conflicts{$_}})."'"
            .", cannot apply these simultaneously to an object."
          } keys %conflicts;
      die $fail;
    }
  
    my @composable = map $me->_composable_package_for($_), reverse @roles;
  
    my @requires = grep {
      my $method = $_;
      !grep $_->can($method) && !$COMPOSED{role}{$_}{modifiers_only}{$method},
        @composable
    } @{$composite_info->{requires}};
  
    $me->_check_requires(
      $superclass, $compose_name, \@requires
    );
  
    *{_getglob("${new_name}::ISA")} = [ @composable, $superclass ];
  
    @{$APPLIED_TO{$new_name}||={}}{
      map keys %{$APPLIED_TO{$_}}, @roles
    } = ();
  
    $COMPOSED{class}{$new_name} = 1;
    return $new_name;
  }
  
  
  sub apply_role_to_package { shift->apply_single_role_to_package(@_) }
  
  sub apply_roles_to_package {
    my ($me, $to, @roles) = @_;
  
    return $me->apply_role_to_package($to, $roles[0]) if @roles == 1;
  
    my %conflicts = %{$me->_composite_info_for(@roles)->{conflicts}};
    my @have = grep $to->can($_), keys %conflicts;
    delete @conflicts{@have};
  
    if (keys %conflicts) {
      my $fail =
        join "\n",
          map {
            "Due to a method name conflict between roles "
            ."'".join(' and ', sort values %{$conflicts{$_}})."'"
            .", the method '$_' must be implemented by '${to}'"
          } keys %conflicts;
      die $fail;
    }
  
    my @role_methods = map $me->_concrete_methods_of($_), @roles;
    local @{$_}{@have} for @role_methods;
    delete @{$_}{@have} for @role_methods;
  
    if ($INFO{$to}) {
      delete $INFO{$to}{methods}; 
    }
  
    our %BACKCOMPAT_HACK;
    if($me ne __PACKAGE__
        and exists $BACKCOMPAT_HACK{$me} ? $BACKCOMPAT_HACK{$me} :
        $BACKCOMPAT_HACK{$me} =
          $me->can('role_application_steps')
            == \&role_application_steps
          && $me->can('apply_single_role_to_package')
            != \&apply_single_role_to_package
    ) {
      foreach my $role (@roles) {
        $me->apply_single_role_to_package($to, $role);
      }
    }
    else {
      foreach my $step ($me->role_application_steps) {
        foreach my $role (@roles) {
          $me->$step($to, $role);
        }
      }
    }
    $APPLIED_TO{$to}{join('|',@roles)} = 1;
  }
  
  sub _composite_info_for {
    my ($me, @roles) = @_;
    $COMPOSITE_INFO{join('|', sort @roles)} ||= do {
      foreach my $role (@roles) {
        _load_module($role);
      }
      my %methods;
      foreach my $role (@roles) {
        my $this_methods = $me->_concrete_methods_of($role);
        $methods{$_}{$this_methods->{$_}} = $role for keys %$this_methods;
      }
      my %requires;
      @requires{map @{$INFO{$_}{requires}||[]}, @roles} = ();
      delete $requires{$_} for keys %methods;
      delete $methods{$_} for grep keys(%{$methods{$_}}) == 1, keys %methods;
      +{ conflicts => \%methods, requires => [keys %requires] }
    };
  }
  
  sub _composable_package_for {
    my ($me, $role) = @_;
    my $composed_name = 'Role::Tiny::_COMPOSABLE::'.$role;
    return $composed_name if $COMPOSED{role}{$composed_name};
    $me->_install_methods($composed_name, $role);
    my $base_name = $composed_name.'::_BASE';
    _getstash($base_name);
    { no strict 'refs'; @{"${composed_name}::ISA"} = ( $base_name ); }
    my $modifiers = $INFO{$role}{modifiers}||[];
    my @mod_base;
    my @modifiers = grep !$composed_name->can($_),
      do { my %h; @h{map @{$_}[1..$#$_-1], @$modifiers} = (); keys %h };
    foreach my $modified (@modifiers) {
      push @mod_base, "sub ${modified} { shift->next::method(\@_) }";
    }
    my $e;
    {
      local $@;
      eval(my $code = join "\n", "package ${base_name};", @mod_base);
      $e = "Evaling failed: $@\nTrying to eval:\n${code}" if $@;
    }
    die $e if $e;
    $me->_install_modifiers($composed_name, $role);
    $COMPOSED{role}{$composed_name} = {
      modifiers_only => { map { $_ => 1 } @modifiers },
    };
    return $composed_name;
  }
  
  sub _check_requires {
    my ($me, $to, $name, $requires) = @_;
    return unless my @requires = @{$requires||$INFO{$name}{requires}||[]};
    if (my @requires_fail = grep !$to->can($_), @requires) {
      if (my $to_info = $INFO{$to}) {
        push @{$to_info->{requires}||=[]}, @requires_fail;
      } else {
        die "Can't apply ${name} to ${to} - missing ".join(', ', @requires_fail);
      }
    }
  }
  
  sub _concrete_methods_of {
    my ($me, $role) = @_;
    my $info = $INFO{$role};
    my $stash = _getstash($role);
    my $not_methods = { reverse %{$info->{not_methods}||{}} };
    $info->{methods} ||= +{
      map {
        my $code = *{$stash->{$_}}{CODE};
        ( ! $code or exists $not_methods->{$code} ) ? () : ($_ => $code)
      } grep !ref($stash->{$_}), keys %$stash
    };
  }
  
  sub methods_provided_by {
    my ($me, $role) = @_;
    die "${role} is not a Role::Tiny" unless $me->is_role($role);
    (keys %{$me->_concrete_methods_of($role)}, @{$INFO{$role}->{requires}||[]});
  }
  
  sub _install_methods {
    my ($me, $to, $role) = @_;
  
    my $info = $INFO{$role};
  
    my $methods = $me->_concrete_methods_of($role);
  
    my $stash = _getstash($to);
  
    my %has_methods;
    @has_methods{grep
      +(ref($stash->{$_}) || *{$stash->{$_}}{CODE}),
      keys %$stash
    } = ();
  
    foreach my $i (grep !exists $has_methods{$_}, keys %$methods) {
      no warnings 'once';
      my $glob = _getglob "${to}::${i}";
      *$glob = $methods->{$i};
  
      next
        unless $i =~ /^\(/
          && ((defined &overload::nil && $methods->{$i} == \&overload::nil)
              || (defined &overload::_nil && $methods->{$i} == \&overload::_nil));
  
      my $overload = ${ *{_getglob "${role}::${i}"}{SCALAR} };
      next
        unless defined $overload;
  
      *$glob = \$overload;
    }
  
    $me->_install_does($to);
  }
  
  sub _install_modifiers {
    my ($me, $to, $name) = @_;
    return unless my $modifiers = $INFO{$name}{modifiers};
    if (my $info = $INFO{$to}) {
      push @{$info->{modifiers}}, @{$modifiers||[]};
    } else {
      foreach my $modifier (@{$modifiers||[]}) {
        $me->_install_single_modifier($to, @$modifier);
      }
    }
  }
  
  my $vcheck_error;
  
  sub _install_single_modifier {
    my ($me, @args) = @_;
    defined($vcheck_error) or $vcheck_error = do {
      local $@;
      eval { Class::Method::Modifiers->VERSION(1.05); 1 }
        ? 0
        : $@
    };
    $vcheck_error and die $vcheck_error;
    Class::Method::Modifiers::install_modifier(@args);
  }
  
  my $FALLBACK = sub { 0 };
  sub _install_does {
    my ($me, $to) = @_;
  
    return if $me->is_role($to);
  
    my $does = $me->can('does_role');
    *{_getglob "${to}::does"} = $does unless $to->can('does');
  
    return
      if $to->can('DOES') and $to->can('DOES') != (UNIVERSAL->can('DOES') || 0);
  
    my $existing = $to->can('DOES') || $to->can('isa') || $FALLBACK;
    my $new_sub = sub {
      my ($proto, $role) = @_;
      $proto->$does($role) or $proto->$existing($role);
    };
    no warnings 'redefine';
    return *{_getglob "${to}::DOES"} = $new_sub;
  }
  
  sub does_role {
    my ($proto, $role) = @_;
    require(_MRO_MODULE);
    foreach my $class (@{mro::get_linear_isa(ref($proto)||$proto)}) {
      return 1 if exists $APPLIED_TO{$class}{$role};
    }
    return 0;
  }
  
  sub is_role {
    my ($me, $role) = @_;
    return !!($INFO{$role} && $INFO{$role}{is_role});
  }
  
  1;
  __END__
  
ROLE_TINY

$fatpacked{"Role/Tiny/With.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'ROLE_TINY_WITH';
  package Role::Tiny::With;
  
  use strict;
  use warnings;
  
  our $VERSION = '2.000001';
  $VERSION = eval $VERSION;
  
  use Role::Tiny ();
  
  use Exporter 'import';
  our @EXPORT = qw( with );
  
  sub with {
      my $target = caller;
      Role::Tiny->apply_roles_to_package($target, @_)
  }
  
  1;
  
  
  
ROLE_TINY_WITH

$fatpacked{"Sah/Schema/Rinci.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'SAH_SCHEMA_RINCI';
  package Sah::Schema::Rinci;
  
  our $DATE = '2015-09-03'; 
  our $VERSION = '1.1.78'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  our %SCHEMAS;
  
  my %dh_props = (
      v => {},
      defhash_v => {},
      name => {},
      caption => {},
      summary => {},
      description => {},
      tags => {},
      default_lang => {},
      x => {},
  );
  
  $SCHEMAS{rinci} = [hash => {
      _ver => 1.1, 
      _prop => {
          %dh_props,
  
          entity_v => {},
          entity_date => {},
          links => {
              _elem_prop => {
                  %dh_props,
  
                  url => {},
              },
          },
      },
  }];
  
  $SCHEMAS{rinci_function} = [hash => {
      _ver => 1.1,
      _prop => {
          %dh_props,
  
          entity_v => {},
          entity_date => {},
          links => {},
  
          is_func => {},
          is_meth => {},
          is_class_meth => {},
          args => {
              _value_prop => {
                  %dh_props,
  
                  links => {},
  
                  schema => {},
                  filters => {},
                  default => {},
                  req => {},
                  pos => {},
                  greedy => {},
                  partial => {},
                  stream => {},
                  is_password => {},
                  cmdline_aliases => {
                      _value_prop => {
                          summary => {},
                          description => {},
                          schema => {},
                          code => {},
                          is_flag => {},
                      },
                  },
                  cmdline_on_getopt => {},
                  cmdline_prompt => {},
                  completion => {},
                  element_completion => {},
                  cmdline_src => {},
                  meta => 'fix',
                  element_meta => 'fix',
                  deps => {
                      _keys => {
                          arg => {},
                          all => {},
                          any => {},
                          none => {},
                      },
                  },
              },
          },
          args_as => {},
          args_rels => {},
          result => {
              _prop => {
                  %dh_props,
  
                  schema => {},
                  statuses => {
                      _value_prop => {
                          summary => {},
                          description => {},
                          schema => {},
                      },
                  },
                  partial => {},
                  stream => {},
              },
          },
          result_naked => {},
          examples => {
              _elem_prop => {
                  %dh_props,
  
                  args => {},
                  argv => {},
                  src => {},
                  src_plang => {},
                  status => {},
                  result => {},
                  test => {},
              },
          },
          features => {
              _keys => {
                  reverse => {},
                  tx => {},
                  dry_run => {},
                  pure => {},
                  immutable => {},
                  idempotent => {},
                  check_arg => {},
              },
          },
          deps => {
              _keys => {
                  all => {},
                  any => {},
                  none => {},
                  env => {},
                  prog => {},
                  pkg => {},
                  func => {},
                  code => {},
                  tmp_dir => {},
                  trash_dir => {},
              },
          },
      },
  }];
  $SCHEMAS{rinci_function}[1]{_prop}{args}{_value_prop}{meta} =
      $SCHEMAS{rinci_function}[1];
  $SCHEMAS{rinci_function}[1]{_prop}{args}{_value_prop}{element_meta} =
      $SCHEMAS{rinci_function}[1];
  
  
  $SCHEMAS{rinci_resmeta} = [hash => {
      _ver => 1.1,
      _prop => {
          %dh_props,
  
          perm_err => {},
          func => {}, 
          cmdline => {}, 
          logs => {},
          prev => {},
          results => {},
          part_start => {},
          part_len => {},
          len => {},
          stream => {},
      },
  }];
  
  
  1;
  
  __END__
  
SAH_SCHEMA_RINCI

$fatpacked{"Scalar/Util/Numeric/PP.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'SCALAR_UTIL_NUMERIC_PP';
  package Scalar::Util::Numeric::PP;
  
  our $DATE = '2015-06-16'; 
  our $VERSION = '0.03'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(
                         isint
                         isnum
                         isnan
                         isinf
                         isneg
                         isfloat
                 );
  
  sub isint {
      local $_ = shift;
      return 0 unless defined;
      return 1 if /\A[+-]?(?:0|[1-9][0-9]*)\z/;
      0;
  }
  
  sub isnan($) {
      local $_ = shift;
      return 0 unless defined;
      return 1 if /\A\s*[+-]?nan\s*\z/i;
      0;
  }
  
  sub isinf($) {
      local $_ = shift;
      return 0 unless defined;
      return 1 if /\A\s*[+-]?inf(?:inity)?\s*\z/i;
      0;
  }
  
  sub isneg($) {
      local $_ = shift;
      return 0 unless defined;
      return 1 if /\A\s*-/;
      0;
  }
  
  sub isnum($) {
      local $_ = shift;
      return 0 unless defined;
      return 1 if isint($_);
      return 1 if isfloat($_);
      0;
  }
  
  sub isfloat($) {
      local $_ = shift;
      return 0 unless defined;
      return 1 if /\A[+-]?
                   (?: (?:0|[1-9][0-9]*)(\.[0-9]+)? | (\.[0-9]+) )
                   ([eE][+-]?[0-9]+)?\z/x && $1 || $2 || $3;
      return 1 if isnan($_) || isinf($_);
      0;
  }
  
  1;
  
  __END__
  
SCALAR_UTIL_NUMERIC_PP

$fatpacked{"String/Elide/Parts.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'STRING_ELIDE_PARTS';
  package String::Elide::Parts;
  
  our $DATE = '2015-01-23'; 
  our $VERSION = '0.01'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(elide);
  
  sub _elide_part {
      my ($str, $len, $marker, $truncate) = @_;
  
      my $len_marker = length($marker);
      if ($len <= $len_marker) {
          return substr($marker, 0, $len);
      }
  
      if ($truncate eq 'left') {
          return $marker . substr($str, length($str) - $len+$len_marker);
      } elsif ($truncate eq 'middle') {
          my $left  = substr($str, 0,
                             ($len-$len_marker)/2);
          my $right = substr($str,
                             length($str) - ($len-$len_marker-length($left)));
          return $left . $marker . $right;
      } elsif ($truncate eq 'ends') {
          if ($len <= 2*$len_marker) {
              return substr($marker . $marker, 0, $len);
          }
          return $marker . substr($str, (length($str)-$len)/2 + $len_marker,
                                  $len-2*$len_marker) . $marker;
      } else { 
          return substr($str, 0, $len-$len_marker) . $marker;
      }
  }
  
  sub elide {
      my ($str, $len, $opts) = @_;
  
      $opts //= {};
      my $truncate  = $opts->{truncate} // 'right';
      my $marker = $opts->{marker} // '..';
  
      my @parts;
      my @parts_attrs;
      my $parts_len = 0;
      while ($str =~ m#<elspan([^>]*)>(.*?)</elspan>|(.*?)(?=<elspan)|(.*)#g) {
          if (defined $1) {
              next unless length $2;
              push @parts, $2;
              push @parts_attrs, $1;
          } elsif (defined $3) {
              next unless length $3;
              push @parts, $3;
              push @parts_attrs, undef;
          } elsif (defined $4) {
              next unless length $4;
              push @parts, $4;
              push @parts_attrs, undef;
          }
      }
      return "" unless @parts && $len > 0;
      for my $i (0..@parts-1) {
          $parts_len += length($parts[$i]);
          if (defined $parts_attrs[$i]) {
              my $attrs = {};
              $attrs->{truncate} = $1 // $2
                  if $parts_attrs[$i] =~ /\btruncate=(?:"([^"]*)"|(\S+))/;
              $attrs->{prio} = $1 // $2
                  if $parts_attrs[$i] =~ /\bprio(?:rity)?=(?:"([^"]*)"|(\S+))/;
              $parts_attrs[$i] = $attrs;
          } else {
              $parts_attrs[$i] = {prio=>1};
          }
      }
  
  
      my $flip = 0;
  
    PART:
      while (1) {
          if ($parts_len <= $len) {
              return join("", @parts);
          }
  
          my @indexes;
          my $highest_prio;
          for (@parts_attrs) {
              $highest_prio = $_->{prio} if !defined($highest_prio) ||
                  $highest_prio < $_->{prio};
          }
          for my $i (0..@parts_attrs-1) {
              push @indexes, $i if $parts_attrs[$i]{prio} == $highest_prio;
          }
  
          my $index;
          if ($truncate eq 'left') {
              $index = $indexes[0];
          } elsif ($truncate eq 'middle') {
              $index = $indexes[@indexes/2];
          } elsif ($truncate eq 'ends') {
              $index = $flip++ % 2 ? $indexes[0] : $indexes[-1];
          } else { 
              $index = $indexes[-1];
          }
  
          my $part_len = length($parts[$index]);
          if ($parts_len - $part_len >= $len) {
              $parts_len -= $part_len;
              splice @parts, $index, 1;
              splice @parts_attrs, $index, 1;
              next PART;
          }
  
          $parts[$index] = _elide_part(
              $parts[$index],
              $part_len - ($parts_len-$len),
              $marker,
              $parts_attrs[$index]{truncate} // $truncate,
          );
          return join("", @parts);
  
      } 
  }
  
  1;
  
  __END__
  
STRING_ELIDE_PARTS

$fatpacked{"String/Indent.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'STRING_INDENT';
  package String::Indent;
  
  our $DATE = '2015-03-06'; 
  our $VERSION = '0.03'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         indent
                 );
  
  sub indent {
      my ($indent, $str, $opts) = @_;
      $opts //= {};
  
      my $ibl = $opts->{indent_blank_lines} // 1;
      my $fli = $opts->{first_line_indent} // $indent;
      my $sli = $opts->{subsequent_lines_indent} // $indent;
  
      my $i = 0;
      $str =~ s/^([^\r\n]?)/$i++; !$ibl && !$1 ? "$1" : $i==1 ? "$fli$1" : "$sli$1"/egm;
      $str;
  }
  
  1;
  
  __END__
  
STRING_INDENT

$fatpacked{"String/LineNumber.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'STRING_LINENUMBER';
  package String::LineNumber;
  
  our $DATE = '2014-12-10'; 
  our $VERSION = '0.01'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         linenum
                 );
  
  sub linenum {
      my ($str, $opts) = @_;
      $opts //= {};
      $opts->{width}      //= 4;
      $opts->{zeropad}    //= 0;
      $opts->{skip_empty} //= 1;
  
      my $i = 0;
      $str =~ s/^(([\t ]*\S)?.*)/
          sprintf(join("",
                       "%",
                       ($opts->{zeropad} && !($opts->{skip_empty}
                                                  && !defined($2)) ? "0" : ""),
                       $opts->{width}, "s",
                       "|%s"),
                  ++$i && $opts->{skip_empty} && !defined($2) ? "" : $i,
                  $1)/meg;
  
      $str;
  }
  
  1;
  
  __END__
  
STRING_LINENUMBER

$fatpacked{"String/PerlQuote.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'STRING_PERLQUOTE';
  package String::PerlQuote;
  
  our $DATE = '2014-12-10'; 
  our $VERSION = '0.01'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         single_quote
                         double_quote
                 );
  
  my %esc = (
      "\a" => "\\a",
      "\b" => "\\b",
      "\t" => "\\t",
      "\n" => "\\n",
      "\f" => "\\f",
      "\r" => "\\r",
      "\e" => "\\e",
  );
  
  sub double_quote {
    local($_) = $_[0];
    s/([\\\"\@\$])/\\$1/g;
    return qq("$_") unless /[^\040-\176]/;  
  
    s/([\a\b\t\n\f\r\e])/$esc{$1}/g;
  
    s/([\0-\037])(?!\d)/sprintf('\\%o',ord($1))/eg;
  
    s/([\0-\037\177-\377])/sprintf('\\x%02X',ord($1))/eg;
    s/([^\040-\176])/sprintf('\\x{%X}',ord($1))/eg;
  
    return qq("$_");
  }
  
  sub single_quote {
    local($_) = $_[0];
    s/([\\'])/\\$1/g;
    return qq('$_');
  }
  1;
  
  __END__
  
STRING_PERLQUOTE

$fatpacked{"String/ShellQuote.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'STRING_SHELLQUOTE';
  
  
  package String::ShellQuote;
  
  use strict;
  use vars qw($VERSION @ISA @EXPORT);
  
  require Exporter;
  
  $VERSION	= '1.04';
  @ISA		= qw(Exporter);
  @EXPORT		= qw(shell_quote shell_quote_best_effort shell_comment_quote);
  
  sub croak {
      require Carp;
      goto &Carp::croak;
  }
  
  sub _shell_quote_backend {
      my @in = @_;
      my @err = ();
  
      if (0) {
  	require RS::Handy;
  	print RS::Handy::data_dump(\@in);
      }
  
      return \@err, '' unless @in;
  
      my $ret = '';
      my $saw_non_equal = 0;
      foreach (@in) {
  	if (!defined $_ or $_ eq '') {
  	    $_ = "''";
  	    next;
  	}
  
  	if (s/\x00//g) {
  	    push @err, "No way to quote string containing null (\\000) bytes";
  	}
  
      	my $escape = 0;
  
  
  	if (/=/) {
  	    if (!$saw_non_equal) {
  	    	$escape = 1;
  	    }
  	}
  	else {
  	    $saw_non_equal = 1;
  	}
  
  	if (m|[^\w!%+,\-./:=@^]|) {
  	    $escape = 1;
  	}
  
  	if ($escape
  		|| (!$saw_non_equal && /=/)) {
  
      	    s/'/'\\''/g;
  
      	    s|((?:'\\''){2,})|q{'"} . (q{'} x (length($1) / 4)) . q{"'}|ge;
  
  	    $_ = "'$_'";
  	    s/^''//;
  	    s/''$//;
  	}
      }
      continue {
  	$ret .= "$_ ";
      }
  
      chop $ret;
      return \@err, $ret;
  }
  
  
  sub shell_quote {
      my ($rerr, $s) = _shell_quote_backend @_;
  
      if (@$rerr) {
      	my %seen;
      	@$rerr = grep { !$seen{$_}++ } @$rerr;
  	my $s = join '', map { "shell_quote(): $_\n" } @$rerr;
  	chomp $s;
  	croak $s;
      }
      return $s;
  }
  
  
  sub shell_quote_best_effort {
      my ($rerr, $s) = _shell_quote_backend @_;
  
      return $s;
  }
  
  
  sub shell_comment_quote {
      return '' unless @_;
      unless (@_ == 1) {
  	croak "Too many arguments to shell_comment_quote "
  	    	    . "(got " . @_ . " expected 1)";
      }
      local $_ = shift;
      s/\n/\n#/g;
      return $_;
  }
  
  1;
  
  __END__
  
STRING_SHELLQUOTE

$fatpacked{"String/Trim/More.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'STRING_TRIM_MORE';
  package String::Trim::More;
  
  our $DATE = '2014-12-10'; 
  our $VERSION = '0.02'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         ltrim
                         rtrim
                         trim
                         ltrim_lines
                         rtrim_lines
                         trim_lines
                         trim_blank_lines
  
                         ellipsis
                 );
  
  sub ltrim {
      my $str = shift;
      $str =~ s/\A\s+//s;
      $str;
  }
  
  sub rtrim {
      my $str = shift;
      $str =~ s/\s+\z//s;
      $str;
  }
  
  sub trim {
      my $str = shift;
      $str =~ s/\A\s+//s;
      $str =~ s/\s+\z//s;
      $str;
  }
  
  sub ltrim_lines {
      my $str = shift;
      $str =~ s/^[ \t]+//mg; 
      $str;
  }
  
  sub rtrim_lines {
      my $str = shift;
      $str =~ s/[ \t]+$//mg;
      $str;
  }
  
  sub trim_lines {
      my $str = shift;
      $str =~ s/^[ \t]+//mg;
      $str =~ s/[ \t]+$//mg;
      $str;
  }
  
  sub trim_blank_lines {
      local $_ = shift;
      return $_ unless defined;
      s/\A(?:\n\s*)+//;
      s/(?:\n\s*){2,}\z/\n/;
      $_;
  }
  
  sub ellipsis {
      my ($str, $maxlen, $ellipsis) = @_;
      $maxlen   //= 80;
      $ellipsis //= "...";
  
      if (length($str) <= $maxlen) {
          return $str;
      } else {
          return substr($str, 0, $maxlen-length($ellipsis)) . $ellipsis;
      }
  }
  
  1;
  
  __END__
  
STRING_TRIM_MORE

$fatpacked{"String/Wildcard/Bash.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'STRING_WILDCARD_BASH';
  package String::Wildcard::Bash;
  
  use 5.010001;
  use strict;
  use warnings;
  
  our $VERSION = '0.03'; 
  
  use Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         $RE_WILDCARD_BASH
                         contains_wildcard
                         convert_wildcard_to_sql
                 );
  
  our $RE_WILDCARD_BASH =
      qr(
            # non-escaped brace expression, with at least one comma
            (?P<brace>
                (?<!\\)(?:\\\\)*\{
                (?:           \\\\ | \\\{ | \\\} | [^\\\{\}] )*
                (?:, (?:  \\\\ | \\\{ | \\\} | [^\\\{\}] )* )+
                (?<!\\)(?:\\\\)*\}
            )
        |
            # non-escaped brace expression, to catch * or ? or [...] inside so
            # they don't go to below pattern, because bash doesn't consider them
            # wildcards, e.g. '/{et?,us*}' expands to '/etc /usr', but '/{et?}'
            # doesn't expand at all to /etc.
            (?P<braceno>
                (?<!\\)(?:\\\\)*\{
                (?:           \\\\ | \\\{ | \\\} | [^\\\{\}] )*
                (?<!\\)(?:\\\\)*\}
            )
        |
            (?P<class>
                # non-empty, non-escaped character class
                (?<!\\)(?:\\\\)*\[
                (?:  \\\\ | \\\[ | \\\] | [^\\\[\]] )+
                (?<!\\)(?:\\\\)*\]
            )
        |
            (?P<joker>
                # non-escaped * and ?
                (?<!\\)(?:\\\\)*[*?]
            )
        |
            (?P<sql_wc>
                # non-escaped % and ?
                (?<!\\)(?:\\\\)*[%_]
            )
        )ox;
  
  sub contains_wildcard {
      my $str = shift;
  
      while ($str =~ /$RE_WILDCARD_BASH/go) {
          my %m = %+;
          return 1 if $m{brace} || $m{class} || $m{joker};
      }
      0;
  }
  
  sub convert_wildcard_to_sql {
      my $str = shift;
  
      $str =~ s/$RE_WILDCARD_BASH/
          if ($+{joker}) {
              if ($+{joker} eq '*') {
                  "%";
              } else {
                  "_";
              }
          } elsif ($+{sql_wc}) {
              "\\$+{sql_wc}";
          } else {
              $&;
          }
      /eg;
  
      $str;
  }
  
  1;
  
  __END__
  
STRING_WILDCARD_BASH

$fatpacked{"Sub/Delete.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'SUB_DELETE';
  use 5.008003;
  
  package Sub::Delete;
  
  $VERSION = '1.00002';
  @EXPORT = delete_sub;
  
  use Exporter 5.57 'import';
  use constant point0 => 0+$] eq 5.01;
  
  sub strict_eval($) {
   local %^H if point0;
   local *@;
   use
    strict 'vars';
   local $SIG{__WARN__} = sub {};
   eval shift
  }
  
  my %sigils = qw( SCALAR $  ARRAY @  HASH % );
  
  sub delete_sub {
  	my $sub = shift;
  	my($stashname, $key) = $sub =~ /(.*::)((?:(?!::).)*)\z/s
  		? ($1,$2) : (caller()."::", $sub);
  	exists +(my $stash = \%$stashname)->{$key} or return;
  	ref $stash->{$key} eq 'SCALAR' and  
  		delete $stash->{$key}, return;
  	my $globname = "$stashname$key"; 
  	my $glob = *$globname; 
  	defined *$glob{CODE} or return;  
  	my $check_importedness
  	 = $stashname =~ /^(?:(?!\d)\w*(?:::\w*)*)\z/
  	   && $key    =~ /^(?!\d)\w+\z/;
  	my %imported_slots;
  	my $package;
  	if($check_importedness) {
  		$package = substr $stashname, 0, -2;
  		for (qw "SCALAR ARRAY HASH") {
  			defined *$glob{$_} or next;
  			$imported_slots{$_} = strict_eval
  			  "package $package; 0 && $sigils{$_}$key; 1"
  		}
  	}
          delete $stash->{$key};
  	keys %imported_slots == 1 and exists $imported_slots{SCALAR}
  	 and !$imported_slots{SCALAR} and Internals'SvREFCNT $$glob =>== 1
  	 and !defined *$glob{IO} and !defined *$glob{FORMAT}
  	 and return; 
  	my $newglob = \*$globname;
  	local *alias = *$newglob;
  	defined *$glob{$_} and (
  	 !$check_importedness || $imported_slots{$_}
  	  ? *$newglob
  	  : *alias
  	) = *$glob{$_}
  		for qw "SCALAR ARRAY HASH";
  	defined *$glob{$_} and *$newglob = *$glob{$_}
  		for qw "IO FORMAT";
  	return 
  }
  
  1;
  
  __END__
  
SUB_DELETE

$fatpacked{"Sub/Install.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'SUB_INSTALL';
  use strict;
  use warnings;
  package Sub::Install;
  $Sub::Install::VERSION = '0.928';
  use Carp;
  use Scalar::Util ();
  
  
  sub _name_of_code {
    my ($code) = @_;
    require B;
    my $name = B::svref_2object($code)->GV->NAME;
    return $name unless $name =~ /\A__ANON__/;
    return;
  }
  
  sub _CODELIKE {
    (Scalar::Util::reftype($_[0])||'') eq 'CODE'
    || Scalar::Util::blessed($_[0])
    && (overload::Method($_[0],'&{}') ? $_[0] : undef);
  }
  
  sub _build_public_installer {
    my ($installer) = @_;
  
    sub {
      my ($arg) = @_;
      my ($calling_pkg) = caller(0);
  
      for (qw(into from)) { $arg->{$_} = $calling_pkg unless $arg->{$_} }
  
      Carp::croak "named argument 'code' is not optional" unless $arg->{code};
  
      if (_CODELIKE($arg->{code})) {
        $arg->{as} ||= _name_of_code($arg->{code});
      } else {
        Carp::croak
          "couldn't find subroutine named $arg->{code} in package $arg->{from}"
          unless my $code = $arg->{from}->can($arg->{code});
  
        $arg->{as}   = $arg->{code} unless $arg->{as};
        $arg->{code} = $code;
      }
  
      Carp::croak "couldn't determine name under which to install subroutine"
        unless $arg->{as};
  
      $installer->(@$arg{qw(into as code) });
    }
  }
  
  
  my $_misc_warn_re;
  my $_redef_warn_re;
  BEGIN {
    $_misc_warn_re = qr/
      Prototype\ mismatch:\ sub\ .+?  |
      Constant subroutine .+? redefined
    /x;
    $_redef_warn_re = qr/Subroutine\ .+?\ redefined/x;
  }
  
  my $eow_re;
  BEGIN { $eow_re = qr/ at .+? line \d+\.\Z/ };
  
  sub _do_with_warn {
    my ($arg) = @_;
    my $code = delete $arg->{code};
    my $wants_code = sub {
      my $code = shift;
      sub {
        my $warn = $SIG{__WARN__} ? $SIG{__WARN__} : sub { warn @_ }; 
        local $SIG{__WARN__} = sub {
          my ($error) = @_;
          for (@{ $arg->{suppress} }) {
              return if $error =~ $_;
          }
          for (@{ $arg->{croak} }) {
            if (my ($base_error) = $error =~ /\A($_) $eow_re/x) {
              Carp::croak $base_error;
            }
          }
          for (@{ $arg->{carp} }) {
            if (my ($base_error) = $error =~ /\A($_) $eow_re/x) {
              return $warn->(Carp::shortmess $base_error);
            }
          }
          ($arg->{default} || $warn)->($error);
        };
        $code->(@_);
      };
    };
    return $wants_code->($code) if $code;
    return $wants_code;
  }
  
  sub _installer {
    sub {
      my ($pkg, $name, $code) = @_;
      no strict 'refs'; 
      *{"$pkg\::$name"} = $code;
      return $code;
    }
  }
  
  BEGIN {
    *_ignore_warnings = _do_with_warn({
      carp => [ $_misc_warn_re, $_redef_warn_re ]
    });
  
    *install_sub = _build_public_installer(_ignore_warnings(_installer));
  
    *_carp_warnings =  _do_with_warn({
      carp     => [ $_misc_warn_re ],
      suppress => [ $_redef_warn_re ],
    });
  
    *reinstall_sub = _build_public_installer(_carp_warnings(_installer));
  
    *_install_fatal = _do_with_warn({
      code     => _installer,
      croak    => [ $_redef_warn_re ],
    });
  }
  
  
  sub install_installers {
    my ($into) = @_;
  
    for my $method (qw(install_sub reinstall_sub)) {
      my $code = sub {
        my ($package, $subs) = @_;
        my ($caller) = caller(0);
        my $return;
        for (my ($name, $sub) = %$subs) {
          $return = Sub::Install->can($method)->({
            code => $sub,
            from => $caller,
            into => $package,
            as   => $name
          });
        }
        return $return;
      };
      install_sub({ code => $code, into => $into, as => $method });
    }
  }
  
  
  sub exporter {
    my ($arg) = @_;
  
    my %is_exported = map { $_ => undef } @{ $arg->{exports} };
  
    sub {
      my $class = shift;
      my $target = caller;
      for (@_) {
        Carp::croak "'$_' is not exported by $class" if !exists $is_exported{$_};
        install_sub({ code => $_, from => $class, into => $target });
      }
    }
  }
  
  BEGIN { *import = exporter({ exports => [ qw(install_sub reinstall_sub) ] }); }
  
  
  1;
  
  __END__
  
SUB_INSTALL

$fatpacked{"Test/Config/IOD/Common.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TEST_CONFIG_IOD_COMMON';
  package Test::Config::IOD::Common;
  
  our $DATE = '2015-09-08'; 
  our $VERSION = '0.19'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Module::Load;
  use Test::More 0.98;
  
  our $CLASS = "Config::IOD::Reader";
  
  sub test_common_iod {
  
      load $CLASS;
  
      subtest "opt: default_section" => sub {
          test_read_iod(
              args  => {default_section=>'bawaan'},
              input => <<'_',
  a=1
  _
              result => {bawaan=>{a=>1}},
          );
      };
  
      subtest "opt: allow_directives" => sub {
          test_read_iod(
              args  => {allow_directives=>['merge']},
              input => <<'_',
  ;!noop
  _
              dies  => 1,
          );
          test_read_iod(
              args  => {allow_directives=>['noop']},
              input => <<'_',
  ;!noop
  _
              result => {},
          );
      };
  
      subtest "opt: disallow_directives" => sub {
          test_read_iod(
              args  => {disallow_directives=>['noop']},
              input => <<'_',
  ;!noop
  _
              dies  => 1,
          );
          test_read_iod(
              args  => {disallow_directives=>['merge']},
              input => <<'_',
  ;!noop
  _
              result => {},
          );
      };
  
      subtest "opt: allow_directives + disallow_directives" => sub {
          test_read_iod(
              args  => {
                  allow_directives    => ['noop'],
                  disallow_directives => ['noop'],
              },
              input => <<'_',
  ;!noop
  _
              dies  => 1,
          );
      };
  
      subtest "opt: enable_quoting=0" => sub {
          test_read_iod(
              args  => {enable_quoting=>0},
              input => <<'_',
  name="1\n2"
  _
              result => {GLOBAL=>{name=>'"1\\n2"'}},
          );
      };
  
      subtest "opt: enable_bracket=0" => sub {
          test_read_iod(
              args  => {enable_bracket=>0},
              input => <<'_',
  name=[1,2,3]
  _
              result => {GLOBAL=>{name=>'[1,2,3]'}},
          );
      };
  
      subtest "opt: enable_brace=0" => sub {
          test_read_iod(
              args  => {enable_brace=>0},
              input => <<'_',
  name={"a":1}
  _
              result => {GLOBAL=>{name=>'{"a":1}'}},
          );
      };
  
      subtest "opt: enable_encoding=0" => sub {
          test_read_iod(
              args  => {enable_encoding=>0},
              input => <<'_',
  name=!hex 5e5e
  _
              result => {GLOBAL=>{name=>'!hex 5e5e'}},
          );
      };
  
      subtest "opt: allow_encodings" => sub {
          test_read_iod(
              args  => {allow_encodings=>['hex']},
              input => <<'_',
  name=!json "1\n2"
  _
              dies => 1,
          );
          test_read_iod(
              args  => {allow_encodings=>['json']},
              input => <<'_',
  name=!json "1\n2"
  name2=!j "3\n4"
  _
              result => {GLOBAL=>{name=>"1\n2", name2=>"3\n4"}},
          );
      };
  
      subtest "opt: disallow_encodings" => sub {
          test_read_iod(
              args  => {disallow_encodings=>['json']},
              input => <<'_',
  name=!json "1\n2"
  _
              dies => 1,
          );
          test_read_iod(
              args  => {disallow_encodings=>['json']},
              input => <<'_',
  name=!j "1\n2"
  _
              dies => 1,
          );
          test_read_iod(
              args  => {disallow_encodings=>['hex']},
              input => <<'_',
  name=!json "1\n2"
  _
              result => {GLOBAL=>{name=>"1\n2"}},
          );
      };
  
      subtest "opt: allow_encodings + disallow_encodings" => sub {
          test_read_iod(
              args  => {
                  allow_encodings   =>['json'],
                  disallow_encodings=>['json'],
              },
              input => <<'_',
  name=!json "1\n2"
  _
              dies => 1,
          );
      };
  
      subtest "opt: allow_bang_only=0" => sub {
          test_read_iod(
              args  => {allow_bang_only=>0},
              input => <<'_',
  a=1
  !noop
  _
              dies => 1,
          );
      };
  
      subtest "opt: allow_duplicate_key=0" => sub {
          test_read_iod(
              args  => {allow_duplicate_key=>0},
              input => <<'_',
  a=1
  a=2
  _
              dies => 1,
          );
      };
  
      subtest "opt: ignore_unknown_directive=1" => sub {
          test_read_iod(
              args  => {ignore_unknown_directive=>1},
              input => <<'_',
  ;!foo bar
  _
              result => {},
          );
      };
  
      subtest "expr" => sub {
          test_read_iod(
              name  => "must be enabled first",
              args  => {},
              input => <<'_',
  a=!e 1+1
  _
              dies => 1,
          );
          test_read_iod(
              name  => "must be valid",
              args  => {enable_expr=>1},
              input => <<'_',
  a=!e 1+
  _
              dies => 1,
          );
          test_read_iod(
              args  => {enable_expr=>1},
              input => <<'_',
  a=!e 1+1
  [sect]
  b=!e val("GLOBAL.a")*3
  c=!e val("b") x 3
  _
              result => {GLOBAL=>{a=>2}, sect=>{b=>6, c=>666}},
          );
      };
  }
  
  sub test_read_iod {
      my %args = @_;
  
      my $parser_args = $args{args};
      my $test_name = $args{name} //
          "{". join(", ",
                    (map {"$_=$parser_args->{$_}"}
                         sort keys %$parser_args),
                ) . "}";
      subtest $test_name => sub {
  
          my $parser = $CLASS->new(%$parser_args);
  
          my $res;
          eval {
              if ($CLASS eq 'Config::IOD') {
                  $res = $parser->read_string($args{input})->dump;
              } else {
                  $res = $parser->read_string($args{input});
              }
          };
          my $err = $@;
          if ($args{dies}) {
              ok($err, "dies") or diag explain $res;
              return;
          } else {
              ok(!$err, "doesn't die")
                  or do { diag explain "err=$err"; return };
              is_deeply($res, $args{result}, 'result')
                  or diag explain $res;
          }
      };
  }
  
  1;
  
  __END__
  
TEST_CONFIG_IOD_COMMON

$fatpacked{"Test/Data/Sah.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TEST_DATA_SAH';
  package Test::Data::Sah;
  
  our $DATE = '2015-10-18'; 
  our $VERSION = '0.74'; 
  
  use 5.010;
  use strict;
  use warnings;
  
  use Data::Dump qw(dump);
  use Data::Sah qw(gen_validator);
  use Test::More 0.98;
  
  use Exporter qw(import);
  our @EXPORT_OK = qw(test_sah_cases);
  
  sub test_sah_cases {
      my $tests = shift;
      my $opts  = shift // {};
  
      my $sah = Data::Sah->new;
      my $plc = $sah->get_compiler('perl');
  
      my $gvopts = $opts->{gen_validator_opts} // {};
      my $rt = $gvopts->{return_type} // 'bool';
  
      for my $test (@$tests) {
          my $v = gen_validator($test->{schema}, $gvopts);
          my $res = $v->($test->{input});
          my $name = $test->{name} //
              "data " . dump($test->{input}) . " should".
                  ($test->{valid} ? " pass" : " not pass"). " schema " .
                      dump($test->{schema});
          my $testres;
          if ($test->{valid}) {
              if ($rt eq 'bool') {
                  $testres = ok($res, $name);
              } elsif ($rt eq 'str') {
                  $testres = is($res, "", $name) or diag explain $res;
              } elsif ($rt eq 'full') {
                  $testres = is(~~keys(%{$res->{errors}}), 0, $name) or diag explain $res;
              }
          } else {
              if ($rt eq 'bool') {
                  $testres = ok(!$res, $name);
              } elsif ($rt eq 'str') {
                  $testres = isnt($res, "", $name) or diag explain $res;
              } elsif ($rt eq 'full') {
                  $testres = isnt(~~keys(%{$res->{errors}}), 0, $name) or diag explain $res;
              }
          }
          next if $testres;
  
          my $cd = $plc->compile(schema => $test->{schema});
          diag "schema compilation result:\n----begin generated code----\n",
              explain($cd->{result}), "\n----end generated code----\n",
                  "that code should return ", ($test->{valid} ? "true":"false"),
                      " when fed \$data=", dump($test->{input}),
                          " but instead returns ", dump($res);
  
          my $vfull = gen_validator($test->{schema}, {return_type=>"full"});
          diag "\nvalidator result (full):\n----begin result----\n",
              explain($vfull->($test->{input})), "----end result----";
      }
  }
  
  1;
  
  __END__
  
TEST_DATA_SAH

$fatpacked{"Text/ANSI/BaseUtil.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TEXT_ANSI_BASEUTIL';
  package Text::ANSI::BaseUtil;
  
  our $DATE = '2015-08-20'; 
  our $VERSION = '0.21'; 
  
  use 5.010001;
  use strict;
  use warnings;
  
  use List::Util qw(min max);
  
  our $re       = qr/\e\[[0-9;]+m/s;
  our $re_mult  = qr/(?:\e\[[0-9;]+m)+/s;
  
  sub ta_detect {
      my $text = shift;
      $text =~ $re ? 1:0;
  }
  
  sub ta_length {
      my $text = shift;
      length(ta_strip($text));
  }
  
  sub _ta_length_height {
      my ($is_mb, $text) = @_;
      my $num_lines = 0;
      my @lens;
      for my $e (split /(\r?\n)/, ta_strip($text)) {
          if ($e =~ /\n/) {
              $num_lines++;
              next;
          }
          $num_lines = 1 if $num_lines == 0;
          push @lens, $is_mb ? Text::WideChar::Util::mbswidth($e) : length($e);
      }
      [max(@lens) // 0, $num_lines];
  }
  
  sub ta_length_height {
      _ta_length_height(0, @_);
  }
  
  sub ta_mbswidth_height {
      _ta_length_height(1, @_);
  }
  
  sub ta_strip {
      my $text = shift;
      $text =~ s/$re//go;
      $text;
  }
  
  sub ta_extract_codes {
      my $text = shift;
      my $res = "";
      $res .= $1 while $text =~ /($re_mult)/go;
      $res;
  }
  
  sub ta_split_codes {
      my $text = shift;
      return split(/($re_mult)/o, $text);
  }
  
  sub ta_split_codes_single {
      my $text = shift;
      return split(/($re)/o, $text);
  }
  
  sub _ta_mbswidth0 {
      my $text = shift;
      Text::WideChar::Util::mbswidth(ta_strip($text));
  }
  
  sub ta_mbswidth {
      my $text = shift;
      ta_mbswidth_height($text)->[0];
  }
  
  sub _ta_wrap {
      my ($is_mb, $text, $width, $opts) = @_;
      $width //= 80;
      $opts  //= {};
  
  
      my $_re1 = $is_mb ?
          qr/($Text::WideChar::Util::re_cjk+)|(\S+)|(\s+)/ :
          qr/()(\S+)|(\s+)/;
  
      my $_re2 = $is_mb ?
          qr/($Text::WideChar::Util::re_cjk_class+)|
             ($Text::WideChar::Util::re_cjk_negclass+)/x : undef;
  
      my @termst; 
      my @terms;  
      my @pterms; 
      my @termsw; 
      my @termsc; 
      {
          my @ch = ta_split_codes_single($text);
          my $crcode = ""; 
          my $term      = '';
          my $pterm     = '';
          my $prev_type = '';
          while (my ($pt, $c) = splice(@ch, 0, 2)) {
  
  
              my @s; 
              while ($pt =~ /$_re1/g) {
                  if ($is_mb && $1) {
                      push @s, $1, 'c';
                  } elsif ($3) {
                      push @s, $3, 's';
                  } else {
                      if ($is_mb) {
                          my $pt2 = $2;
                          while ($pt2 =~ /$_re2/g) {
                              if ($1) {
                                  push @s, $1, 'c';
                              } else {
                                  push @s, $2, 'w';
                              }
                          }
                      } else {
                          push @s, $2, 'w';
                      }
                  }
              }
  
  
              my $only_code = 1 if !@s;
              while (1) {
                  my ($s, $s_type) = splice @s, 0, 2;
                  $s_type //= '';
                  last unless $only_code || defined($s);
                  if ($only_code) {
                      $s = "";
                      $term .= $c if defined $c;
                  }
  
                  if ($s_type && $s_type ne 's') {
                      if ($prev_type eq 's') {
                          push @termst, 's';
                          push @terms , $term;
                          push @pterms, $pterm;
                          push @termsw, undef;
                          push @termsc, $crcode;
                          $pterm = ''; $term = '';
                      } elsif ($prev_type && $prev_type ne $s_type) {
                          push @termst, $prev_type;
                          push @terms , $term;
                          push @pterms, $pterm;
                          push @termsw, $is_mb ? Text::WideChar::Util::mbswidth($pterm):length($pterm);
                          push @termsc, $crcode;
                          $pterm = ''; $term = '';
                      }
                      $pterm .= $s;
                      $term  .= $s; $term .= $c if defined($c) && !@s;
                      if (!@s && !@ch) {
                          push @termst, $s_type;
                          push @terms , $term;
                          push @pterms, "";
                          push @termsw, $is_mb ? Text::WideChar::Util::mbswidth($pterm):length($pterm);
                          push @termsc, $crcode;
                      }
                  } elsif (length($s)) {
                      if ($prev_type ne 's') {
                          push @termst, $prev_type;
                          push @terms , $term;
                          push @pterms, "";
                          push @termsw, $is_mb ? Text::WideChar::Util::mbswidth($pterm):length($pterm);
                          push @termsc, $crcode;
                          $pterm = ''; $term = '';
                      }
                      $pterm .= $s;
                      $term  .= $c if defined($c) && !@s;
                      if (!@s && !@ch) {
                          push @termst, 's';
                          push @terms , $term;
                          push @pterms, $pterm;
                          push @termsw, undef;
                          push @termsc, $crcode;
                      }
                  }
                  $prev_type = $s_type;
  
                  if (!@s) {
                      if (defined($c) && $c =~ /m\z/) {
                          if ($c eq "\e[0m") {
                              $crcode = "";
                          } elsif ($c =~ /m\z/) {
                              $crcode .= $c;
                          }
                      }
                      last if $only_code;
                  }
  
              } 
          } 
      }
  
      {
          my $i = 0;
          while ($i < @pterms) {
              if ($termst[$i] eq 's') {
                  if ($pterms[$i] =~ /[ \t]*(\n(?:[ \t]*\n)+)([ \t]*)/) {
                      $pterms[$i] = $1;
                      $termst[$i] = 'p';
                      if ($i < @pterms-1) {
                          $terms [$i+1] = $terms[$i] . $terms [$i+1];
                          $terms [$i] = "";
                      }
                      if (length $2) {
                          splice @termst, $i+1, 0, "s";
                          splice @terms , $i+1, 0, "";
                          splice @pterms, $i+1, 0, $2;
                          splice @termsw, $i+1, 0, undef;
                          splice @termsc, $i+1, 0, $termsc[$i];
                          $i += 2;
                          next;
                      }
                  }
              }
              $i++;
          }
      }
  
  
  
      my ($maxww, $minww);
  
  
      my @res;
      {
          my $tw = $opts->{tab_width} // 8;
          die "Please specify a positive tab width" unless $tw > 0;
          my $optfli  = $opts->{flindent};
          my $optfliw = Text::WideChar::Util::_get_indent_width($is_mb, $optfli, $tw) if defined $optfli;
          my $optsli  = $opts->{slindent};
          my $optsliw = Text::WideChar::Util::_get_indent_width($is_mb, $optsli, $tw) if defined $optsli;
          my $pad = $opts->{pad};
          my $x = 0;
          my $y = 0;
          my ($fli, $sli, $fliw, $sliw);
          my $is_parastart = 1;
          my $line_has_word = 0;
          my ($termt, $prev_t);
        TERM:
          for my $i (0..$#terms) {
              $prev_t = $termt if $i;
              $termt = $termst[$i];
              my $term  = $terms[$i];
              my $pterm = $pterms[$i];
              my $termw = $termsw[$i];
              my $crcode = $i > 0 ? $termsc[$i-1] : "";
  
              if ($termt eq 'p') {
                  my $numnl = 0;
                  $numnl++ while $pterm =~ /\n/g;
                  for (1..$numnl) {
                      push @res, "\e[0m" if $crcode && $_ == 1;
                      push @res, " " x ($width-$x) if $pad;
                      push @res, "\n";
                      $x = 0;
                      $y++;
                  }
                  $line_has_word = 0;
                  $x = 0;
                  $is_parastart = 1;
                  next TERM;
              }
  
              if ($is_parastart) {
                  if (defined $optfli) {
                      $fli  = $optfli;
                      $fliw = $optfliw;
                  } else {
                      if ($termt eq 's') {
                          $fli  = $pterm;
                          $fliw = Text::WideChar::Util::_get_indent_width($is_mb, $fli, $tw);
                      } else {
                          $fli  = "";
                          $fliw = 0;
                      }
                      my $j = $i;
                      $sli = undef;
                      while ($j < @terms && $termst[$j] ne 'p') {
                          if ($termst[$j] eq 's') {
                              if ($pterms[$j] =~ /\n([ \t]+)/) {
                                  $sli  = $1;
                                  $sliw = Text::WideChar::Util::_get_indent_width($is_mb, $sli, $tw);
                                  last;
                              }
                          }
                          $j++;
                      }
                      if (!defined($sli)) {
                          $sli  = "";
                          $sliw = 0;
                      }
                      die "Subsequent indent must be less than width" if $sliw >= $width;
                  }
  
                  push @res, $fli;
                  $x += $fliw;
              } 
  
              $is_parastart = 0;
  
              if ($termt eq 's') {
                  push @res, $term;
  
                  if ($pterm =~ /\n/ && $i == $#terms) {
                      push @res, "\e[0m" if $crcode;
                      push @res, " " x ($width-$x) if $pad;
                      push @res, "\n";
                      $line_has_word = 0;
                  }
              }
  
              if ($termt ne 's') {
                  my @words;
                  my @wordsw;
                  my @wordst; 
                  my @wordswsb; 
                  my $j = 0;
                  my $c = ""; 
                  while (1) {
                      $j++;
                      if ($termw <= $width-$sliw || $termt eq 'c') {
                          push @words   , $c . $term;
                          push @wordsw  , $termw;
                          push @wordst  , $termt;
                          push @wordswsb, ($prev_t && $prev_t eq 's')?1:0;
                          last;
                      }
                      my $res = $is_mb ? ta_mbtrunc($term, $width-$sliw, 1) :
                          ta_trunc($term, $width-$sliw, 1);
  
                      my ($tword, $twordw);
                      if ($j == 1) {
                          $tword  = $res->[0];
                          $twordw = $res->[1];
                      } else {
                          $tword  = ($crcode ? "\e[0m" . $crcode : "") .
                              $c . $res->[0];
                          $twordw = $res->[1];
                      }
                      $c .= ta_extract_codes(substr($term, 0, $res->[2]));
  
                      push @words   , $tword;
                      push @wordsw  , $twordw;
                      push @wordst  , $termt;
                      push @wordswsb, $j == 1 ? (($prev_t && $prev_t eq 's')?1:0) : 0;
                      $term  = substr($term, $res->[2]);
                      $termw = $is_mb ? _ta_mbswidth0($term) : ta_length($term);
                  }
  
  
                  for my $word (@words) {
                      my $wordw = shift @wordsw;
                      my $wordt = shift @wordst;
                      my $ws_before = shift @wordswsb;
  
                      $maxww = $wordw if !defined($maxww) || $maxww < $wordw;
                      $minww = $wordw if !defined($minww) || $minww > $wordw;
  
                      if ($x + ($line_has_word ? 1:0) + $wordw <= $width) {
                          if ($line_has_word && $ws_before) {
                              push @res, " ";
                              $x++;
                          }
                          push @res, $word;
                          $x += $wordw;
                      } else {
                          while (1) {
                              if ($wordt eq 'c') {
                                  my $res;
                                  if ($ws_before) {
                                      $res = ta_mbtrunc($word, $width-$x-1, 1);
                                      push @res, " ", $res->[0];
                                  } else {
                                      $res = ta_mbtrunc($word, $width-$x, 1);
                                      push @res, $res->[0];
                                  }
                                  $word = $res->[3];
                                  $wordw = _ta_mbswidth0($res->[3]);
                              } else {
                                  push @res, "\e[0m" if $crcode;
                              }
                              push @res, " " x ($width-$x) if $pad;
                              push @res, "\n";
                              $y++;
                              push @res, $crcode;
                              push @res, $sli;
  
                              if ($sliw + $wordw <= $width) {
                                  push @res, $word;
                                  $x = $sliw + $wordw;
                                  last;
                              } else {
                                  $x = $sliw;
                              }
                          }
                      }
                      $line_has_word++;
                  }
  
              }
          } 
          push @res, " " x ($width-$x) if $line_has_word && $pad;
      }
  
      if ($opts->{return_stats}) {
          return [join("", @res), {
              max_word_width => $maxww,
              min_word_width => $minww,
          }];
      } else {
          return join("", @res);
      }
  }
  
  sub ta_wrap {
      _ta_wrap(0, @_);
  }
  
  sub ta_mbwrap {
      _ta_wrap(1, @_);
  }
  
  sub _ta_pad {
      my ($is_mb, $text, $width, $which, $padchar, $is_trunc) = @_;
      if ($which) {
          $which = substr($which, 0, 1);
      } else {
          $which = "r";
      }
      $padchar //= " ";
  
      my $w = $is_mb ? _ta_mbswidth0($text) : ta_length($text);
      if ($is_trunc && $w > $width) {
          my $res = $is_mb ?
              ta_mbtrunc($text, $width, 1) : ta_trunc($text, $width, 1);
          $text = $res->[0] . ($padchar x ($width-$res->[1]));
      } else {
          if ($which eq 'l') {
              $text = ($padchar x ($width-$w)) . $text;
          } elsif ($which eq 'c') {
              my $n = int(($width-$w)/2);
              $text = ($padchar x $n) . $text . ($padchar x ($width-$w-$n));
          } else {
              $text .= ($padchar x ($width-$w));
          }
      }
      $text;
  }
  
  sub ta_pad {
      _ta_pad(0, @_);
  }
  
  sub ta_mbpad {
      _ta_pad(1, @_);
  }
  
  sub _ta_trunc {
      my ($is_mb, $text, $width, $return_extra) = @_;
  
  
      my $w = $is_mb ? _ta_mbswidth0($text) : ta_length($text);
      if ($w <= $width) {
          return $return_extra ? [$text, $w, length($text), ''] : $text;
      }
      my @p = ta_split_codes_single($text);
      my $res = '';
      my $append = 1; 
      my $code4rest = '';
      my $rest = '';
      $w = 0;
      my $c = 0;
      while (my ($t, $ansi) = splice @p, 0, 2) {
          if ($append) {
              my $tw = $is_mb ? Text::WideChar::Util::mbswidth($t) : length($t);
              if ($w+$tw <= $width) {
                  $res .= $t;
                  $w += $tw;
                  $c += length($t);
                  $append = 0 if $w == $width;
              } else {
                  my $tres = $is_mb ?
                      Text::WideChar::Util::mbtrunc($t, $width-$w, 1) :
                        [substr($t, 0, $width-$w), $width-$w, $width-$w];
                  $res .= $tres->[0];
                  $w += $tres->[1];
                  $c += $tres->[2];
                  $rest = substr($t, $tres->[2]);
                  $append = 0;
              }
          } else {
              $rest .= $t;
          }
          if (defined $ansi) {
              if ($append) {
                  if ($ansi eq "\e[0m") {
                      $c = length($ansi);
                      $code4rest = $ansi;
                  } else {
                      $c += length($ansi);
                      $code4rest .= $ansi;
                  }
                  $res .= $ansi;
              } else {
                  $res .= $ansi;
                  $rest .= $ansi;
              }
          }
      }
  
  
      if ($return_extra) {
          return [$res, $w, $c, $code4rest . $rest];
      } else {
          return $res;
      }
  }
  
  sub _ta_prune_codes {
      my $text = shift;
      $text =~ s/($re_mult)\e\[0m/\e\[0m/g;
      $text;
  }
  
  sub ta_trunc {
      _ta_trunc(0, @_);
  }
  
  sub ta_mbtrunc {
      _ta_trunc(1, @_);
  }
  
  sub _ta_highlight {
      my ($is_all, $text, $needle, $color) = @_;
  
      my (@chptext, @chcode, @chsavedc); 
      my $sc = "";
      my $plaintext = "";
      my @ch = ta_split_codes_single($text);
      while (my ($pt, $c) = splice(@ch, 0, 2)) {
          push @chptext , $pt;
          push @chcode  , $c;
          push @chsavedc, $sc;
          $plaintext .= $pt;
          if (defined($c) && $c =~ /m\z/) {
              if ($c eq "\e[0m") {
                  $sc = "";
              } elsif ($c =~ /m\z/) {
                  $sc .= $c;
              }
          }
      }
  
      my (@needle, @npos);
      if (ref($needle) eq 'Regexp') {
          my @m = $plaintext =~ /$needle/g;
          return $text unless @m;
          my $pos = 0;
          while ($pos < length($plaintext)) {
              my @pt;
              for (@m) {
                  my $p = index($plaintext, $_, $pos);
                  push @pt, [$p, $_] if $p >= 0;
              }
              last unless @pt;
              my $pmin = $pt[0][0];
              my $t = $pt[0][1];
              for (@pt) {
                  if ($pmin > $_->[0] ||
                          $pmin==$_->[0] && length($t) < length($_->[1])) {
                      $pmin = $_->[0];
                      $t = $_->[1];
                  }
              }
              push @needle, $t;
              push @npos  , $pmin;
              last unless $is_all;
              $pos = $pmin + length($t);
          }
      } else {
          my $pos = 0;
          while (1) {
              my $p = index($plaintext, $needle, $pos);
              last if $p < 0;
              push @needle, $needle;
              push @npos  , $p;
              last unless $is_all;
              $pos = $p + length($needle);
              last if $pos >= length($plaintext);
          }
          return $text unless @needle;
      }
  
      my @res;
      my $found = 1;
      my $pos = 0;
      my $i = 0;
      my $curneed = shift @needle;
      my $npos    = shift @npos;
    CHUNK:
      while (1) {
          last if $i >= @chptext;
          my $pos2  = $pos+length($chptext[$i])-1;
          my $npos2 = $npos+length($curneed)-1;
          if ($pos > $npos2 || $pos2 < $npos || !$found) {
              push @res, $chptext[$i];
              push @res, $chcode[$i] if defined $chcode[$i];
              goto L1;
          }
  
          if ($pos < $npos) {
              my $pre = substr($chptext[$i], 0, $npos-$pos);
              push @res, $pre;
          }
  
          my $npart = substr($curneed,
                             max(0, $pos-$npos),
                             min($pos2, $npos2)-max($pos, $npos)+1);
          if (length($npart)) {
              push @res, $color, $npart;
              push @res, "\e[0m";
              push @res, $chsavedc[$i];
          }
  
          if ($npos2 <= $pos2) {
              my $post = substr($chptext[$i], $npos2-$pos+1);
  
              if (@needle) {
                  $curneed = shift @needle;
                  $npos    = shift @npos;
                  $pos     = $npos2+1;
                  $chptext[$i] = $post;
                  $found = 1;
                  redo CHUNK;
              } else {
                  $found = 0;
              }
  
              if (!$found) {
                  push @res, $post;
                  push @res, $chcode[$i] if defined $chcode[$i];
              }
          }
  
        L1:
          $pos = $pos2+1;
          $i++;
      }
  
      join "", @res;
  }
  
  sub ta_highlight {
      _ta_highlight(0, @_);
  }
  
  sub ta_highlight_all {
      _ta_highlight(1, @_);
  }
  
  sub ta_add_color_resets {
      my (@text) = @_;
  
      my @res;
      my $i = 0;
      my $savedc = "";
      for my $text (@text) {
          $i++;
          my $newt = $i > 1 && !$savedc ? "\e[0m" : $savedc;
  
          my @ch = ta_split_codes_single($text);
          while (my ($t, $c) = splice(@ch, 0, 2)) {
              $newt .= $t;
              if (defined($c) && $c =~ /m\z/) {
                  $newt .= $c;
                  if ($c eq "\e[0m") {
                      $savedc = "";
                  } elsif ($c =~ /m\z/) {
                      $savedc .= $c;
                  }
              }
          }
  
          $newt .= "\e[0m" if $savedc && $i < @text;
          push @res, $newt;
      }
  
      @res;
  }
  
  sub _ta_substr {
      my $is_mb = shift;
      my $str   = shift;
      my $pos   = shift;
      my $len   = shift;
  
      my $res1 = _ta_trunc($is_mb, $str, $pos, 1);
      my $res2 = _ta_trunc($is_mb, $res1->[3], $len, 1);
  
      if (@_) {
          return _ta_prune_codes($res1->[0] . $_[0] . $res2->[3]);
      } else {
          return _ta_prune_codes($res2->[0]);
      }
  }
  
  sub ta_substr {
      _ta_substr(0, @_);
  }
  
  sub ta_mbsubstr {
      _ta_substr(1, @_);
  }
  
  
  1;
  
  __END__
  
TEXT_ANSI_BASEUTIL

$fatpacked{"Text/ANSI/NonWideUtil.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TEXT_ANSI_NONWIDEUTIL';
  package Text::ANSI::NonWideUtil;
  
  our $DATE = '2015-08-20'; 
  our $VERSION = '0.21'; 
  
  use 5.010001;
  use strict 'subs', 'vars';
  use warnings;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(
                         ta_add_color_resets
                         ta_detect
                         ta_extract_codes
                         ta_highlight
                         ta_highlight_all
                         ta_length
                         ta_length_height
                         ta_pad
                         ta_split_codes
                         ta_split_codes_single
                         ta_strip
                         ta_substr
                         ta_trunc
                         ta_wrap
                 );
  
  use Text::ANSI::BaseUtil ();
  
  our $re = $Text::ANSI::BaseUtil::re;
  *{$_} = \&{"Text::ANSI::BaseUtil::$_"} for @EXPORT_OK;
  
  1;
  
  __END__
  
TEXT_ANSI_NONWIDEUTIL

$fatpacked{"Text/ANSI/Util.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TEXT_ANSI_UTIL';
  package Text::ANSI::Util;
  
  our $DATE = '2015-08-20'; 
  our $VERSION = '0.21'; 
  
  use 5.010001;
  use strict 'subs', 'vars';
  use warnings;
  
  BEGIN {
      eval {
          require Text::WideChar::Util;
          Text::WideChar::Util->import(qw(mbswidth mbtrunc));
      };
      warn if $@;
  }
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT_OK = qw(
                         ta_add_color_resets
                         ta_detect
                         ta_extract_codes
                         ta_highlight
                         ta_highlight_all
                         ta_length
                         ta_length_height
                         ta_mbpad
                         ta_mbsubstr
                         ta_mbswidth
                         ta_mbswidth_height
                         ta_mbtrunc
                         ta_mbwrap
                         ta_pad
                         ta_split_codes
                         ta_split_codes_single
                         ta_strip
                         ta_substr
                         ta_trunc
                         ta_wrap
                 );
  
  use Text::ANSI::BaseUtil ();
  
  our $re = $Text::ANSI::BaseUtil::re;
  *{$_} = \&{"Text::ANSI::BaseUtil::$_"} for @EXPORT_OK;
  
  1;
  
  __END__
  
TEXT_ANSI_UTIL

$fatpacked{"Text/Table/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TEXT_TABLE_TINY';
  use 5.006;
  use strict;
  use warnings;
  package Text::Table::Tiny;
  $Text::Table::Tiny::VERSION = '0.04';
  use parent 'Exporter';
  use List::Util qw();
  
  our @EXPORT_OK = qw/ generate_table /;
  
  
  
  our $COLUMN_SEPARATOR = '|';
  our $ROW_SEPARATOR = '-';
  our $CORNER_MARKER = '+';
  our $HEADER_ROW_SEPARATOR = '=';
  our $HEADER_CORNER_MARKER = 'O';
  
  sub generate_table {
  
      my %params = @_;
      my $rows = $params{rows} or die "Must provide rows!";
  
      my $widths = _maxwidths($rows);
      my $max_index = _max_array_index($rows);
  
      my $format = _get_format($widths);
      my $row_sep = _get_row_separator($widths);
      my $head_row_sep = _get_header_row_separator($widths);
  
      my @table;
      push @table, $row_sep;
  
      my $data_begins = 0;
      if ( $params{header_row} ) {
          my $header_row = $rows->[0];
          $data_begins++;
          push @table, sprintf(
                           $format, 
                           map { defined($header_row->[$_]) ? $header_row->[$_] : '' } (0..$max_index)
                       );
          push @table, $params{separate_rows} ? $head_row_sep : $row_sep;
      }
  
      foreach my $row ( @{ $rows }[$data_begins..$#$rows] ) {
          push @table, sprintf(
  	    $format, 
  	    map { defined($row->[$_]) ? $row->[$_] : '' } (0..$max_index)
  	);
          push @table, $row_sep if $params{separate_rows};
      }
  
      push @table, $row_sep unless $params{separate_rows};
      return join("\n",grep {$_} @table);
  }
  
  sub _get_cols_and_rows ($) {
      my $rows = shift;
      return ( List::Util::max( map { scalar @$_ } @$rows), scalar @$rows);
  }
  
  sub _maxwidths {
      my $rows = shift;
      my $max_index = _max_array_index($rows);
      my $widths = [];
      for my $i (0..$max_index) {
          my $max = List::Util::max(map {defined $$_[$i] ? length($$_[$i]) : 0} @$rows);
          push @$widths, $max;
      }
      return $widths;
  }
  
  sub _max_array_index {
      my $rows = shift;
      return List::Util::max( map { $#$_ } @$rows );
  }
  
  sub _get_format {
      my $widths = shift;
      return "$COLUMN_SEPARATOR ".join(" $COLUMN_SEPARATOR ",map { "%-${_}s" } @$widths)." $COLUMN_SEPARATOR";
  }
  
  sub _get_row_separator {
      my $widths = shift;
      return "$CORNER_MARKER$ROW_SEPARATOR".join("$ROW_SEPARATOR$CORNER_MARKER$ROW_SEPARATOR",map { $ROW_SEPARATOR x $_ } @$widths)."$ROW_SEPARATOR$CORNER_MARKER";
  }
  
  sub _get_header_row_separator {
      my $widths = shift;
      return "$HEADER_CORNER_MARKER$HEADER_ROW_SEPARATOR".join("$HEADER_ROW_SEPARATOR$HEADER_CORNER_MARKER$HEADER_ROW_SEPARATOR",map { $HEADER_ROW_SEPARATOR x $_ } @$widths)."$HEADER_ROW_SEPARATOR$HEADER_CORNER_MARKER";
  }
  
  *table = \&generate_table;
  
  1;
  
  __END__
  
  
TEXT_TABLE_TINY

$fatpacked{"Text/sprintfn.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TEXT_SPRINTFN';
  package Text::sprintfn;
  
  use 5.010001;
  use strict;
  use warnings;
  
  require Exporter;
  our @ISA       = qw(Exporter);
  our @EXPORT    = qw(sprintfn printfn);
  
  our $VERSION = '0.08'; 
  
  our $distance  = 10;
  
  my  $re1   = qr/[^)]+/s;
  my  $re2   = qr{(?<fmt>
                      %
                         (?<pi> \d+\$ | \((?<npi>$re1)\)\$?)?
                         (?<flags> [ +0#-]+)?
                         (?<vflag> \*?[v])?
                         (?<width> -?\d+ |
                             \*\d+\$? |
                             \((?<nwidth>$re1)\))?
                         (?<dot>\.?)
                         (?<prec>
                             (?: \d+ | \* |
                             \((?<nprec>$re1)\) ) ) ?
                         (?<conv> [%csduoxefgXEGbBpniDUOF])
                     )}x;
  our $regex = qr{($re2|%|[^%]+)}s;
  
  if (1) {
      $regex = qr{( #all=1
                      ( #fmt=2
                          %
                          (#pi=3
                              \d+\$ | \(
                              (#npi=4
                                  [^)]+)\)\$?)?
                          (#flags=5
                              [ +0#-]+)?
                          (#vflag=6
                              \*?[v])?
                          (#width=7
                              -?\d+ |
                              \*\d+\$? |
                              \((#nwidth=8
                                  [^)]+)\))?
                          (#dot=9
                              \.?)
                          (#prec=10
                              (?: \d+ | \* |
                                  \((#nprec=11
                                      [^)]+)\) ) ) ?
                          (#conv=12
                              [%csduoxefgXEGbBpniDUOF])
                      ) | % | [^%]+
                  )}xs;
  }
  
  sub sprintfn {
      my ($format, @args) = @_;
  
      my $hash;
      if (ref($args[0]) eq 'HASH') {
          $hash = shift(@args);
      }
      return sprintf($format, @args) if !$hash;
  
      my %indexes; 
      push @args, (undef) x $distance;
  
      $format =~ s{$regex}{
          my ($all, $fmt, $pi, $npi, $flags,
              $vflag, $width, $nwidth, $dot, $prec,
              $nprec, $conv) =
              ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12);
  
          my $res;
          if ($fmt) {
  
              if (defined $npi) {
                  my $i = $indexes{$npi};
                  if (!$i) {
                      $i = @args + 1;
                      push @args, $hash->{$npi};
                      $indexes{$npi} = $i;
                  }
                  $pi = "${i}\$";
              }
  
              if (defined $nwidth) {
                  $width = $hash->{$nwidth};
              }
  
              if (defined $nprec) {
                  $prec = $hash->{$nprec};
              }
  
              $res = join("",
                  grep {defined} (
                      "%",
                      $pi, $flags, $vflag,
                      $width, $dot, $prec, $conv)
                  );
          } else {
              my $i = @args + 1;
              push @args, $all;
              $res = "\%${i}\$s";
          }
          $res;
      }xego;
  
  
      sprintf $format, @args;
  }
  
  sub printfn {
      print sprintfn @_;
  }
  
  1;
  
  __END__
  
TEXT_SPRINTFN

$fatpacked{"Tie/IxHash.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TIE_IXHASH';
  
  require 5.005;
  
  package Tie::IxHash;
  use strict;
  use integer;
  require Tie::Hash;
  use vars qw/@ISA $VERSION/;
  @ISA = qw(Tie::Hash);
  
  $VERSION = $VERSION = '1.23';
  
  
  sub TIEHASH {
    my($c) = shift;
    my($s) = [];
    $s->[0] = {};   
    $s->[1] = [];   
    $s->[2] = [];   
    $s->[3] = 0;    
  
    bless $s, $c;
  
    $s->Push(@_) if @_;
  
    return $s;
  }
  
  
  sub FETCH {
    my($s, $k) = (shift, shift);
    return exists( $s->[0]{$k} ) ? $s->[2][ $s->[0]{$k} ] : undef;
  }
  
  sub STORE {
    my($s, $k, $v) = (shift, shift, shift);
    
    if (exists $s->[0]{$k}) {
      my($i) = $s->[0]{$k};
      $s->[1][$i] = $k;
      $s->[2][$i] = $v;
      $s->[0]{$k} = $i;
    }
    else {
      push(@{$s->[1]}, $k);
      push(@{$s->[2]}, $v);
      $s->[0]{$k} = $#{$s->[1]};
    }
  }
  
  sub DELETE {
    my($s, $k) = (shift, shift);
  
    if (exists $s->[0]{$k}) {
      my($i) = $s->[0]{$k};
      for ($i+1..$#{$s->[1]}) {    
        $s->[0]{ $s->[1][$_] }--;    
      }
      if ( $i == $s->[3]-1 ) {
        $s->[3]--;
      }
      delete $s->[0]{$k};
      splice @{$s->[1]}, $i, 1;
      return (splice(@{$s->[2]}, $i, 1))[0];
    }
    return undef;
  }
  
  sub EXISTS {
    exists $_[0]->[0]{ $_[1] };
  }
  
  sub FIRSTKEY {
    $_[0][3] = 0;
    &NEXTKEY;
  }
  
  sub NEXTKEY {
    return $_[0][1][ $_[0][3]++ ] if ($_[0][3] <= $#{ $_[0][1] } );
    return undef;
  }
  
  
  
  
  sub new { TIEHASH(@_) }
  
  sub Clear {
    my $s = shift;
    $s->[0] = {};   
    $s->[1] = [];   
    $s->[2] = [];   
    $s->[3] = 0;    
    return;
  }
  
  sub Push {
    my($s) = shift;
    while (@_) {
      $s->STORE(shift, shift);
    }
    return scalar(@{$s->[1]});
  }
  
  sub Push2 {
    my($s) = shift;
    $s->Splice($#{$s->[1]}+1, 0, @_);
    return scalar(@{$s->[1]});
  }
  
  sub Pop {
    my($s) = shift;
    my($k, $v, $i);
    $k = pop(@{$s->[1]});
    $v = pop(@{$s->[2]});
    if (defined $k) {
      delete $s->[0]{$k};
      return ($k, $v);
    }
    return undef;
  }
  
  sub Pop2 {
    return $_[0]->Splice(-1);
  }
  
  sub Shift {
    my($s) = shift;
    my($k, $v, $i);
    $k = shift(@{$s->[1]});
    $v = shift(@{$s->[2]});
    if (defined $k) {
      delete $s->[0]{$k};
      for (keys %{$s->[0]}) {
        $s->[0]{$_}--;
      }
      return ($k, $v);
    }
    return undef;
  }
  
  sub Shift2 {
    return $_[0]->Splice(0, 1);
  }
  
  sub Unshift {
    my($s) = shift;
    my($k, $v, @k, @v, $len, $i);
  
    while (@_) {
      ($k, $v) = (shift, shift);
      if (exists $s->[0]{$k}) {
        $i = $s->[0]{$k};
        $s->[1][$i] = $k;
        $s->[2][$i] = $v;
        $s->[0]{$k} = $i;
      }
      else {
        push(@k, $k);
        push(@v, $v);
        $len++;
      }
    }
    if (defined $len) {
      for (keys %{$s->[0]}) {
        $s->[0]{$_} += $len;
      }
      $i = 0;
      for (@k) {
        $s->[0]{$_} = $i++;
      }
      unshift(@{$s->[1]}, @k);
      return unshift(@{$s->[2]}, @v);
    }
    return scalar(@{$s->[1]});
  }
  
  sub Unshift2 {
    my($s) = shift;
    $s->Splice(0,0,@_);
    return scalar(@{$s->[1]});
  }
  
  sub Splice {
    my($s, $start, $len) = (shift, shift, shift);
    my($k, $v, @k, @v, @r, $i, $siz);
    my($end);                   
  
    ($start, $end, $len) = $s->_lrange($start, $len);
  
    if (defined $start) {
      if ($len > 0) {
        my(@k) = splice(@{$s->[1]}, $start, $len);
        my(@v) = splice(@{$s->[2]}, $start, $len);
        while (@k) {
          $k = shift(@k);
          delete $s->[0]{$k};
          push(@r, $k, shift(@v));
        }
        for ($start..$#{$s->[1]}) {
          $s->[0]{$s->[1][$_]} -= $len;
        }
      }
      while (@_) {
        ($k, $v) = (shift, shift);
        if (exists $s->[0]{$k}) {
          $i = $s->[0]{$k};
          $s->[1][$i] = $k;
          $s->[2][$i] = $v;
          $s->[0]{$k} = $i;
        }
        else {
          push(@k, $k);
          push(@v, $v);
          $siz++;
        }
      }
      if (defined $siz) {
        for ($start..$#{$s->[1]}) {
          $s->[0]{$s->[1][$_]} += $siz;
        }
        $i = $start;
        for (@k) {
          $s->[0]{$_} = $i++;
        }
        splice(@{$s->[1]}, $start, 0, @k);
        splice(@{$s->[2]}, $start, 0, @v);
      }
    }
    return @r;
  }
  
  sub Delete {
    my($s) = shift;
  
    for (@_) {
      $s->DELETE($_);
    }
  }
  
  sub Replace {
    my($s) = shift;
    my($i, $v, $k) = (shift, shift, shift);
    if (defined $i and $i <= $#{$s->[1]} and $i >= 0) {
      if (defined $k) {
        delete $s->[0]{ $s->[1][$i] };
        $s->DELETE($k) ; 
        $s->[1][$i] = $k;
        $s->[2][$i] = $v;
        $s->[0]{$k} = $i;
        return $k;
      }
      else {
        $s->[2][$i] = $v;
        return $s->[1][$i];
      }
    }
    return undef;
  }
  
  sub _lrange {
    my($s) = shift;
    my($offset, $len) = @_;
    my($start, $end);         
    my($size) = $#{$s->[1]}+1;
  
    return undef unless defined $offset;
    if($offset < 0) {
      $start = $offset + $size;
      $start = 0 if $start < 0;
    }
    else {
      ($offset > $size) ? ($start = $size) : ($start = $offset);
    }
  
    if (defined $len) {
      $len = -$len if $len < 0;
      $len = $size - $start if $len > $size - $start;
    }
    else {
      $len = $size - $start;
    }
    $end = $start + $len - 1;
  
    return ($start, $end, $len);
  }
  
  sub Keys   { 
    my($s) = shift;
    return ( @_ == 1
  	 ? $s->[1][$_[0]]
  	 : ( @_
  	   ? @{$s->[1]}[@_]
  	   : @{$s->[1]} ) );
  }
  
  sub Values {
    my($s) = shift;
    return ( @_ == 1
  	 ? $s->[2][$_[0]]
  	 : ( @_
  	   ? @{$s->[2]}[@_]
  	   : @{$s->[2]} ) );
  }
  
  sub Indices { 
    my($s) = shift;
    return ( @_ == 1 ? $s->[0]{$_[0]} : @{$s->[0]}{@_} );
  }
  
  sub Length {
   return scalar @{$_[0]->[1]};
  }
  
  sub Reorder {
    my($s) = shift;
    my(@k, @v, %x, $i);
    return unless @_;
  
    $i = 0;
    for (@_) {
      if (exists $s->[0]{$_}) {
        push(@k, $_);
        push(@v, $s->[2][ $s->[0]{$_} ] );
        $x{$_} = $i++;
      }
    }
    $s->[1] = \@k;
    $s->[2] = \@v;
    $s->[0] = \%x;
    return $s;
  }
  
  sub SortByKey {
    my($s) = shift;
    $s->Reorder(sort $s->Keys);
  }
  
  sub SortByValue {
    my($s) = shift;
    $s->Reorder(sort { $s->FETCH($a) cmp $s->FETCH($b) } $s->Keys)
  }
  
  1;
  __END__
  
TIE_IXHASH

$fatpacked{"Time/Duration.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TIME_DURATION';
  package Time::Duration;
  $Time::Duration::VERSION = '1.20';
  use 5.006;
  use strict;
  use warnings;
  use constant DEBUG => 0;
  
  require Exporter;
  
  our @ISA         = ('Exporter');
  our @EXPORT      = qw( later later_exact earlier earlier_exact
                         ago ago_exact from_now from_now_exact
                         duration duration_exact
                         concise
                       );
  our @EXPORT_OK   = ('interval', @EXPORT);
  our $MILLISECOND = 0;
  
  
  
  sub concise ($) {
    my $string = $_[0];
    DEBUG and print "in : $string\n";
    $string =~ tr/,//d;
    $string =~ s/\band\b//;
    $string =~ s/\b(year|day|hour|minute|second)s?\b/substr($1,0,1)/eg;
    $string =~ s/\b(millisecond)s?\b/ms/g;
    $string =~ s/\s*(\d+)\s*/$1/g;
    return $string;
  }
  
  sub later {
    interval(      $_[0], $_[1], ' earlier', ' later', 'right then'); }
  sub later_exact {
    interval_exact($_[0], $_[1], ' earlier', ' later', 'right then'); }
  sub earlier {
    interval(      $_[0], $_[1], ' later', ' earlier', 'right then'); }
  sub earlier_exact {
    interval_exact($_[0], $_[1], ' later', ' earlier', 'right then'); }
  sub ago {
    interval(      $_[0], $_[1], ' from now', ' ago', 'right now'); }
  sub ago_exact {
    interval_exact($_[0], $_[1], ' from now', ' ago', 'right now'); }
  sub from_now {
    interval(      $_[0], $_[1], ' ago', ' from now', 'right now'); }
  sub from_now_exact {
    interval_exact($_[0], $_[1], ' ago', ' from now', 'right now'); }
  
  sub duration_exact {
    my $span = $_[0];   
    my $precision = int($_[1] || 0) || 2;  
    return '0 seconds' unless $span;
    _render('',
            _separate(abs $span));
  }
  
  sub duration {
    my $span = $_[0];   
    my $precision = int($_[1] || 0) || 2;  
    return '0 seconds' unless $span;
    _render('',
            _approximate($precision,
                         _separate(abs $span)));
  }
  
  
  sub interval_exact {
    my $span = $_[0];                    
    my $direction = ($span < 0) ? $_[2]  
                  : ($span > 0) ? $_[3]  
                  : return        $_[4]; 
    _render($direction,
            _separate($span));
  }
  
  sub interval {
    my $span = $_[0];                     
    my $precision = int($_[1] || 0) || 2; 
    my $direction = ($span < 0) ? $_[2]   
                  : ($span > 0) ? $_[3]   
                  : return        $_[4];  
    _render($direction,
            _approximate($precision,
                         _separate($span)));
  }
  
  
  use constant MINUTE => 60;
  use constant HOUR => 3600;
  use constant DAY  => 24 * HOUR;
  use constant YEAR => 365 * DAY;
  
  sub _separate {
    
    my $remainder = abs $_[0]; 
    my $this; 
    my @wheel; 
    
    $this = int($remainder / (365 * 24 * 60 * 60));
    push @wheel, ['year', $this, 1_000_000_000];
    $remainder -= $this * (365 * 24 * 60 * 60);
      
    $this = int($remainder / (24 * 60 * 60));
    push @wheel, ['day', $this, 365];
    $remainder -= $this * (24 * 60 * 60);
      
    $this = int($remainder / (60 * 60));
    push @wheel, ['hour', $this, 24];
    $remainder -= $this * (60 * 60);
    
    $this = int($remainder / 60);
    push @wheel, ['minute', $this, 60];
    $remainder -= $this * 60;
    
    push @wheel, ['second', int($remainder), 60];
  
  	if ($MILLISECOND) {
  		$remainder -= int($remainder);
  		push @wheel, ['millisecond', sprintf("%0.f", $remainder * 1000), 1000];
  	}
  
    return @wheel;
  }
  
  sub _approximate {
    my($precision, @wheel) = @_;
  
   Fix:
    {
    
      my $nonzero_count = 0;
      my $improperly_expressed;
  
      DEBUG and print join ' ', '#', (map "${$_}[1] ${$_}[0]",  @wheel), "\n";
      for(my $i = 0; $i < @wheel; $i++) {
        my $this = $wheel[$i];
        next if $this->[1] == 0; 
        ++$nonzero_count;
        next if $i == 0; 
        
        if($nonzero_count > $precision) {
          DEBUG and print '', $this->[0], " is one nonzero too many!\n";
  
          if($this->[1] >= ($this->[-1] / 2)) {
            DEBUG and printf "incrementing %s from %s to %s\n",
             $wheel[$i-1][0], $wheel[$i-1][1], 1 + $wheel[$i-1][1], ;
            ++$wheel[$i-1][1];
          }
  
          for(my $j = $i; $j < @wheel; $j++) { $wheel[$j][1] = 0 }
          redo Fix; 
        } elsif($this->[1] >= $this->[-1]) {
          $improperly_expressed = $i;
          DEBUG and print '', $this->[0], ' (', $this->[1], 
             ") is improper!\n";
        }
      }
      
      if(defined $improperly_expressed) {
        DEBUG and printf "incrementing %s from %s to %s\n",
         $wheel[$improperly_expressed-1][0], $wheel[$improperly_expressed-1][1], 
          1 + $wheel[$improperly_expressed-1][1], ;
        ++$wheel[ $improperly_expressed - 1][1];
        $wheel[ $improperly_expressed][1] = 0;
        redo Fix; 
      }
      
    }
  
    return @wheel;
  }
  
  sub _render {
  
    my $direction = shift @_;
    my @wheel = map
          {;
              (  $_->[1] == 0) ? ()  
              : ($_->[1] == 1) ? "${$_}[1] ${$_}[0]"  
              :                  "${$_}[1] ${$_}[0]s" 
          }
          @_
    ;
    return "just now" unless @wheel; 
    $wheel[-1] .= $direction;
    return $wheel[0] if @wheel == 1;
    return "$wheel[0] and $wheel[1]" if @wheel == 2;
    $wheel[-1] = "and $wheel[-1]";
    return join q{, }, @wheel;
  }
  
  1;
  
  __END__
  
  so "1y 0d 1h 50m 50s", N=3, so you round at minutes to "1y 0d 1h 51m 0s",
  #That's okay, so fall thru.
  
  so "1y 1d 0h 59m 50s", N=3, so you round at minutes to "1y 1d 0h 60m 0s",
  but that's not improperly expressed, so you loop around and get
  "1y 1d 1h 0m 0s", which is short enough, and is properly expressed.
  
  
  
TIME_DURATION

$fatpacked{"Time/Duration/Parse/AsHash.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'TIME_DURATION_PARSE_ASHASH';
  package Time::Duration::Parse::AsHash;
  
  our $DATE = '2015-09-26'; 
  our $VERSION = '0.10.2'; 
  
  use strict;
  use warnings;
  
  use Exporter;
  our @ISA    = qw( Exporter );
  our @EXPORT = qw( parse_duration );
  
  my %Units = ( map(($_, "seconds"), qw(s second seconds sec secs)),
                map(($_, "minutes"), qw(m minute minutes min mins)),
                map(($_,   "hours"), qw(h hr hour hours)),
                map(($_,    "days"), qw(d day days)),
                map(($_,   "weeks"), qw(w week weeks)),
                map(($_,  "months"), qw(M month months mon mons mo mos)),
                map(($_,   "years"), qw(y year years)) );
  
  sub parse_duration {
      my $timespec = shift;
  
      $timespec =~ s/^\s*\+\s*//;
  
      if ($timespec =~ /^\s*(-?\d+(?:[.,]\d+)?)\s*$/) {
          $timespec = "$1s";
      }
  
      $timespec =~ s/\b(\d+):(\d\d):(\d\d)\b/$1h $2m $3s/g;
      $timespec =~ s/\b(\d+):(\d\d)\b/$1h $2m/g;
  
      my %res;
      while ($timespec =~ s/^\s*(-?\d+(?:[.,]\d+)?)\s*([a-zA-Z]+)(?:\s*(?:,|and)\s*)*//i) {
          my($amount, $unit) = ($1, $2);
          $unit = lc($unit) unless length($unit) == 1;
  
          if (my $canon_unit = $Units{$unit}) {
              $amount =~ s/,/./;
              $res{$canon_unit} += $amount;
          } else {
              die "Unknown timespec: $1 $2";
          }
      }
  
      if ($timespec =~ /\S/) {
          die "Unknown timespec: $timespec";
      }
  
      for (keys %res) {
          delete $res{$_} if $res{$_} == 0;
      }
  
      \%res;
  }
  
  1;
  
  __END__
  
TIME_DURATION_PARSE_ASHASH

$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{"Version/Util.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'VERSION_UTIL';
  package Version::Util;
  
  use 5.010001;
  use strict;
  use version 0.77;
  use warnings;
  
  require Exporter;
  our @ISA = qw(Exporter);
  our @EXPORT_OK = qw(
                         cmp_version
                         version_eq version_ne
                         version_lt version_le version_gt version_ge
                         version_between version_in
                 );
  
  our $VERSION = '0.71'; 
  
  sub cmp_version {
      version->parse($_[0]) <=> version->parse($_[1]);
  }
  
  sub version_eq {
      version->parse($_[0]) == version->parse($_[1]);
  }
  
  sub version_ne {
      version->parse($_[0]) != version->parse($_[1]);
  }
  
  sub version_lt {
      version->parse($_[0]) <  version->parse($_[1]);
  }
  
  sub version_le {
      version->parse($_[0]) <= version->parse($_[1]);
  }
  
  sub version_gt {
      version->parse($_[0]) >  version->parse($_[1]);
  }
  
  sub version_ge {
      version->parse($_[0]) >= version->parse($_[1]);
  }
  
  sub version_between {
      my $v = version->parse(shift);
      while (@_) {
          my $v1 = shift;
          my $v2 = shift;
          return 1 if $v >= version->parse($v1) && $v <= version->parse($v2);
      }
      0;
  }
  
  sub version_in {
      my $v = version->parse(shift);
      for (@_) {
          return 1 if $v == version->parse($_);
      }
      0;
  }
  
  1;
  
  __END__
  
VERSION_UTIL

$fatpacked{"WWW/PAUSE/Simple.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'WWW_PAUSE_SIMPLE';
  package WWW::PAUSE::Simple;
  
  our $DATE = '2016-01-17'; 
  our $VERSION = '0.29'; 
  
  use 5.010001;
  use strict;
  use warnings;
  use Log::Any::IfLOG '$log';
  use Exporter qw(import);
  our @EXPORT_OK = qw(
                         upload_file
                         list_files
                         delete_files
                         undelete_files
                         reindex_files
                         list_dists
                         delete_old_releases
                         set_password
                         set_account_info
                 );
  
  use Perinci::Object;
  
  our %SPEC;
  
  our $re_archive_ext = qr/(?:tar|tar\.(?:Z|gz|bz2|xz)|zip|rar)/;
  
  our %common_args = (
      username => {
          summary => 'PAUSE ID',
          schema  => ['str*', match=>'\A\w{2,9}\z', max_len=>9],
          req     => 1,
          tags    => ['common'],
      },
      password => {
          summary => 'PAUSE password',
          schema  => 'str*',
          is_password => 1,
          req     => 1,
          tags    => ['common'],
      },
  );
  
  our %detail_arg = (
      detail => {
          summary => 'Whether to return detailed records',
          schema  => 'bool',
      },
  );
  
  our %detail_l_arg = (
      detail => {
          summary => 'Whether to return detailed records',
          schema  => 'bool',
          cmdline_aliases => {l=>{}},
      },
  );
  
  our %files_arg = (
      files => {
          summary => 'File names/wildcard patterns',
          'summary.alt.plurality.singular' => 'File name/wildcard pattern',
          schema  => ['array*', of=>'str*', min_len=>1],
          'x.name.is_plural' => 1,
          req => 1,
          pos => 0,
          greedy => 1,
      },
  );
  
  our %file_opt_arg = (
      files => {
          summary => 'File names/wildcard patterns',
          'summary.alt.plurality.singular' => 'File name/wildcard pattern',
          schema  => ['array*', of=>'str*'],
          'x.name.is_plural' => 1,
          pos => 0,
          greedy => 1,
          tags => ['category:filtering'],
      },
  );
  
  our %mod_opt_arg = (
      modules => {
          summary => 'Module names/wildcard patterns',
          'summary.alt.plurality.singular' => 'Module name/wildcard pattern',
          schema  => ['array*', of=>'str*'],
          'x.name.is_plural' => 1,
          pos => 0,
          greedy => 1,
          tags => ['category:filtering'],
      },
  );
  
  our %protect_files_arg = (
      protect_files => {
          summary => 'Protect some files/wildcard patterns from delete/cleanup',
          schema  => ['array*', of=>'str*'],
          'x.name.is_plural' => 1,
          tags => ['category:filtering'],
      },
  );
  
  $SPEC{':package'} = {
      v => 1.1,
      summary => 'An API for PAUSE',
  };
  
  sub _parse_release_filename {
      my $filename = shift;
      return undef unless
          $filename =~ /\A
                        (\w+(?:-\w+)*)
                        -v?(\d+(?:\.\d+){0,2}(_\d+|-TRIAL)?)
                        \.$re_archive_ext
                        \z/ix;
      return ($1, $2, $3); 
  }
  
  sub _common_args {
      my $args = shift;
      (username=>$args->{username}, password=>$args->{password});
  }
  
  sub _request {
      require HTTP::Request::Common;
  
      my %args = @_;
  
      state $ua = do {
          require LWP::UserAgent;
          LWP::UserAgent->new;
      };
      my $req = HTTP::Request::Common::POST(
          "https://pause.perl.org/pause/authenquery",
          @{ $args{post_data} });
      $req->authorization_basic($args{username}, $args{password});
  
      $ua->request($req);
  }
  
  sub _htres2envres {
      my $res = shift;
      [$res->code, $res->message, $res->content];
  }
  
  $SPEC{upload_files} = {
      v => 1.1,
      summary => 'Upload file(s)',
      args_rels => {
          choose_one => [qw/delay group_delay/],
      },
      args => {
          %common_args,
          %files_arg,
          subdir => {
              summary => 'Subdirectory to put the file(s) into',
              schema  => 'str*',
              default => '',
          },
          delay => {
              summary => 'Pause a number of seconds between files',
              schema => ['duration*'],
              'x.perl.coerce_to' => 'int(secs)',
              description => <<'_',
  
  If you upload a lot of files (e.g. 7-10 or more) at a time, the PAUSE indexer
  currently might choke with SQLite database locking problem and thus fail to
  index your releases. Giving a delay of say 2-3 minutes (120-180 seconds) between
  files will alleviate this problem.
  
  _
          },
          group_delay => {
              summary => 'Pause a number of seconds between groups of files',
              schema => 'duration*',
              'x.perl.coerce_to' => 'int(secs)',
              description => <<'_',
  
  As an alternative to the `delay` option, you can also use this option. This will
  group the files to be uploaded by versions and prevent files of the same dist
  and different versions to be uploaded too close to one another, as this might
  cause indexing problem too. For example, suppose you're uploading Foo-1.zip
  Foo-2.zip Foo-3.zip Bar-1.zip Baz-1.zip Baz-2.zip. The files will be uploaded in
  this order:
  
      upload: Foo-1.zip Bar-1.zip Baz-1.zip
      group delay
      upload: Foo-2.zip Baz-2.zip
      group delay
      upload: Foo-3.zip
  
  As with the `delay` option, it is recommended that if you upload several files
  at once, you set this option to 2-3 minutes (120-180 seconds).
  
  _
          },
      },
      features => {dry_run=>1},
  };
  sub upload_files {
      require File::Basename;
  
      my %args = @_;
      my $files0 = $args{files}
          or return [400, "Please specify at least one file"];
      my $subdir = $args{subdir} // '';
  
      my @files;
      if ($args{group_delay}) {
          my %files_by_dist; 
          my $max_num_vers = 0;
          for my $file (sort @$files0) {
              my ($dist, $ver, $is_dev) = _parse_release_filename($file);
              if (!$dist) {
                  ($dist, $ver) = ("", 0);
              }
              $files_by_dist{$dist} //= [];
              push @{ $files_by_dist{$dist} }, $file;
              $max_num_vers = @{ $files_by_dist{$dist} }
                  if $max_num_vers < @{ $files_by_dist{$dist} };
          }
          for my $i (1..$max_num_vers) {
              for my $dist (keys %files_by_dist) {
                  next unless @{ $files_by_dist{$dist} } >= $i;
                  push @files, {
                      group => $i,
                      file => $files_by_dist{$dist}[$i-1],
                  };
              }
          }
      } else {
          @files = map { +{group=>1, file=>$_} } @$files0;
      }
  
      my $envres = envresmulti();
  
      my $i = 0;
      my $prev_group = 0;
      for my $ent (@files) {
          my $file = $ent->{file};
          my $res;
          {
              unless (-f $file) {
                  $res = [404, "No such file"];
                  last;
              }
  
              if ($args{-dry_run}) {
                  $log->tracef("[dry-run] Uploading %s ...", $file);
                  goto DELAY;
              }
  
              $log->tracef("Uploading %s ...", $file);
              my $httpres = _request(
                  %args,
                  post_data => [
                      Content_Type => 'form-data',
                      Content => {
                          HIDDENNAME                        => $args{username},
                          CAN_MULTIPART                     => 0,
                          pause99_add_uri_upload            => File::Basename::basename($file),
                          SUBMIT_pause99_add_uri_httpupload => " Upload this file from my disk ",
                          pause99_add_uri_uri               => "",
                          pause99_add_uri_httpupload        => [$file],
                          (length($subdir) ? (pause99_add_uri_subdirtext => $subdir) : ()),
                      },
                  ]
              );
              if (!$httpres->is_success) {
                  $res = _htres2envres($httpres);
                  last;
              }
              if ($httpres->content !~ m!<h3>Submitting query</h3>\s*<p>(.+?)</p>!s) {
                  $res = [543, "Can't scrape upload status from response", $httpres->content];
                  last;
              }
              my $str = $1;
              if ($str =~ /Query succeeded/) {
                  $res = [200, "OK", undef, {"func.raw_status" => $str}];
              } else {
                  $res = [500, "Failed: $str"];
              }
          }
          $res->[3] //= {};
          $res->[3]{item_id} = $file;
          $log->tracef("Result of upload: %s", $res);
          $envres->add_result($res->[0], $res->[1], $res->[3]);
  
        DELAY:
          {
              last if ++$i >= @files;
              if ($args{delay}) {
                  $log->tracef("Sleeping between files for %d second(s) ...", $args{delay});
                  sleep $args{delay};
                  last;
              }
              if ($args{group_delay} &&
                      $ent->{group} > 1 && $prev_group != $ent->{group}) {
                  $log->tracef("Sleeping between group for %d second(s) ...", $args{group_delay});
                  sleep $args{group_delay};
                  $prev_group = $ent->{group};
              }
          }
      }
      $envres->as_struct;
  }
  
  {
      no strict 'refs';
      *upload_file = \&upload_files;
      $SPEC{upload_file} = { %{ $SPEC{upload_files} } }; 
      $SPEC{upload_file}{'x.no_index'} = 1;
  }
  
  $SPEC{list_files} = {
      v => 1.1,
      summary => 'List files',
      args => {
          %common_args,
          %detail_l_arg,
          %file_opt_arg,
          del => {
              summary => 'Only list files which are scheduled for deletion',
              'summary.alt.bool.not' => 'Only list files which are not scheduled for deletion',
              schema => 'bool',
              tags => ['category:filtering'],
          },
      },
  };
  sub list_files {
      require Date::Parse;
      require Regexp::Wildcards;
      require String::Wildcard::Bash;
  
      my %args  = @_;
      my $q   = $args{files} // [];
      my $del = $args{del};
  
      my $httpres = _request(
          %args,
          post_data => [{ACTION=>'show_files'}],
      );
  
      $q = [@$q];
      for (@$q) {
          next unless String::Wildcard::Bash::contains_wildcard($_);
          my $re = Regexp::Wildcards->new(type=>'unix')->convert($_);
          $re = qr/\A($re)\z/;
          $_ = $re;
      }
  
      return _htres2envres($httpres) unless $httpres->is_success;
      return [543, "Can't scrape list of files from response",
              $httpres->content]
          unless $httpres->content =~ m!<h3>Files in directory.+</h3><pre>(.+)</pre>!s;
      my $str = $1;
      my @files;
    REC:
      while ($str =~ m!(?:\A |<br/> )(.+?)\s+(\d+)\s+(Scheduled for deletion \(due at )?(\w+, \d\d \w+ \d{4} \d\d:\d\d:\d\d GMT)!g) {
  
          my $time = Date::Parse::str2time($4, "UTC");
  
          my $rec = {
              name  => $1,
              size  => $2,
              is_scheduled_for_deletion => $3 ? 1:0,
          };
          if ($3) {
              $rec->{deletion_time} = $time;
          } else {
              $rec->{mtime} = $time;
          }
  
        FILTER_QUERY:
          {
              last unless @$q;
              for (@$q) {
                  if (ref($_) eq 'Regexp') {
                      last FILTER_QUERY if $rec->{name} =~ $_;
                  } else {
                      last FILTER_QUERY if $rec->{name} eq $_;
                  }
              }
              next REC;
          }
          if (defined $del) {
              next REC if $del xor $rec->{is_scheduled_for_deletion};
          }
  
          push @files, $args{detail} ? $rec : $rec->{name};
  
      }
      my %resmeta;
      if ($args{detail}) {
          $resmeta{format_options} = {
              any => {
                  table_column_orders => [[qw/name size mtime is_scheduled_for_deletion deletion_time/]],
              },
          };
      }
      [200, "OK", \@files, \%resmeta];
  }
  
  $SPEC{list_dists} = {
      v => 1.1,
      summary => 'List distributions',
      description => <<'_',
  
  Distribution names will be extracted from tarball/zip filenames.
  
  Unknown/unparseable filenames will be skipped.
  
  _
      args => {
          %common_args,
          %detail_l_arg,
          newest => {
              schema => 'bool',
              summary => 'Only show newest non-dev version',
              description => <<'_',
  
  Dev versions will be skipped.
  
  _
          },
          newest_n => {
              schema => ['int*', min=>1],
              summary => 'Only show this number of newest non-dev versions',
              description => <<'_',
  
  Dev versions will be skipped.
  
  _
          },
      },
  };
  sub list_dists {
      require List::MoreUtils;
      require Version::Util;
      use experimental 'smartmatch';
  
      my %args  = @_;
  
      my $res = list_files(_common_args(\%args), del=>0);
      return [500, "Can't list files: $res->[0] - $res->[1]"] if $res->[0] != 200;
  
      my $newest_n;
      if ($args{newest_n}) {
          $newest_n = $args{newest_n};
      } elsif ($args{newest}) {
          $newest_n = 1;
      }
  
      my @dists;
      for my $file (@{$res->[2]}) {
          if ($file =~ m!/!) {
              $log->debugf("Skipping %s: under a subdirectory", $file);
              next;
          }
          my ($dist, $version, $is_dev) = _parse_release_filename($file);
          unless (defined $dist) {
              $log->debugf("Skipping %s: doesn't match release regex", $file);
              next;
          }
          next if $is_dev && $newest_n;
          push @dists, {
              name => $dist,
              file => $file,
              version => $version,
              is_dev_version => $is_dev ? 1:0,
          };
      }
  
      my @old_files;
      if ($newest_n) {
          my %dist_versions;
          for my $dist (@dists) {
              push @{ $dist_versions{$dist->{name}} }, $dist->{version};
          }
          for my $dist (keys %dist_versions) {
              $dist_versions{$dist} = [
                  sort { -Version::Util::cmp_version($a, $b) }
                      @{ $dist_versions{$dist} }];
              if (@{ $dist_versions{$dist} } > $newest_n) {
                  $dist_versions{$dist} = [splice(
                      @{ $dist_versions{$dist} }, 0, $newest_n)];
              }
          }
          my @old_dists = @dists;
          @dists = ();
          for my $dist (@old_dists) {
              if ($dist->{version} ~~ @{ $dist_versions{$dist->{name}} }) {
                  push @dists, $dist;
              } else {
                  push @old_files, $dist->{file};
              }
          }
      }
  
      unless ($args{detail}) {
          @dists = List::MoreUtils::uniq(map { $_->{name} } @dists);
      }
  
      my %resmeta;
      if ($newest_n) {
          $resmeta{"func.old_files"} = \@old_files;
      }
      if ($args{detail}) {
          $resmeta{format_options} = {
              any => {
                  table_column_orders => [[qw/name version is_dev_version file/]],
              },
          };
      }
      [200, "OK", \@dists, \%resmeta];
  }
  
  $SPEC{delete_old_releases} = {
      v => 1.1,
      summary => 'Delete older versions of distributions',
      description => <<'_',
  
  Developer releases will not be deleted.
  
  To delete developer releases, you can use `delete_files` (rm), e.g. from the
  command line:
  
      % pause rm 'My-Module-*TRIAL*'; # delete a dist's trial releases
      % pause rm '*TRIAL*' '*_*'; # delete all files containing TRIAL or underscore
  
  _
      args => {
          %common_args,
          %detail_l_arg,
          %protect_files_arg,
          num_keep => {
              schema => ['int*', min=>1],
              default => 1,
              summary => 'Number of new versions (including newest) to keep',
              cmdline_aliases => { n=>{} },
              description => <<'_',
  
  1 means to only keep the newest version, 2 means to keep the newest and the
  second newest, and so on.
  
  _
          },
      },
      features => {dry_run=>1},
  };
  sub delete_old_releases {
      my %args = @_;
  
      my $res = list_dists(_common_args(\%args), newest_n=>$args{num_keep}//1);
      return [500, "Can't list dists: $res->[0] - $res->[1]"] if $res->[0] != 200;
      my $old_files = $res->[3]{'func.old_files'};
  
      return [304, "No older releases", undef,
              {'cmdline.result'=>'There are no older releases to delete'}]
          unless @$old_files;
      my @to_delete;
      for my $file (@$old_files) {
          $file =~ s/\.$re_archive_ext\z//;
          push @to_delete, "$file.*";
      }
      $res = delete_files(
          _common_args(\%args),
          protect_files => $args{protect_files},
          files=>\@to_delete,
          -dry_run=>$args{-dry_run},
      );
      return $res if $res->[0] != 200 || $args{-dry_run};
      my $deleted_files = $res->[3]{'func.files'} // [];
      if (@$deleted_files) {
          $res->[3]{'cmdline.result'} = $deleted_files;
      } else {
          $res->[3]{'cmdline.result'} = 'Deleted 0 files';
      }
      $res;
  }
  
  sub _delete_or_undelete_or_reindex_files {
      use experimental 'smartmatch';
      require Regexp::Wildcards;
      require String::Wildcard::Bash;
  
      my $which = shift;
      my %args = @_;
  
      my $files0 = $args{files} // [];
      return [400, "Please specify at least one file"] unless @$files0;
  
      my $protect_files = $args{protect_files} // [];
  
      my @files;
      {
          my $listres;
          if (grep {String::Wildcard::Bash::contains_wildcard($_)}
                  (@$files0, @$protect_files)) {
              $listres = list_files(_common_args(\%args));
              return [500, "Can't list files: $listres->[0] - $listres->[1]"]
                  unless $listres->[0] == 200;
          }
  
          for my $file (@$files0) {
              if (String::Wildcard::Bash::contains_wildcard($file)) {
                  my $re = Regexp::Wildcards->new(type=>'unix')->convert($file);
                  $re = qr/\A($re)\z/;
                  for my $f (@{$listres->[2]}) {
                      push @files, $f if $f =~ $re && !($f ~~ @files);
                  }
              } else {
                  push @files, $file;
              }
          }
  
          for my $protect_file (@$protect_files) {
              if (String::Wildcard::Bash::contains_wildcard($protect_file)) {
                  my $re = Regexp::Wildcards->new(type=>'unix')->convert(
                      $protect_file);
                  $re = qr/\A($re)\z/;
                  @files = grep {
                      if ($_ =~ $re) {
                          $log->debugf("Excluding %s (protected, wildcard %s)",
                                       $_, $protect_file);
                          0;
                      } else {
                          1;
                      }
                  } @files;
              } else {
                  @files = grep {
                      if ($_ eq $protect_file) {
                          $log->debugf("Excluding %s (protected)", $_);
                          0;
                      } else {
                          1;
                      }
                  } @files;
              }
          }
      }
  
      unless (@files) {
          return [304, "No files to process"];
      }
  
      if ($args{-dry_run}) {
          $log->warnf("[dry-run] %s %s", $which, \@files);
          return [200, "OK (dry-run)"];
      } else {
          $log->infof("%s %s ...", $which, \@files);
      }
  
      my $httpres = _request(
          %args,
          post_data => [
              [
                  HIDDENNAME                => $args{username},
                  ($which eq 'delete'   ? (SUBMIT_pause99_delete_files_delete   => "Delete"  ) : ()),
                  ($which eq 'undelete' ? (SUBMIT_pause99_delete_files_undelete => "Undelete") : ()),
                  ($which eq 'reindex'  ? (SUBMIT_pause99_reindex_delete        => "Reindex" ) : ()),
                  ($which =~ /delete/   ? (pause99_delete_files_FILE => \@files) : ()),
                  ($which eq 'reindex'  ? (pause99_reindex_FILE => \@files) : ()),
              ],
          ],
      );
      return _htres2envres($httpres) unless $httpres->is_success;
      return [543, "Can't scrape $which status from response", $httpres->content]
          unless $httpres->content =~ m!<h3>Files in directory!s;
      [200,"OK", undef, {'func.files'=>\@files}];
  }
  
  $SPEC{delete_files} = {
      v => 1.1,
      summary => 'Delete files',
      description => <<'_',
  
  When a file is deleted, it is not immediately deleted but has
  scheduled_for_deletion status for 72 hours, then deleted. During that time, the
  file can be undeleted.
  
  _
      args => {
          %common_args,
          %files_arg,
          %protect_files_arg,
      },
      features => {dry_run=>1},
  };
  sub delete_files {
      my %args = @_; 
      _delete_or_undelete_or_reindex_files('delete', @_);
  }
  
  $SPEC{undelete_files} = {
      v => 1.1,
      summary => 'Undelete files',
      description => <<'_',
  
  When a file is deleted, it is not immediately deleted but has
  scheduled_for_deletion status for 72 hours, then deleted. During that time, the
  file can be undeleted.
  
  _
      args => {
          %common_args,
          %files_arg,
      },
      features => {dry_run=>1},
  };
  sub undelete_files {
      my %args = @_; 
      _delete_or_undelete_or_reindex_files('undelete', @_);
  }
  
  $SPEC{reindex_files} = {
      v => 1.1,
      summary => 'Force reindexing',
      args => {
          %common_args,
          %files_arg,
      },
      features => {dry_run=>1},
  };
  sub reindex_files {
      my %args = @_; 
      _delete_or_undelete_or_reindex_files('reindex', @_);
  }
  
  $SPEC{set_password} = {
      v => 1.1,
      args => {
          %common_args,
      },
      'x.no_index' => 1,
  };
  sub set_password {
      my %args = @_;
      [501, "Not yet implemented"];
  }
  
  $SPEC{set_account_info} = {
      v => 1.1,
      args => {
          %common_args,
      },
      'x.no_index' => 1,
  };
  sub set_account_info {
      my %args = @_;
      [501, "Not yet implemented"];
  }
  
  $SPEC{list_modules} = {
      v => 1.1,
      summary => 'List modules (permissions)',
      args => {
          %common_args,
          %detail_l_arg,
          %mod_opt_arg,
          type => {
              summary => 'Only list modules matching certain type',
              schema => 'str*',
              tags => ['category:filtering'],
          },
      },
  };
  sub list_modules {
      my %args  = @_;
      require Regexp::Wildcards;
      require String::Wildcard::Bash;
  
      my $q = $args{modules} // [];
  
      my %post_data = (ACTION=>'peek_perms');
  
      if (@$q == 1) {
          $post_data{pause99_peek_perms_by} = 'ml';
          $post_data{pause99_peek_perms_query} =
              String::Wildcard::Bash::convert_wildcard_to_sql($q->[0]);
          $post_data{pause99_peek_perms_sub} = 'Submit';
      }
  
      my $httpres = _request(
          %args,
          post_data => [\%post_data],
      );
  
      return _htres2envres($httpres) unless $httpres->is_success;
  
      for (@$q) {
          next unless String::Wildcard::Bash::contains_wildcard($_);
          my $re = Regexp::Wildcards->new(type=>'unix')->convert($_);
          $re = qr/\A($re)\z/;
          $_ = $re;
      }
  
      my @mods;
      goto NO_MODS if $httpres->content =~ /No records found/;
      return [543, "Can't scrape list of modules from response",
              $httpres->content]
          unless $httpres->content =~ m!<tr><td><b>module</b></td>.+?</tr>(.+?)</table>!s;
      my $str = $1;
  
    REC:
      while ($str =~ m!<tr>
                       <td><a[^>]+>(.+?)</a></td>\s*
                       <td><a[^>]+>(.+?)</a></td>\s*
                       <td>(.+?)</td>\s*
                       <td>(.+?)</td>\s*
                       </tr>!gsx) {
          my $rec = {module=>$1, userid=>$2, type=>$3, owner=>$4};
  
        FILTER_QUERY:
          {
              last unless @$q > 1;
              for (@$q) {
                  if (ref($_) eq 'Regexp') {
                      last FILTER_QUERY if $rec->{module} =~ $_;
                  } else {
                      last FILTER_QUERY if $rec->{module} eq $_;
                  }
              }
              next REC;
          }
  
        FILTER_TYPE:
          if ($args{type}) {
              next REC unless $rec->{type} eq $args{type};
          }
  
          push @mods, $args{detail} ? $rec : $rec->{module};
      }
  
    NO_MODS:
  
      my %resmeta;
      if ($args{detail}) {
          $resmeta{format_options} = {
              any => {
                  table_column_orders => [[qw/module userid type owner/]],
              },
          };
      }
      [200, "OK", \@mods, \%resmeta];
  }
  
  1;
  
  __END__
  
WWW_PAUSE_SIMPLE

$fatpacked{"experimental.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'EXPERIMENTAL';
  package experimental;
  $experimental::VERSION = '0.013';
  use strict;
  use warnings;
  use version ();
  
  use feature ();
  use Carp qw/croak carp/;
  
  my %warnings = map { $_ => 1 } grep { /^experimental::/ } keys %warnings::Offsets;
  my %features = map { $_ => 1 } $] > 5.015006 ? keys %feature::feature : do {
  	my @features;
  	if ($] >= 5.010) {
  		push @features, qw/switch say state/;
  		push @features, 'unicode_strings' if $] > 5.011002;
  	}
  	@features;
  };
  
  my %min_version = (
  	array_base      => '5',
  	autoderef       => '5.14.0',
  	current_sub     => '5.16.0',
  	evalbytes       => '5.16.0',
  	fc              => '5.16.0',
  	lexical_topic   => '5.10.0',
  	lexical_subs    => '5.18.0',
  	postderef       => '5.20.0',
  	postderef_qq    => '5.20.0',
  	refaliasing     => '5.21.5',
  	regex_sets      => '5.18.0',
  	say             => '5.10.0',
  	smartmatch      => '5.10.0',
  	signatures      => '5.20.0',
  	state           => '5.10.0',
  	switch          => '5.10.0',
  	unicode_eval    => '5.16.0',
  	unicode_strings => '5.12.0',
  );
  $_ = version->new($_) for values %min_version;
  
  my %additional = (
  	postderef  => ['postderef_qq'],
  	switch     => ['smartmatch'],
  );
  
  sub _enable {
  	my $pragma = shift;
  	if ($warnings{"experimental::$pragma"}) {
  		warnings->unimport("experimental::$pragma");
  		feature->import($pragma) if exists $features{$pragma};
  		_enable(@{ $additional{$pragma} }) if $additional{$pragma};
  	}
  	elsif ($features{$pragma}) {
  		feature->import($pragma);
  		_enable(@{ $additional{$pragma} }) if $additional{$pragma};
  	}
  	elsif (not exists $min_version{$pragma}) {
  		croak "Can't enable unknown feature $pragma";
  	}
  	elsif ($min_version{$pragma} > $]) {
  		my $stable = $min_version{$pragma};
  		if ($stable->{version}[1] % 2) {
  			$stable = version->new(
  				"5.".($stable->{version}[1]+1).'.0'
  			);
  		}
  		croak "Need perl $stable or later for feature $pragma";
  	}
  }
  
  sub import {
  	my ($self, @pragmas) = @_;
  
  	for my $pragma (@pragmas) {
  		_enable($pragma);
  	}
  	return;
  }
  
  sub _disable {
  	my $pragma = shift;
  	if ($warnings{"experimental::$pragma"}) {
  		warnings->import("experimental::$pragma");
  		feature->unimport($pragma) if exists $features{$pragma};
  		_disable(@{ $additional{$pragma} }) if $additional{$pragma};
  	}
  	elsif ($features{$pragma}) {
  		feature->unimport($pragma);
  		_disable(@{ $additional{$pragma} }) if $additional{$pragma};
  	}
  	elsif (not exists $min_version{$pragma}) {
  		carp "Can't disable unknown feature $pragma, ignoring";
  	}
  }
  
  sub unimport {
  	my ($self, @pragmas) = @_;
  
  	for my $pragma (@pragmas) {
  		_disable($pragma);
  	}
  	return;
  }
  
  1;
  
  
  __END__
  
EXPERIMENTAL

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

our $DATE = '2016-01-17'; # DATE
our $DIST = 'App-pause-FatPacked'; # DIST
our $VERSION = '0.52'; # VERSION

use 5.010001;
use strict;
use warnings;

require Perinci::CmdLine::pause;

our %SPEC;

$SPEC{':package'} = { v=>1.1 };

$ENV{DATA_SAH_CORE_OR_PP} = 1;

my $prefix = '/WWW/PAUSE/Simple/';

Perinci::CmdLine::pause->new(
    summary => 'A CLI for PAUSE',
    url => '/main/',
    extra_urls_for_version => [$prefix],
    subcommands => {
        upload     => { url => "${prefix}upload_files" },
        list       => { url => "${prefix}list_files" },
        ls         => {
            url => "${prefix}list_files",
            summary => 'Alias for list',
            is_alias => 1,
        },
        "list-dists" => { url => "${prefix}list_dists" },
        "list-mods"  => { url => "${prefix}list_modules" },
        delete     => { url => "${prefix}delete_files" },
        rm         => {
            url => "${prefix}delete_files",
            summary => 'Alias for delete',
            is_alias => 1,
        },
        undelete   => { url => "${prefix}undelete_files" },
        reindex    => { url => "${prefix}reindex_files" },
        #password   => { url => "${prefix}set_password" },
        #'account-info' => { url => "${prefix}set_account_info" },
        cleanup    => { url => "${prefix}delete_old_releases" },
    },
    log => 1,
    # since we are also run as pause-unpacked or pause-fatpacked, but want to
    # share config, we hardcode the name here
    config_filenames => ['pause.conf'],
)->run;

# ABSTRACT: A CLI for PAUSE
# PODNAME: pause-fatpacked

__END__

=pod

=encoding UTF-8

=head1 NAME

pause-fatpacked - A CLI for PAUSE

=head1 VERSION

This document describes version 0.52 of pause-fatpacked (from Perl distribution App-pause-FatPacked), released on 2016-01-17.

=head1 SYNOPSIS

First create a config file C<~/pause.conf> containing:

 username=<Your PAUSE ID>
 password=<Your PAUSE password>

or if you have C<~/.pause> from L<cpan-upload>, C<pause> can read it too
(encrypted C<.pause> is currently not supported).

Then:

 # upload one or more files
 % pause upload Foo-Bar-0.12.tar.gz Baz-2.24.tar.gz
 % pause upload Foo-Bar-0.12.tar.gz --subdir old/2014; # upload to a subdir

 # list your files
 % pause list
 % pause ls 'App-*'; # accept filenames/wildcard patterns, note: quote first
 % pause ls -l     ; # see file sizes/mtimes/etc instead of just names

 # list your dists
 % pause list-dists

 # delete files
 % pause delete Foo-Bar-0.12.tar.gz Foo-Bar-0.12.readme Foo-Bar-0.12.meta
 % pause rm 'Foo-Bar-*'; # accept wildcard patterns, but quote first

 # undelete files scheduled for deletion (but not actually deleted yet)
 % pause undelete Foo-Bar-0.12.tar.gz Foo-Bar-0.12.readme Foo-Bar-0.12.meta
 % pause undelete 'Foo-Bar-*'; # accept wildcard patterns, but quote first

 # force reindexing
 % pause reindex Foo-Bar-0.12.tar.gz Foo-Bar-0.12.meta
 % pause reindex 'Foo-Bar-*'; # accept wildcard patterns, but quote first

 # clean old releases, by default will only leave the newest non-dev version
 % pause cleanup
 % pause cleanup -n 3 ; # keep 3 versions (newest + previous two)

To view permissions:

 # list all modules that you have permissions of
 % pause list-mods
 % pause list-mods -l ; # show detail

 # list all modules matching a wildcard
 % pause list-mods -l 'Unix*'

 # list all modules you have co-maint of
 % pause list-mods -l --type co-maint

To change permissions (not yet implemented):

 ...

To change your password (not yet implemented):

 ...

To view your account info (not yet implemented):

 ...

To change your email forwarding (not yet implemented):

 ...

=head1 SUBCOMMANDS

=head2 B<cleanup>

Delete older versions of distributions.

Developer releases will not be deleted.

To delete developer releases, you can use C<delete_files> (rm), e.g. from the
command line:

 % pause rm 'My-Module-*TRIAL*'; # delete a dist's trial releases
 % pause rm '*TRIAL*' '*_*'; # delete all files containing TRIAL or underscore


=head2 B<delete>

Delete files.

When a file is deleted, it is not immediately deleted but has
scheduled_for_deletion status for 72 hours, then deleted. During that time, the
file can be undeleted.


=head2 B<list>

List files.

=head2 B<list-dists>

List distributions.

Distribution names will be extracted from tarball/zip filenames.

Unknown/unparseable filenames will be skipped.


=head2 B<list-mods>

List modules (permissions).

=head2 B<ls>

Alias for list.

=head2 B<reindex>

Force reindexing.

=head2 B<rm>

Alias for delete.

=head2 B<undelete>

Undelete files.

When a file is deleted, it is not immediately deleted but has
scheduled_for_deletion status for 72 hours, then deleted. During that time, the
file can be undeleted.


=head2 B<upload>

Upload file(s).

=head1 OPTIONS

C<*> marks required options.

=head2 Common options

=over

=item B<--config-path>=I<filename>

Set path to configuration file.

Can be specified multiple times.

=item B<--config-profile>=I<s>

Set configuration profile to use.

=item B<--debug>

Set log level to debug (note: you also need to set LOG=1 to enable logging, or use DEBUG=1).

=item B<--format>=I<s>

Choose output format, e.g. json, text.

Default value:

 undef

=item B<--help>, B<-h>, B<-?>

Display help message and exit.

=item B<--json>

Set output format to json.

=item B<--log-level>=I<s>

Set log level (note: you also need to set LOG=1 to enable logging).

=item B<--naked-res>

When outputing as JSON, strip result envelope.

Default value:

 0

By default, when outputing as JSON, the full enveloped result is returned, e.g.:

    [200,"OK",[1,2,3],{"func.extra"=>4}]

The reason is so you can get the status (1st element), status message (2nd
element) as well as result metadata/extra result (4th element) instead of just
the result (3rd element). However, sometimes you want just the result, e.g. when
you want to pipe the result for more post-processing. In this case you can use
`--naked-res` so you just get:

    [1,2,3]


=item B<--no-config>

Do not use any configuration file.

=item B<--no-env>

Do not read environment for default options.

=item B<--password>=I<s>*

PAUSE password.

=item B<--quiet>

Set log level to quiet (note: you also need to set LOG=1 to enable logging, or use QUIET=1).

=item B<--subcommands>

List available subcommands.

=item B<--trace>

Set log level to trace (note: you also need to set LOG=1 to enable logging, or use TRACE=1).

=item B<--username>=I<s>*

PAUSE ID.

=item B<--verbose>

Set log level to info (note: you also need to set LOG=1 to enable logging, or use VERBOSE=1).

=item B<--version>, B<-v>

Display program's version and exit.

=back

=head2 Options for subcommand cleanup

=over

=item B<--detail>, B<-l>

Whether to return detailed records.

=item B<--num-keep>=I<i>, B<-n>

Number of new versions (including newest) to keep.

Default value:

 1

1 means to only keep the newest version, 2 means to keep the newest and the
second newest, and so on.


=item B<--protect-file>=I<s@>

Protect some files/wildcard patterns from delete/cleanup.

Can be specified multiple times.

=item B<--protect-files-json>=I<s>

Protect some files/wildcard patterns from delete/cleanup (JSON-encoded).

See C<--protect-file>.

=back

=head2 Options for subcommand delete

=over

=item B<--file>=I<s@>*

File name/wildcard pattern.

Can be specified multiple times.

=item B<--files-json>=I<s>

File names/wildcard patterns (JSON-encoded).

See C<--file>.

=item B<--protect-file>=I<s@>

Protect some files/wildcard patterns from delete/cleanup.

Can be specified multiple times.

=item B<--protect-files-json>=I<s>

Protect some files/wildcard patterns from delete/cleanup (JSON-encoded).

See C<--protect-file>.

=back

=head2 Options for subcommand list

=over

=item B<--del>

Only list files which are scheduled for deletion.

=item B<--detail>, B<-l>

Whether to return detailed records.

=item B<--file>=I<s@>

File name/wildcard pattern.

Can be specified multiple times.

=item B<--files-json>=I<s>

File names/wildcard patterns (JSON-encoded).

See C<--file>.

=back

=head2 Options for subcommand list-dists

=over

=item B<--detail>, B<-l>

Whether to return detailed records.

=item B<--newest>

Only show newest non-dev version.

Dev versions will be skipped.


=item B<--newest-n>=I<i>

Only show this number of newest non-dev versions.

Dev versions will be skipped.


=back

=head2 Options for subcommand list-mods

=over

=item B<--detail>, B<-l>

Whether to return detailed records.

=item B<--module>=I<s@>

Module name/wildcard pattern.

Can be specified multiple times.

=item B<--modules-json>=I<s>

Module names/wildcard patterns (JSON-encoded).

See C<--module>.

=item B<--type>=I<s>

Only list modules matching certain type.

=back

=head2 Options for subcommand reindex

=over

=item B<--file>=I<s@>*

File name/wildcard pattern.

Can be specified multiple times.

=item B<--files-json>=I<s>

File names/wildcard patterns (JSON-encoded).

See C<--file>.

=back

=head2 Options for subcommand undelete

=over

=item B<--file>=I<s@>*

File name/wildcard pattern.

Can be specified multiple times.

=item B<--files-json>=I<s>

File names/wildcard patterns (JSON-encoded).

See C<--file>.

=back

=head2 Options for subcommand upload

=over

=item B<--delay>=I<s>

Pause a number of seconds between files.

If you upload a lot of files (e.g. 7-10 or more) at a time, the PAUSE indexer
currently might choke with SQLite database locking problem and thus fail to
index your releases. Giving a delay of say 2-3 minutes (120-180 seconds) between
files will alleviate this problem.


=item B<--file>=I<s@>*

File name/wildcard pattern.

Can be specified multiple times.

=item B<--files-json>=I<s>

File names/wildcard patterns (JSON-encoded).

See C<--file>.

=item B<--group-delay>=I<s>

Pause a number of seconds between groups of files.

As an alternative to the `delay` option, you can also use this option. This will
group the files to be uploaded by versions and prevent files of the same dist
and different versions to be uploaded too close to one another, as this might
cause indexing problem too. For example, suppose you're uploading Foo-1.zip
Foo-2.zip Foo-3.zip Bar-1.zip Baz-1.zip Baz-2.zip. The files will be uploaded in
this order:

    upload: Foo-1.zip Bar-1.zip Baz-1.zip
    group delay
    upload: Foo-2.zip Baz-2.zip
    group delay
    upload: Foo-3.zip

As with the `delay` option, it is recommended that if you upload several files
at once, you set this option to 2-3 minutes (120-180 seconds).


=item B<--subdir>=I<s>

Subdirectory to put the file(s) into.

Default value:

 ""

=back

=head1 COMPLETION

This script has shell tab completion capability with support for several
shells.

=head2 bash

To activate bash completion for this script, put:

 complete -C pause-fatpacked pause-fatpacked

in your bash startup (e.g. C<~/.bashrc>). Your next shell session will then
recognize tab completion for the command. Or, you can also directly execute the
line above in your shell to activate immediately.

It is recommended, however, that you install L<shcompgen> which allows you to
activate completion scripts for several kinds of scripts on multiple shells.
Some CPAN distributions (those that are built with
L<Dist::Zilla::Plugin::GenShellCompletion>) will even automatically enable shell
completion for their included scripts (using C<shcompgen>) at installation time,
so you can immadiately have tab completion.

=head2 tcsh

To activate tcsh completion for this script, put:

 complete pause-fatpacked 'p/*/`pause-fatpacked`/'

in your tcsh startup (e.g. C<~/.tcshrc>). Your next shell session will then
recognize tab completion for the command. Or, you can also directly execute the
line above in your shell to activate immediately.

It is also recommended to install C<shcompgen> (see above).

=head2 other shells

For fish and zsh, install C<shcompgen> as described above.

=head1 ENVIRONMENT

=head2 PAUSE_FATPACKED_OPT => str

Specify additional command-line options

=head1 CONFIGURATION FILE

This script can read configuration file, which by default is searched at C<~/.config/pause-fatpacked.conf>, C<~/pause-fatpacked.conf> or C</etc/pause-fatpacked.conf> (can be changed by specifying C<--config-path>). All found files will be read and merged.

To disable searching for configuration files, pass C<--no-config>.

Configuration file is in the format of L<IOD>, which is basically INI with some extra features. Section names map to subcommand names. 

You can put multiple profiles in a single file by using section names like C<[profile=SOMENAME]> or C<[SUBCOMMAND_NAME profile=SOMENAME]>. Those sections will only be read if you specify the matching C<--config-profile SOMENAME>.

List of available configuration parameters:

=head2 Common for all subcommands

 format (see --format)
 log_level (see --log-level)
 naked_res (see --naked-res)
 password (see --password)
 username (see --username)

=head2 Configuration for subcommand 'cleanup'

 detail (see --detail)
 num_keep (see --num-keep)
 protect_files (see --protect-file)

=head2 Configuration for subcommand 'delete'

 files (see --file)
 protect_files (see --protect-file)

=head2 Configuration for subcommand 'list'

 del (see --del)
 detail (see --detail)
 files (see --file)

=head2 Configuration for subcommand 'list-dists'

 detail (see --detail)
 newest (see --newest)
 newest_n (see --newest-n)

=head2 Configuration for subcommand 'list-mods'

 detail (see --detail)
 modules (see --module)
 type (see --type)

=head2 Configuration for subcommand 'reindex'

 files (see --file)

=head2 Configuration for subcommand 'undelete'

 files (see --file)

=head2 Configuration for subcommand 'upload'

 delay (see --delay)
 files (see --file)
 group_delay (see --group-delay)
 subdir (see --subdir)

=head1 FILES

F<~/.pause>

~/.config/pause-fatpacked.conf

~/pause-fatpacked.conf

/etc/pause-fatpacked.conf

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/App-pause-FatPacked>.

=head1 SOURCE

Source repository is at L<https://github.com/perlancar/perl-App-pause-Fatpacked>.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-pause-FatPacked>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=head1 AUTHOR

perlancar <perlancar@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
