hexsha
stringlengths
40
40
size
int64
3
1.05M
ext
stringclasses
163 values
lang
stringclasses
53 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
112
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
113
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
float64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
113
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
3
1.05M
avg_line_length
float64
1
966k
max_line_length
int64
1
977k
alphanum_fraction
float64
0
1
73ef4e2f14a1cc568c9682cb130662bdded52633
208
al
Perl
Apps/W1/BasicExperience/app/src/page/ManufacturingManagerRCBF.PageExt.al
MiguelMercadoActual/ALAppExtensions
97ee3823053eb32fa7e38dc3d1e7a89bdcca8d7b
[ "MIT" ]
337
2019-05-07T06:04:40.000Z
2022-03-31T10:07:42.000Z
Apps/W1/BasicExperience/app/src/page/ManufacturingManagerRCBF.PageExt.al
MiguelMercadoActual/ALAppExtensions
97ee3823053eb32fa7e38dc3d1e7a89bdcca8d7b
[ "MIT" ]
14,850
2019-05-07T06:04:27.000Z
2022-03-31T19:53:28.000Z
Apps/W1/BasicExperience/app/src/page/ManufacturingManagerRCBF.PageExt.al
MiguelMercadoActual/ALAppExtensions
97ee3823053eb32fa7e38dc3d1e7a89bdcca8d7b
[ "MIT" ]
374
2019-05-09T10:08:14.000Z
2022-03-31T17:48:32.000Z
pageextension 20627 "Manufacturing Manager RC BF" extends "Manufacturing Manager RC" { actions { modify("Orders1") { ApplicationArea = Advanced, BFOrders; } } }
20.8
84
0.586538
73f3c8d4eb30091de625b34abe5c2a60ea25d9a8
5,839
pm
Perl
lib/String/Incremental.pm
issm/p5-String-Incremental
2e1de6befdc85948a0306c119837972d15e23b99
[ "Artistic-1.0" ]
null
null
null
lib/String/Incremental.pm
issm/p5-String-Incremental
2e1de6befdc85948a0306c119837972d15e23b99
[ "Artistic-1.0" ]
2
2015-04-04T11:31:11.000Z
2015-04-04T13:59:35.000Z
lib/String/Incremental.pm
issm/p5-String-Incremental
2e1de6befdc85948a0306c119837972d15e23b99
[ "Artistic-1.0" ]
null
null
null
package String::Incremental; use 5.008005; use strict; use warnings; use Mouse; use MouseX::Types::Mouse qw( Str ArrayRef is_Str ); use String::Incremental::Types qw( Char ); use String::Incremental::FormatParser; use String::Incremental::Char; use Data::Validator; use Try::Tiny; use overload ( '""' => \&as_string, '++' => \&increment, '--' => \&decrement, '=' => sub { $_[0] }, ); extends qw( Exporter Tie::Scalar ); our $VERSION = "0.01"; our @EXPORT_OK = qw( incremental_string ); has 'format' => ( is => 'ro', isa => Str ); has 'items' => ( is => 'ro', isa => ArrayRef ); has 'chars' => ( is => 'ro', isa => ArrayRef['String::Incremental::Char'] ); sub BUILDARGS { my ($class, %args) = @_; my $v = Data::Validator->new( format => { isa => Str }, orders => { isa => ArrayRef, default => [] }, ); %args = %{$v->validate( \%args )}; my $p = String::Incremental::FormatParser->new( $args{format}, @{$args{orders}} ); return +{ format => $p->format, items => $p->items, chars => [ grep $_->isa( __PACKAGE__ . '::Char' ), @{$p->items} ], }; } sub incremental_string { my ($format, @orders) = @_; return __PACKAGE__->new( format => $format, orders => \@orders ); } sub char { my ($self, $i) = @_; my $ch; unless ( defined $i ) { die 'index to set must be specified'; } unless ( $i =~ /^\d+$/ ) { die 'must be specified as Int'; } unless ( defined ( $ch = $self->chars->[$i] ) ) { die 'out of index'; } return $ch; } sub as_string { my ($self) = @_; my @vals = map "$_", @{$self->items}; return sprintf( $self->format, @vals ); } sub set { my $v = Data::Validator->new( val => { isa => Str }, )->with( 'Method', 'StrictSequenced' ); my ($self, $args) = $v->validate( @_ ); my @ch = $self->_extract_incremental_chars( $args->{val} ); for ( my $i = 0; $i < @ch; $i++ ) { my $char = $self->char( $i ); $char->set( $ch[$i] ); } return "$self"; } sub increment { my ($self) = @_; my ($last_ch) = grep $_->isa( __PACKAGE__ . '::Char' ), reverse @{$self->items}; if ( defined $last_ch ) { $last_ch++; } return "$self"; } sub decrement { my ($self) = @_; my ($last_ch) = grep $_->isa( __PACKAGE__ . '::Char' ), reverse @{$self->items}; if ( defined $last_ch ) { $last_ch--; } return "$self"; } sub re { my ($self) = @_; my ($re, @re); @re = map { my $i = $_; my $_re = $i->re(); my $ref = ref $_; $ref eq __PACKAGE__ . '::Char' ? "(${_re})" : $_re; } @{$self->items}; (my $fmt = $self->format) =~ s/%(?:\d+(?:\.?\d+)?)?\S/\%s/g; $re = sprintf $fmt, @re; return qr/^(${re})$/; } sub _extract_incremental_chars { my $v = Data::Validator->new( val => { isa => Str }, )->with( 'Method', 'StrictSequenced' ); my ($self, $args) = $v->validate( @_ ); my @ch; (my $match, @ch) = $args->{val} =~ $self->re(); unless ( defined $match ) { my $msg = 'specified value does not match with me'; die $msg; } return wantarray ? @ch : \@ch; } sub TIESCALAR { my ($class, @args) = @_; return $class->new( @args ); } sub FETCH { $_[0] } sub STORE { my ($self, @args) = @_; if ( ref( $args[0] ) eq '' ) { # ignore when ++/-- $self->set( @args ); } } __PACKAGE__->meta->make_immutable(); __END__ =encoding utf-8 =head1 NAME String::Incremental - incremental string with your rule =head1 SYNOPSIS use String::Incremental; my $str = String::Incremental->new( format => 'foo-%2=-%=', orders => [ [0..2], 'abcd', ], ); # or use String::Incremental qw( incremental_string ); my $str = incremental_string( 'foo-%2=-%=', [0..2], 'abcd', ); print "$str"; # prints 'foo-00-a' $str++; $str++; $str++; print "$str"; # prints 'foo-00-d' $str++; print "$str"; # prints 'foo-01-a' $str->set( 'foo-22-d' ); print "$str"; # prints 'foo-22-d'; $str++; # dies, cannot ++ any more =head1 DESCRIPTION String::Incremental provides generating string that can increment in accordance with your format and rule. =head1 CONSTRUCTORS =over 4 =item new( %args ) : String::Incremental format: Str orders: ArrayRef =back =head1 METHODS =over 4 =item as_string() : Str returns "current" string. following two variables are equivalent: my $a = $str->as_string(); my $b = "$str"; =item set( $val : Str ) : String::Incremental sets to $val. tying with String::Incremental, assignment syntax is available as synonym of this method: tie my $str, 'String::Incremental', ( format => 'foo-%2=-%=', orders => [ [0..2], 'abcd' ], ); $str = 'foo-22-d'; # same as `$str->set( 'foo-22-d' )` print "$str"; # prints 'foo-22-d'; =item increment() : Str increases positional state of order and returns its character. following two operation are equivalent: $str->increment(); $str++; =item decrement() : Str decreases positional state of order and returns its character. following two operation are equivalent: $str->decrement(); $str--; =back =head1 FUNCTIONS =over 4 =item incremental_string( $format, @orders ) : String::Incremental another way to construct String::Incremental instance. this function is not exported automatically, you need to export manually: use String::Incremental qw( incremental_string ); =back =head1 LICENSE Copyright (C) issm. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 AUTHOR issm E<lt>issmxx@gmail.comE<gt> =cut
20.487719
106
0.548895
ed64d269f9599670368edbdf933f2abab09acc3a
863
pm
Perl
fc-solve/site/wml/lib/rejects/MyNavData.pm
shlomif/fc-solve
1c2293f823a304ac658867b7486cccd6881a8b06
[ "MIT" ]
50
2016-03-12T10:28:49.000Z
2022-03-20T00:56:04.000Z
fc-solve/site/wml/lib/rejects/MyNavData.pm
shlomif/fc-solve
1c2293f823a304ac658867b7486cccd6881a8b06
[ "MIT" ]
41
2016-10-08T21:45:09.000Z
2021-12-26T05:46:55.000Z
fc-solve/site/wml/lib/rejects/MyNavData.pm
shlomif/fc-solve
1c2293f823a304ac658867b7486cccd6881a8b06
[ "MIT" ]
9
2018-01-20T20:52:14.000Z
2021-05-11T05:09:30.000Z
package rejects::MyNavData; use strict; use warnings; =begin Removed { 'text' => "PySol Integration", 'url' => "pysol/", }, { 'text' => "Doxygen", 'title' => ("Hypertext documentation for the Freecell " . "Solver code generated by Doxygen"), 'url' => "http://fc-solve.shlomifish.org/michael_mann/", 'url_is_abs' => 1, 'skip' => 1, }, { 'text' => "Status", 'url' => "current-status.html", 'title' => "What is the current status of Freecell Solver? Is it dead?", }, { 'text' => "The Book", 'url' => "book.html", }, =end Removed =cut 1;
22.710526
84
0.388181
ed61c13093cacfe7194d20d5d8d2515823b386b9
1,748
pl
Perl
util/CDHitClustComp.pl
spolson/RedRep
49631b6144d088480404fc798e6230c0a7d98c09
[ "MIT" ]
null
null
null
util/CDHitClustComp.pl
spolson/RedRep
49631b6144d088480404fc798e6230c0a7d98c09
[ "MIT" ]
null
null
null
util/CDHitClustComp.pl
spolson/RedRep
49631b6144d088480404fc798e6230c0a7d98c09
[ "MIT" ]
null
null
null
#!/usr/bin/perl -w #RedRep Utility CDHitClustComp.pl #Copyright 2016 Shawn Polson, Keith Hopper, Randall Wisser #ARGS inputfile-clstr outputfile-text use strict; sub promptUser; # Accepts a cd-hit or psi-cd-hit .clstr file and determines library # composition per cluster based on LibName (below). # # INPUT: .clstr file with seq descriptions as follows: # [LibName-Identifier] or [LibName_Identifier] # LibName cannot include spaces, hyphens, or underscores # # OUTPUT: tab delimited table # # Shawn Polson, 5-2-2008 my($inputFile, $outputFile, $clustSize, $line, $j, $key); my @clustComp; my @clustSeed; my %keyVals; my $pass=0; my $clustNum=-1; my $delim='\w\w\w'; # metagenome sequences $inputFile = $ARGV[0]; open(DAT, $inputFile) or die "Cannot open input file $inputFile\n"; $outputFile = $ARGV[1]; open(OUT, "> $outputFile") or die "Cannot open output file $outputFile\n"; while(<DAT>) { $line=$_; if($line =~ "^>") { $clustNum++; } # READ CLUSTER COMPONENT ENTRIES if ($line =~ /\d+[na][ta], >($delim)/) { $clustComp[$clustNum]{$1}++; $keyVals{$1}=1; ($clustSeed[$clustNum])=($line=~/\d+[na][ta], >(\S+)/) if($line=~/\*$/); } } #END WHILE(<DATA>) LOOP close(DAT); #PRINT LIBRARY FREQUENCY FILE #PRINT HEADERS print OUT "\t"; foreach $key (sort keys %keyVals) { print OUT "$key\t"; } print OUT "\n"; #PRINT DATA for($j=0; $j<=$clustNum; $j++) { $pass=1; print OUT "Cluster_$j:$clustSeed[$j]\t"; foreach $key (sort keys %keyVals) { if($pass==2) { print OUT "\t"; } if(defined($clustComp[$j]{$key})) { print OUT $clustComp[$j]{$key}; } else { print OUT "0"; } $pass=2; } print OUT "\n"; } close(OUT);
22.410256
74
0.611556
ed607954c583e341b0cedc6c322e264f559cb87f
457
t
Perl
t/005-return.t
moose/Class-Method-Modifiers
9f67c8f1cb1c2b437e5d64bb7d813174055615a0
[ "Artistic-1.0" ]
2
2017-04-01T14:11:14.000Z
2018-10-17T15:27:44.000Z
t/005-return.t
moose/Class-Method-Modifiers
9f67c8f1cb1c2b437e5d64bb7d813174055615a0
[ "Artistic-1.0" ]
2
2015-05-21T17:11:39.000Z
2017-01-16T06:03:01.000Z
t/005-return.t
moose/Class-Method-Modifiers
9f67c8f1cb1c2b437e5d64bb7d813174055615a0
[ "Artistic-1.0" ]
4
2015-05-21T13:03:30.000Z
2020-08-13T16:03:02.000Z
use strict; use warnings; use Test::More 0.88; use if $ENV{AUTHOR_TESTING}, 'Test::Warnings'; do { package Fib; sub onacci { (1, 1, 2) } }; is_deeply([Fib->onacci], [1, 1, 2]); do { package Fib; use Class::Method::Modifiers; before onacci => sub {}; }; is_deeply([Fib->onacci], [1, 1, 2]); do { package Fib; use Class::Method::Modifiers; after onacci => sub {}; }; is_deeply([Fib->onacci], [1, 1, 2]); done_testing;
14.28125
46
0.582057
ed0949859e65e5f9324eb2fb2af2590c4710b125
333
pm
Perl
lib/Spreadsheet/ParseODS/Settings.pm
Tux/Spreadsheet-ReadSXC
e81208ba5dc93540d67fdfa59ada7ba476cfc723
[ "Artistic-2.0" ]
null
null
null
lib/Spreadsheet/ParseODS/Settings.pm
Tux/Spreadsheet-ReadSXC
e81208ba5dc93540d67fdfa59ada7ba476cfc723
[ "Artistic-2.0" ]
null
null
null
lib/Spreadsheet/ParseODS/Settings.pm
Tux/Spreadsheet-ReadSXC
e81208ba5dc93540d67fdfa59ada7ba476cfc723
[ "Artistic-2.0" ]
null
null
null
package Spreadsheet::ParseODS::Settings; use Moo 2; use Carp qw(croak); use Filter::signatures; use feature 'signatures'; no warnings 'experimental::signatures'; use PerlX::Maybe; our $VERSION = '0.25'; =head1 NAME Spreadsheet::ParseODS::Settings - settings of a workbook =cut has 'active_sheet_name' => ( is => 'rw' ); 1;
15.136364
56
0.705706
ed2eb47685c906e9c2c17f935c71dce23238aa68
3,200
pl
Perl
source/upschr-h.pl
texjporg/uptex-fonts
d424d39e888faa34e0bc78805d51458d6ae31f3b
[ "BSD-3-Clause" ]
3
2018-02-12T09:36:48.000Z
2020-04-26T20:09:32.000Z
source/upschr-h.pl
texjporg/uptex-fonts
d424d39e888faa34e0bc78805d51458d6ae31f3b
[ "BSD-3-Clause" ]
8
2017-01-03T01:33:30.000Z
2020-02-29T02:02:28.000Z
source/upschr-h.pl
texjporg/uptex-fonts
d424d39e888faa34e0bc78805d51458d6ae31f3b
[ "BSD-3-Clause" ]
null
null
null
(COMMENT THIS IS A KANJI FORMAT FILE) (FAMILY UPSCH KANJI) (FACE F MRR) (CODINGSCHEME TEX KANJI TEXT) (DESIGNSIZE R 10.0) (COMMENT DESIGNSIZE IS IN POINTS) (COMMENT OTHER SIZES ARE MULTIPLES OF DESIGNSIZE) (CHECKSUM O 0) (FONTDIMEN (SLANT R 0.0) (SPACE R 0.0) (STRETCH R 0.100000) (SHRINK R 0.0) (XHEIGHT R 1.000000) (QUAD R 1.000000) (EXTRASPACE R 0.250000) (EXTRASTRETCH R 0.200000) (EXTRASHRINK R 0.125000) ) (GLUEKERN (LABEL O 0) (GLUE O 1 R 0.500000 R 0.0 R 0.500000) (GLUE O 3 R 0.250000 R 0.0 R 0.250000) (STOP) (LABEL O 1) (GLUE O 3 R 0.250000 R 0.0 R 0.250000) (STOP) (LABEL O 2) (GLUE O 0 R 0.500000 R 0.0 R 0.500000) (GLUE O 1 R 0.500000 R 0.0 R 0.500000) (GLUE O 3 R 0.250000 R 0.0 R 0.250000) (GLUE O 5 R 0.500000 R 0.0 R 0.500000) (STOP) (LABEL O 3) (GLUE O 0 R 0.250000 R 0.0 R 0.250000) (GLUE O 1 R 0.250000 R 0.0 R 0.250000) (GLUE O 2 R 0.250000 R 0.0 R 0.250000) (GLUE O 3 R 0.500000 R 0.0 R 0.250000) (GLUE O 4 R 0.250000 R 0.0 R 0.250000) (GLUE O 5 R 0.250000 R 0.0 R 0.250000) (STOP) (LABEL O 4) (GLUE O 0 R 0.500000 R 0.0 R 0.0) (GLUE O 1 R 0.500000 R 0.0 R 0.0) (GLUE O 3 R 0.750000 R 0.0 R 0.250000) (GLUE O 5 R 0.500000 R 0.0 R 0.0) (STOP) (LABEL O 5) (GLUE O 1 R 0.500000 R 0.0 R 0.500000) (GLUE O 3 R 0.250000 R 0.0 R 0.250000) (KRN O 5 R 0.0) (STOP) ) (CHARSINTYPE O 1 ‘ “ ( 〔 [ { 〈 《 「 『 【 UFF5F U3018 U3016 U301D U2329 U301A ) (CHARSINTYPE O 2 、 , : ; ’ ” ) 〕 ] } 〉 》 」 』 】 UFF60 U3019 U3017 U301F U232A U301B U301E ) (CHARSINTYPE O 3 ・ U00B7 ) (CHARSINTYPE O 4 。 . ? ! ) (CHARSINTYPE O 5 — ― … ‥ ) (TYPE O 0 (CHARWD R 1.000000) (CHARHT R 0.880000) (CHARDP R 0.120000) (COMMENT (GLUE O 1 R 0.500000 R 0.0 R 0.500000) (GLUE O 3 R 0.250000 R 0.0 R 0.250000) ) ) (TYPE O 1 (CHARWD R 0.500000) (CHARHT R 0.880000) (CHARDP R 0.120000) (COMMENT (GLUE O 3 R 0.250000 R 0.0 R 0.250000) ) ) (TYPE O 2 (CHARWD R 0.500000) (CHARHT R 0.880000) (CHARDP R 0.120000) (COMMENT (GLUE O 0 R 0.500000 R 0.0 R 0.500000) (GLUE O 1 R 0.500000 R 0.0 R 0.500000) (GLUE O 3 R 0.250000 R 0.0 R 0.250000) (GLUE O 5 R 0.500000 R 0.0 R 0.500000) ) ) (TYPE O 3 (CHARWD R 0.500000) (CHARHT R 0.880000) (CHARDP R 0.120000) (COMMENT (GLUE O 0 R 0.250000 R 0.0 R 0.250000) (GLUE O 1 R 0.250000 R 0.0 R 0.250000) (GLUE O 2 R 0.250000 R 0.0 R 0.250000) (GLUE O 3 R 0.500000 R 0.0 R 0.250000) (GLUE O 4 R 0.250000 R 0.0 R 0.250000) (GLUE O 5 R 0.250000 R 0.0 R 0.250000) ) ) (TYPE O 4 (CHARWD R 0.500000) (CHARHT R 0.880000) (CHARDP R 0.120000) (COMMENT (GLUE O 0 R 0.500000 R 0.0 R 0.0) (GLUE O 1 R 0.500000 R 0.0 R 0.0) (GLUE O 3 R 0.750000 R 0.0 R 0.250000) (GLUE O 5 R 0.500000 R 0.0 R 0.0) ) ) (TYPE O 5 (CHARWD R 1.000000) (CHARHT R 0.880000) (CHARDP R 0.120000) (COMMENT (GLUE O 1 R 0.500000 R 0.0 R 0.500000) (GLUE O 3 R 0.250000 R 0.0 R 0.250000) (KRN O 5 R 0.0) ) )
23.188406
49
0.555313
ed3c85b5c2d31dcbfe8d9e1fdc28f0204dcf03bf
1,274
pl
Perl
scripts/test_scripts/do_summary.pl
Formatted/esmf
94561c6a1d539917da5595a8de867e43f43bcafe
[ "NCSA" ]
1
2018-07-05T16:48:58.000Z
2018-07-05T16:48:58.000Z
scripts/test_scripts/do_summary.pl
Formatted/esmf
94561c6a1d539917da5595a8de867e43f43bcafe
[ "NCSA" ]
1
2022-03-04T16:12:02.000Z
2022-03-04T16:12:02.000Z
scripts/test_scripts/do_summary.pl
Formatted/esmf
94561c6a1d539917da5595a8de867e43f43bcafe
[ "NCSA" ]
null
null
null
#!/usr/bin/env perl # $Id$ # This prints a summary of system tests, unit tests and examples. # The script calls sys_tests_results, examples_results and # unit_tests_results with the summary option turned on, # therefore the summary results are printed to the screen. # Options: # # -h ESMF_TESTSCRIPTS # -d TEST_DIR # -e EX_DIR # -b ESMF_BOPT # -f ESMF_COMM # use Getopt::Std; use Cwd; getopts("h:d:e:b:f:", \%options); $ESMF_TESTSCRIPTS = "$options{h}"; $TEST_DIR = "$options{d}"; $EX_DIR = "$options{e}"; $ESMF_BOPT = "$options{b}"; $ESMF_COMM = "$options{f}"; # # Define location of test scripts. # unshift (@INC, "$ESMF_TESTSCRIPTS"); # # Declare subroutines # require "sys_tests_results.pl"; require "examples_results.pl"; require "unit_tests_results.pl"; # get pwd $dir = cwd(); # Call sys_tests_result with SUMMARY request turned on. &sys_tests_results("$TEST_DIR","$ESMF_BOPT","$ESMF_COMM","1"); # Go back tp pwd chdir $dir; # Call examples_results with SUMMARY request turned on. &examples_results("$EX_DIR","$ESMF_BOPT","$ESMF_COMM","1"); # Go back tp pwd chdir $dir; # Call unit_tests_results with SUMMARY request turned on. &unit_tests_results("$TEST_DIR","$ESMF_BOPT","$ESMF_COMM","1"); # Go back to pwd chdir $dir; exit;
19.90625
65
0.695447
73fd5c0b4bfb677d312cd228ec3b01898d0eee03
5,750
pl
Perl
countTrints/count_trinuc_muts_v6.pl
gstarrett/mutation_signature_analysis
e2348d9d4bc2782b891d9d5df8f502b19e5bfdd1
[ "MIT" ]
2
2019-09-20T17:16:19.000Z
2021-04-18T14:27:27.000Z
countTrints/count_trinuc_muts_v6.pl
gstarrett/mutation_signature_analysis
e2348d9d4bc2782b891d9d5df8f502b19e5bfdd1
[ "MIT" ]
null
null
null
countTrints/count_trinuc_muts_v6.pl
gstarrett/mutation_signature_analysis
e2348d9d4bc2782b891d9d5df8f502b19e5bfdd1
[ "MIT" ]
null
null
null
#!/usr/bin/perl -w use strict; use Data::Dumper; use Bio::DB::Fasta; my $n = -1; my $type = shift; my $fasta = shift; my $variants = shift; my $stdout = 0; my $time = time; unless (defined $type && defined $fasta && defined $variants) { my $usage="Error: Not enough inputs\n\n\tUsage: perl count_trinuc_muts <maf, vcf, or pvcf> <reference> <variants>\\nn"; die $usage; } my $name = "$variants"; my $trinucs = "#chr\tpos\t5'tetranuc\t3'tetranuc\ttrinuc\tmut\ttrinuc_mut\tstrand\tflank41bp\tCcount\tTCcount\tTCAcount\tTCTcount\tYTCAcount\tRTCAcount\tsample\n"; my %trinucHash; my %compDict = ( A => "T", T => "A", C => "G", G => "C" ); my %normalization = ( ACA => 0.07, ACC => 0.06, ACG => 0.02, ACT => 0.06, CCA => 0.10, CCC => 0.09, CCG => 0.02, CCT => 0.09, GCA => 0.07, GCC => 0.08, GCG => 0.02, GCT => 0.07, TCA => 0.07, TCC => 0.08, TCG => 0.01, TCT => 0.08 ); my @norm = ( 0.07, 0.06, 0.02, 0.06, 0.10, 0.09, 0.02, 0.09, 0.07, 0.08, 0.02, 0.07, 0.07, 0.08, 0.01, 0.08 ); #system("awk 'BEGIN {FS="\t"}; {print "chr"$5"\t"$6"\t"$18"\t"$12"\t"$16}' $filein"); print "creating fasta db... "; my $db = Bio::DB::Fasta->new($fasta); print "complete!\n"; my %repeatHash; open (VAR, "< $variants"); while (my $line = <VAR>) { chomp($line); next if $line =~ /^$/; my ($chr,$pos,$ref,$alt); my $sample = ""; my @fields = split("\t",$line); unless ($type eq "maf") { $chr = shift @fields; $pos = shift @fields; $pos++; my $end = shift @fields if $type eq "bed"; my $id = shift @fields if $type eq "vcf"; # for full vcf not pvcf $ref = shift @fields; $alt = shift @fields; $sample = shift @fields if $type eq "pvcf"; # if sample name is available } else { next unless $fields[9] eq "SNP"; $chr = $fields[4]; $pos = $fields[5]; $pos++; $ref = $fields[10]; $alt = $fields[12]; $sample = substr($fields[15],0,12); } next unless length($alt) == 1; #print "$chr $pos $ref $alt\n"; if ($ref =~ /^[TC]$/) { my $TCcxt=0; my $GAcxt=0; my $CGcxt=0; my $TCAcxt=0; my $TGAcxt=0; my $TCTcxt=0; my $AGAcxt=0; my $RTCAcxt=0; my $TGAYcxt=0; my $YTCAcxt=0; my $TGARcxt=0; my $flank = uc($db->seq($chr, $pos-10+$n => $pos+10+$n)); my $flank40 = uc($db->seq($chr, $pos-20+$n => $pos+20+$n)); while ($flank40 =~ /TC/g) { $TCcxt++ } while ($flank40 =~ /GA/g) { $GAcxt++ } while ($flank40 =~ /TC[AT]/g) { $TCAcxt++ } while ($flank40 =~ /[AT]GA/g) { $TGAcxt++ } while ($flank40 =~ /TC[AT]/g) { $TCTcxt++ } while ($flank40 =~ /[AT]GA/g) { $AGAcxt++ } while ($flank40 =~ /[GA]TCA/g) { $RTCAcxt++ } while ($flank40 =~ /TGA[CT]/g) { $TGAYcxt++ } while ($flank40 =~ /[CT]TCA/g) { $YTCAcxt++ } while ($flank40 =~ /TGA[GA]/g) { $TGARcxt++ } my $TCNcxt = $TCcxt + $GAcxt; my $A3cxt1 = $TGAcxt + $TCAcxt; my $A3cxt2 = $AGAcxt + $TCTcxt; my $YtetraCxt = $YTCAcxt + $TGARcxt; my $RtetraCxt = $RTCAcxt + $TGAYcxt; while ($flank40 =~ /[CG]/g) { $CGcxt++ } if (exists $repeatHash{$flank}) { next; } else { $repeatHash{$flank} = 1; } my $seq = uc($db->seq($chr, $pos-2+$n => $pos+2+$n)); my @bases = split('', $seq); $seq = $bases[1] . $bases[2] . $bases[3]; my $tetraseq5 = $bases[0] . $bases[1] . $bases[2] . $bases[3]; my $tetraseq3 = $bases[1] . $bases[2] . $bases[3] . $bases[4]; my $fullstring = "$bases[1]\[$ref>$alt\]$bases[3]"; $trinucs .= "$chr\t$pos\t$tetraseq5\t$tetraseq3\t$seq\t$ref>$alt\t$fullstring\t1\t$flank40\t$CGcxt\t$TCNcxt\t$A3cxt1\t$A3cxt2\t$YtetraCxt\t$RtetraCxt\t$sample\n"; } elsif ($ref =~ /^[AG]$/ ) { my $TCcxt=0; my $GAcxt=0; my $CGcxt=0; my $TCAcxt=0; my $TGAcxt=0; my $TCTcxt=0; my $AGAcxt=0; my $RTCAcxt=0; my $TGAYcxt=0; my $YTCAcxt=0; my $TGARcxt=0; my $flank = uc($db->seq($chr, $pos-10+$n => $pos+10+$n)); my $flank40 = uc($db->seq($chr, $pos-20+$n => $pos+20+$n)); while ($flank40 =~ /TC/g) { $TCcxt++ } while ($flank40 =~ /GA/g) { $GAcxt++ } while ($flank40 =~ /TCA/g) { $TCAcxt++ } while ($flank40 =~ /TGA/g) { $TGAcxt++ } while ($flank40 =~ /TCT/g) { $TCTcxt++ } while ($flank40 =~ /AGA/g) { $AGAcxt++ } while ($flank40 =~ /[GA]TCA/g) { $RTCAcxt++ } while ($flank40 =~ /TGA[CT]/g) { $TGAYcxt++ } while ($flank40 =~ /[CT]TCA/g) { $YTCAcxt++ } while ($flank40 =~ /TGA[GA]/g) { $TGARcxt++ } my $TCNcxt = $TCcxt + $GAcxt; my $A3cxt1 = $TGAcxt + $TCAcxt; my $A3cxt2 = $AGAcxt + $TCTcxt; my $YtetraCxt = $YTCAcxt + $TGARcxt; my $RtetraCxt = $RTCAcxt + $TGAYcxt; while ($flank40 =~ /[CG]/g) { $CGcxt++ } my @fbases = split('', $flank); my @revcomp; foreach(@fbases) { unshift(@revcomp, $compDict{$_}); } my $rcflank = join('', @revcomp); if (exists $repeatHash{$rcflank}) { next; } else { $repeatHash{$rcflank} = 1; } my $seq = uc($db->seq($chr, $pos-2+$n => $pos+3+$n)); my @bases = split('', $seq); $seq = $compDict{$bases[3]} . $compDict{$bases[2]} . $compDict{$bases[1]}; my $tetraseq3 = $compDict{$bases[3]} . $compDict{$bases[2]} . $compDict{$bases[1]} . $compDict{$bases[0]}; my $tetraseq5 = $compDict{$bases[4]} . $compDict{$bases[3]} . $compDict{$bases[2]} . $compDict{$bases[1]}; my $fullstring = "$compDict{$bases[3]}\[$compDict{$ref}>$compDict{$alt}\]$compDict{$bases[1]}"; $trinucs .= "$chr\t$pos\t$tetraseq5\t$tetraseq3\t$seq\t$compDict{$ref}>$compDict{$alt}\t$fullstring\t-1\t$flank40\t$CGcxt\t$TCNcxt\t$A3cxt1\t$A3cxt2\t$YtetraCxt\t$RtetraCxt\t$sample\n"; } else { next } } if ($stdout == 0) { open (OUT, "> $name.$time.count.txt"); print OUT $trinucs; close(OUT); } else { print $trinucs; } # count all TCW:WGA and sum flank C:Gs # count all C:Gs and sum flank TCW:WGA ### Process maf file # data.w <- mapply("*", data.c, data.radj, SIMPLIFY=F) exit;
25.784753
187
0.56313
ed0507618daf60d07eba23d5a6c232d759cf10da
910
t
Perl
t/900_mouse_bugs/005_large_int.t
gluesys/p5-Mouse
b3805f0444a98a4c746e427ebf668a8189ca0f3c
[ "Artistic-1.0" ]
21
2015-05-13T04:45:53.000Z
2019-07-25T09:43:23.000Z
t/900_mouse_bugs/005_large_int.t
gluesys/p5-Mouse
b3805f0444a98a4c746e427ebf668a8189ca0f3c
[ "Artistic-1.0" ]
48
2015-01-19T11:01:58.000Z
2019-08-13T09:48:13.000Z
t/900_mouse_bugs/005_large_int.t
gluesys/p5-Mouse
b3805f0444a98a4c746e427ebf668a8189ca0f3c
[ "Artistic-1.0" ]
20
2015-03-02T04:21:52.000Z
2019-08-14T03:02:00.000Z
# See also http://rt.cpan.org/Public/Bug/Display.html?id=55048 use strict; use Test::More tests => 24; { package MyInteger; use Mouse; has a_int => ( is => 'rw', isa => 'Int', ); has a_num => ( is => 'rw', isa => 'Num', ); } foreach my $i(2**32, 2**40, 2**46) { for my $sig(1, -1) { my $value = $i * $sig; my $int = MyInteger->new( a_int => $value )->a_int; cmp_ok($int, '==', $value, "Mouse groked the Int $i"); my $num = MyInteger->new( a_num => $value )->a_num; cmp_ok($num, '==', $value, "Mouse groked the Num $i"); $value += 0.5; eval { MyInteger->new( a_int => $value ) }; like $@, qr/does not pass the type constraint/, "Mouse does not regard $value as Int"; eval { MyInteger->new( a_num => $value ) }; is $@, '', "Mouse regards $value as Num"; } }
22.75
94
0.491209
73f98443a246fa843f51921d75e40a86c69e4d0a
362
pl
Perl
alt12dicts/fix-2of12id.pl
hichris1234/wordlist
815ba80ae7333fe67c631a64437dbff1bd7a7fd4
[ "MIT" ]
240
2016-07-12T00:42:31.000Z
2022-03-27T16:28:49.000Z
alt12dicts/fix-2of12id.pl
hichris1234/wordlist
815ba80ae7333fe67c631a64437dbff1bd7a7fd4
[ "MIT" ]
196
2016-06-24T21:30:51.000Z
2022-03-09T10:20:22.000Z
alt12dicts/fix-2of12id.pl
hichris1234/wordlist
815ba80ae7333fe67c631a64437dbff1bd7a7fd4
[ "MIT" ]
66
2016-08-02T07:28:33.000Z
2022-02-12T21:53:25.000Z
open F, "2of12id.txt"; while (<F>) { chop; chop; ($d,$w,$p,$a) = /^(\-?)(\w+) (.*):( ?.*)/ or die; my $s = "$d$w $p:"; local $_ = $a; while (length $_ > 0) { if (s/^ ([-~\w\']+)//) { $s .= " $1 "; } elsif (s/^ (\(.+?\)|{.+?}|[\/|] [-~\w\']+)//) { $s .= "$1 "; } else { die; } } $s =~ s/ $//; print "$s\r\n"; }
16.454545
53
0.267956
ed0fc0fcedbbdc4e339d110dd0472ff704c1694e
2,672
pm
Perl
storage/hp/p2000/xmlapi/mode/components/fru.pm
petneli/centreon-plugins
d131e60a1859fdd0e959623de56e6e7512c669af
[ "Apache-2.0" ]
null
null
null
storage/hp/p2000/xmlapi/mode/components/fru.pm
petneli/centreon-plugins
d131e60a1859fdd0e959623de56e6e7512c669af
[ "Apache-2.0" ]
null
null
null
storage/hp/p2000/xmlapi/mode/components/fru.pm
petneli/centreon-plugins
d131e60a1859fdd0e959623de56e6e7512c669af
[ "Apache-2.0" ]
null
null
null
# # Copyright 2021 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for # service performance. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # package storage::hp::p2000::xmlapi::mode::components::fru; use strict; use warnings; sub check { my ($self) = @_; $self->{output}->output_add(long_msg => "Checking frus"); $self->{components}->{fru} = {name => 'frus', total => 0, skip => 0}; return if ($self->check_filter(section => 'fru')); my ($entries) = $self->{custom}->get_infos( cmd => 'show frus', base_type => 'enclosure-fru', properties_name => '^fru-status|fru-location|oid$', no_quit => 1, ); my ($results, $duplicated) = ({}, {}); foreach (@$entries) { my $name = $_->{'fru-location'}; $name = $_->{'fru-location'} . ':' . $_->{oid} if (defined($duplicated->{$name})); if (defined($results->{$name})) { $duplicated->{$name} = 1; my $instance = $results->{$name}->{'fru-location'} . ':' . $results->{$name}->{oid}; $results->{$instance} = $results->{$name}; delete $results->{$name}; $name = $_->{'fru-location'} . ':' . $_->{oid}; } $results->{$name} = $_; } foreach my $instance (keys %$results) { next if ($self->check_filter(section => 'fru', instance => $instance)); $self->{components}->{fru}->{total}++; my $state = $results->{$instance}->{'fru-status'}; $self->{output}->output_add( long_msg => sprintf( "fru '%s' status is %s [instance: %s]", $instance, $state, $instance ) ); my $exit = $self->get_severity(section => 'fru', value => $state); if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) { $self->{output}->output_add( severity => $exit, short_msg => sprintf("Fru '%s' status is '%s'", $instance, $state) ); } } } 1;
34.701299
96
0.560629
73eb667eb386e344188d39b9d492e70c4122f3a6
12,957
pm
Perl
modules/Bio/EnsEMBL/Analysis/RunnableDB/ExonerateCloneEnds.pm
dbolser-ebi/ensembl-analysis
7e541771c7691da155a0265838b22b2ccbfdec1e
[ "Apache-2.0" ]
null
null
null
modules/Bio/EnsEMBL/Analysis/RunnableDB/ExonerateCloneEnds.pm
dbolser-ebi/ensembl-analysis
7e541771c7691da155a0265838b22b2ccbfdec1e
[ "Apache-2.0" ]
null
null
null
modules/Bio/EnsEMBL/Analysis/RunnableDB/ExonerateCloneEnds.pm
dbolser-ebi/ensembl-analysis
7e541771c7691da155a0265838b22b2ccbfdec1e
[ "Apache-2.0" ]
null
null
null
=head1 LICENSE # Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute # Copyright [2016-2018] EMBL-European Bioinformatics Institute # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. =head1 CONTACT Please email comments or questions to the public Ensembl developers list at <http://lists.ensembl.org/mailman/listinfo/dev>. Questions may also be sent to the Ensembl help desk at <http://www.ensembl.org/Help/Contact>. =cut =head1 NAME Bio::EnsEMBL::Analysis::RunnableDB::ExonerateCloneEnds - =head1 SYNOPSIS Should not be used directly. Might be called from MapCloneEnds.pm my $clone = Bio::EnsEMBL::Analysis::RunnableDB::ExonerateCloneEnds->new( -db => $refdb, -analysis => $analysis_obj, -database => $EST_GENOMIC, ); $clone->fetch_input(); $clone->run(); $clone->write_output(); #writes to DB =head1 DESCRIPTION This object maps clone sequences to a genome,and write the resulting alignments as DNA align Features. =head1 METHODS =head1 APPENDIX =cut package Bio::EnsEMBL::Analysis::RunnableDB::ExonerateCloneEnds; use warnings ; use strict; use Bio::EnsEMBL::Utils::Exception qw(throw warning); use Bio::EnsEMBL::Analysis::RunnableDB; use Bio::EnsEMBL::Analysis::Runnable::ExonerateCloneEnds; use Bio::EnsEMBL::Analysis::Config::ExonerateCloneEnds; use Bio::EnsEMBL::Pipeline::SeqFetcher::OBDAIndexSeqFetcher; use Bio::SeqIO; use Bio::DB::Flat::OBDAIndex; use Bio::Seq; use vars qw(@ISA); @ISA = qw (Bio::EnsEMBL::Analysis::RunnableDB); ############################################################ sub new { my ( $class, @args ) = @_; my $self = $class->SUPER::new(@args); $self->read_and_check_config($CLONE_CONFIG); return $self; } sub fetch_input { my ($self, $chunkLine) = @_; my $logic = $self->analysis->logic_name; my $seqFetchDB = $self->SEQFETCHDB; my $seqfetcher = Bio::EnsEMBL::Pipeline::SeqFetcher::OBDAIndexSeqFetcher->new( -db => [($seqFetchDB)], -format => 'fasta', ); if ($self->input_id =~ /\w+:[\w\_\.]+:([\w\.]+):([-\w]+):([-\w]+):[-\w]+:(\w+)/){ my $target_id= $1; my $target_start = $2; my $target_end = $3; my $clone_id = $4; my $db = new Bio::EnsEMBL::DBSQL::DBAdaptor(%{ $self->DNADB }); my $slice_adaptor = $db->get_SliceAdaptor(); my $target_seq = $slice_adaptor->fetch_by_region('toplevel',$target_id, $target_start, $target_end); my $query_seq = $seqfetcher->get_Seq_by_acc($clone_id); ########################################## # set up the target (genome) ########################################## my @target = (); push (@target,$target_seq); ########################################## # set up the query (dna clone seq) ########################################## my @query = (); push (@query,$query_seq); ########################################## # setup the runnable ########################################## my %parameters = %{ $self->parameters_hash }; if ( not exists( $parameters{-options} ) and defined $self->OPTIONS ){ $parameters{-options} = ''; } $parameters{-options} = $self->OPTIONS; print STDERR "PROGRAM FILE: ".$self->analysis->program_file."\n"; my $runnable = Bio::EnsEMBL::Analysis::Runnable::ExonerateCloneEnds->new( -program => $self->analysis->program_file, -analysis => $self->analysis, -target_seqs => \@target, -query_type => $self->QUERYTYPE, -query_seqs => \@query, %parameters, ); $self->runnable($runnable); }else{ ########################################## # set up the target (genome) ########################################## my $target = $self->GENOMICSEQS; if ( -e $target ){ if(-d $target ) { warn ("Target $target is a directory of files\n"); }elsif (-s $target){ warn ("Target $target is a whole-genome file\n"); }else{ throw("'$target' isn't a file or a directory?"); } } else { throw("'$target' could not be found"); } ########################################## # set up the query (dna clone seq) ########################################## my @queryseqs = (); my $iid_regexp = $self->IIDREGEXP; #print $iid_regexp,"\n"; if (not defined $iid_regexp){ throw("You must define IIDREGEXP in config to enable inference of chunk number and total from your chunklist file" ) } my ( $chunk_number, $chunk_total ) = $self->input_id =~ /$iid_regexp/; # Read the line corresponding to chunk_number and parse the input ids from there my $seq_ids = @{$chunkLine}[$chunk_number]; my @ids_list = split (/:/,$seq_ids); foreach my $id(@ids_list){ # Get the sequence object for each of the query sequences my $query_seq = $seqfetcher->get_Seq_by_acc($id); # Add each query sequence object to the array of sequences that will be passed to exonerate push (@queryseqs, $query_seq); } ########################################## # setup the runnable ########################################## my %parameters = %{ $self->parameters_hash }; if ( not exists( $parameters{-options} ) and defined $self->OPTIONS ){ $parameters{-options} = ''; } $parameters{-options} = $self->OPTIONS; print STDERR "PROGRAM FILE: ".$self->analysis->program_file."\n"; my $runnable = Bio::EnsEMBL::Analysis::Runnable::ExonerateCloneEnds->new( -program => $self->analysis->program_file, -analysis => $self->analysis, -target_file => $target, -query_type => $self->QUERYTYPE, -query_seqs => \@queryseqs, %parameters, ); $self->runnable($runnable); } } ############################################################ sub run { my ($self) = @_; my @clone_features; throw("Can't run - no runnable objects") unless ( $self->runnable ); my $runnable = @{ $self->runnable }[0]; $runnable->run; @clone_features = @{$runnable->output}; # #Replace the 'dummy' clone array and probe objects in the #CloneFeature objects with the 'real' instances found in #the populate... method $self->output(\@clone_features); $self->clone_features(\@clone_features); $self->clean_clone_features(@{$self->clone_features}); } ############################################################ sub write_output { my ( $self, @output ) = @_; my $outdb = $self->create_output_db; my $clone_feature_adaptor = $outdb->get_DnaAlignFeatureAdaptor; #Add analysis, slices to DnaAlign_features, and make #sure they're pointing at the persistent array instances #instead of the fake arrays they were created with $self->clean_clone_features(@{$self->clone_features}); foreach my $clone_feature (@{$self->clone_features}){ eval{ $clone_feature_adaptor->store($clone_feature) }; if ($@) { $self->throw("Unable to store clone feature!\n $@"); } } } ############################################################ sub clean_clone_features { my ( $self, @clone_features ) = @_; my $db = $self->create_output_db; my $slice_adaptor = $db->get_SliceAdaptor; my %genome_slices; foreach my $clone_feature (@clone_features) { $clone_feature->analysis( $self->analysis ); # get the slice based on the seqname stamped on in the runnable my $slice_id = $clone_feature->seqname; if ( not exists $genome_slices{$slice_id} ) { # assumes genome seqs were named in the Ensembl API Slice naming # convention, i.e. coord_syst:version:seq_reg_id:start:end:strand $genome_slices{$slice_id} = $slice_adaptor->fetch_by_name($slice_id); } my $slice = $genome_slices{$slice_id}; $clone_feature->slice($slice); } return @clone_features; } sub query_file { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_query_file'} = $value; } if ( exists( $self->{'_query_file'} ) ) { return $self->{'_query_file'}; } else { return undef; } } sub create_output_db { my ($self) = @_; my $outdb; my $dnadb; if ( $self->OUTDB && $self->DNADB) { $dnadb = new Bio::EnsEMBL::DBSQL::DBAdaptor(%{ $self->OUTDB }); $outdb = new Bio::EnsEMBL::DBSQL::DBAdaptor(%{ $self->OUTDB }, -dnadb => $dnadb ); } elsif( $self->OUTDB) { $outdb = new Bio::EnsEMBL::DBSQL::DBAdaptor(%{ $self->OUTDB }); } else { $outdb = $self->db; } return $outdb; } ############################################################# sub clone_features { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_clone_features'} = $value; } if ( exists( $self->{'_clone_features'} ) ) { return $self->{'_clone_features'}; } else { return undef; } } ############################################################# # Declare and set up config variables ############################################################# sub read_and_check_config { my $self = shift; $self->SUPER::read_and_check_config($CLONE_CONFIG); ########## # CHECKS ########## my $logic = $self->analysis->logic_name; # check that compulsory options have values foreach my $config_var ( qw( QUERYSEQS QUERYTYPE GENOMICSEQS CHUNKSLIST SEQFETCHDB ) ){ if ( not defined $self->$config_var ){ throw("You must define $config_var in config for logic '$logic'"); } } # output db does not have to be defined, but if it is, it should be a hash if ($self->OUTDB && ref( $self->OUTDB ) ne "HASH") { throw("OUTDB in config for '$logic' must be a hash ref of db connection pars."); } if ( $self->DNADB and ref( $self->DNADB ) ne "HASH" ) { throw("DNADB in config for '$logic' must be a hash ref of db connection pars."); } } sub QUERYSEQS { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_CONFIG_QUERYSEQS'} = $value; } if ( exists( $self->{'_CONFIG_QUERYSEQS'} ) ) { return $self->{'_CONFIG_QUERYSEQS'}; } else { return undef; } } sub QUERYTYPE { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_CONFIG_QUERYTYPE'} = $value; } if ( exists( $self->{'_CONFIG_QUERYTYPE'} ) ) { return $self->{'_CONFIG_QUERYTYPE'}; } else { return undef; } } sub GENOMICSEQS { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_CONFIG_GENOMICSEQS'} = $value; } if ( exists( $self->{'_CONFIG_GENOMICSEQS'} ) ) { return $self->{'_CONFIG_GENOMICSEQS'}; } else { return undef; } } sub IIDREGEXP { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_CONFIG_IIDREGEXP'} = $value; } if ( exists( $self->{'_CONFIG_IIDREGEXP'} ) ) { return $self->{'_CONFIG_IIDREGEXP'}; } else { return undef; } } sub OUTDB { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_CONFIG_OUTDB'} = $value; } if ( exists( $self->{'_CONFIG_OUTDB'} ) ) { return $self->{'_CONFIG_OUTDB'}; } else { return undef; } } sub DNADB { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_CONFIG_DNADB'} = $value; } if ( exists( $self->{'_CONFIG_DNADB'} ) ) { return $self->{'_CONFIG_DNADB'}; } else { return undef; } } sub OPTIONS { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_CONFIG_OPTIONS'} = $value; } if ( exists( $self->{'_CONFIG_OPTIONS'} ) ) { return $self->{'_CONFIG_OPTIONS'}; } else { return undef; } } sub CHUNKSLIST { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_CONFIG_CHUNKSLIST'} = $value; } if ( exists( $self->{'_CONFIG_CHUNKSLIST'} ) ) { return $self->{'_CONFIG_CHUNKSLIST'}; } else { return undef; } } sub SEQFETCHDB { my ( $self, $value ) = @_; if ( defined $value ) { $self->{'_CONFIG_SEQFETCHDB'} = $value; } if ( exists( $self->{'_CONFIG_SEQFETCHDB'} ) ) { return $self->{'_CONFIG_SEQFETCHDB'}; } else { return undef; } } ############################################### ### end of config ############################################### 1;
24.083643
122
0.55607
ed645647a12e496958044af421fa7c2b8de6f0f8
138
t
Perl
t/00_compile.t
hideo55/p5-Digest-SpookyHash
4c4c6768290f91c2512671df87c0008a263851bd
[ "Artistic-1.0" ]
null
null
null
t/00_compile.t
hideo55/p5-Digest-SpookyHash
4c4c6768290f91c2512671df87c0008a263851bd
[ "Artistic-1.0" ]
null
null
null
t/00_compile.t
hideo55/p5-Digest-SpookyHash
4c4c6768290f91c2512671df87c0008a263851bd
[ "Artistic-1.0" ]
null
null
null
use Test::More tests => 1; BEGIN { use_ok( 'Digest::SpookyHash' ); } diag( "Testing Digest::SpookyHash $Digest::SpookyHash::VERSION" );
17.25
66
0.681159
ed50585b9bb6bf49e8292052bff72a6da92cee0a
297
pl
Perl
KOST-Val/src/main/resources_notJar/resources/ExifTool-10.15/Perl/lib/unicore/lib/InOsmany.pl
rebplu/KOST-VAL
1537125425068d5faec3bc4f5263df715956ae76
[ "BSD-3-Clause-No-Nuclear-Warranty" ]
null
null
null
KOST-Val/src/main/resources_notJar/resources/ExifTool-10.15/Perl/lib/unicore/lib/InOsmany.pl
rebplu/KOST-VAL
1537125425068d5faec3bc4f5263df715956ae76
[ "BSD-3-Clause-No-Nuclear-Warranty" ]
null
null
null
KOST-Val/src/main/resources_notJar/resources/ExifTool-10.15/Perl/lib/unicore/lib/InOsmany.pl
rebplu/KOST-VAL
1537125425068d5faec3bc4f5263df715956ae76
[ "BSD-3-Clause-No-Nuclear-Warranty" ]
null
null
null
# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! # This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # # This file supports: # \p{InOsmanya} (and fuzzy permutations) # # Meaning: Block 'Osmanya' # return <<'END'; 10480 104AF Osmanya END
21.214286
62
0.619529
ed14d26f38a5dae86c385c7e5bcbb9167c1e998f
4,412
pl
Perl
prolog/expert.pl
ar0ne/labs
d3dec74c6a8a75cdc6a2a4ef2db3a7b68f8e43c4
[ "PHP-3.0", "PHP-3.01" ]
1
2017-11-08T15:01:26.000Z
2017-11-08T15:01:26.000Z
prolog/expert.pl
ar0ne/labs
d3dec74c6a8a75cdc6a2a4ef2db3a7b68f8e43c4
[ "PHP-3.0", "PHP-3.01" ]
null
null
null
prolog/expert.pl
ar0ne/labs
d3dec74c6a8a75cdc6a2a4ef2db3a7b68f8e43c4
[ "PHP-3.0", "PHP-3.01" ]
null
null
null
:- dynamic(progress/2). main :- intro, reset_answers, find_solution(Solution), describe(Solution), nl. intro :- write('У вас сегодня экзамен, а вы проснулись слишком поздно'), nl, write('Вам естественно, надо успеть на него, но'), nl, write('Как? Мы постараемся дать вам совет, исходя из сложившейся ситуации '), nl, write('Вам поступить, но для этого вы должны предоставить всю информацию, '), nl, write('Итак начнем...'), nl. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% find_solution(Solution) :- solution(Solution), !. % Rules for the knowledge base solution(do_nothing) :- are_you_really_late(no). solution(take_taxi) :- big_late, main_exam. solution(take_taxi_partially) :- \+ big_late, main_exam. solution(take_common_transport) :- \+ main_exam. solution(can_not_help) :- !. describe(do_nothing) :- write('Все в порядке, желаю вам ни пуха.'), nl. describe(take_taxi) :- write('Берите такси на весь путь до института! В такой ситуации деньги не важны'), nl. describe(take_common_transport) :- write('Успокойтесь, на не очень важный экзамен не стоит сильно спешить. Поверьте вам простят ваше опаздание'), write(' или даже отсутсвие. Так что неспеша поезжайте на общественном транспорте'), nl. describe(take_taxi_partially) :- write('Не волнуйтесь, все еще будет хорошо. Вам стоит взять такси на часть пути. Например, до какого-нибудь'), write(' узлового пункта (до метро, авт., остановки'), nl. describe(can_not_help) :- write('Не могу ничего подсказать...'), nl. answer(yes) :- write('Yes'). answer(no) :- write('No'). question(are_you_really_late) :- write('Скажите, вы действительно опаздываете'), nl. question(how_long_on_common):- write('Сколько минут вам добираться до института на общественном транспорте'), nl. question(how_long_on_walk):- write('Сколько минут вам приходится идти пешком'), nl. question(how_long_by_metro):- write('Сколько минут вам приходится проводить в метро'), nl. question(how_long_by_bus):- write('Сколько минут вам приходится проводить в автобусе'), nl. question(only_good_marks) :- write('На предстоящем экзамене ставят только 4 и выше'), nl. question(what_veroyatn) :- write('Какова объективная вероятность получения вами желаемой оценки'), nl. are_you_really_late(Answer) :- progress(are_you_really_late, Answer). are_you_really_late(Answer) :- \+ progress(are_you_really_late, _), ask(are_you_really_late, Answer, [yes, no]). only_good_marks(Answer) :- progress(only_good_marks, Answer). only_good_marks(Answer) :- \+ progress(only_good_marks, _), ask(only_good_marks, Answer, [yes, no]). big_late :- asked_about_time, is_late. big_late :- \+ asked_about_time, ask(how_long_on_common), ask(how_long_on_walk), ask(how_long_by_metro), ask(how_long_by_bus), is_late. asked_about_time :- progress(how_long_on_common, _), progress(how_long_on_walk, _), progress(how_long_by_metro, _), progress(how_long_by_bus, _). is_late :- progress(how_long_on_common, Common), progress(how_long_on_walk, OnWalk), progress(how_long_by_metro, ByMetro), progress(how_long_by_bus, ByBus), % format('~w, ~w, ~w, ~w', [Common, OnWalk, ByMetro, ByBus]), nl, Common < OnWalk + ByMetro + ByBus + 15. is_small_chance :- progress(what_veroyatn, Veroyatn), Veroyatn < 90. small_chance :- progress(what_veroyatn, _). small_chance :- \+ progress(what_veroyatn, _), ask(what_veroyatn), is_small_chance. main_exam :- only_good_marks(no). main_exam :- small_chance. main_exam :- small_chance, only_good_marks(no). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% reset_answers :- retract(progress(_, _)), fail. reset_answers. answers([], _). answers([First|Rest], Index) :- write(Index), write(' '), answer(First), nl, NextIndex is Index + 1, answers(Rest, NextIndex). parse(0, [First|_], First). parse(Index, [First|Rest], Response) :- Index > 0, NextIndex is Index - 1, parse(NextIndex, Rest, Response). ask(Question, Answer, Choices) :- question(Question), answers(Choices, 0), read(Index), parse(Index, Choices, Response), asserta(progress(Question, Response)), Response = Answer. ask(Question) :- question(Question), read(Response), asserta(progress(Question, Response)).
28.282051
114
0.684044
ed056c74a8a5a6fb87aa946adc5fbffd96442455
21,183
pl
Perl
StkExtensionPlugins/DragModels/WSC/Drag.N-Plate_Cube.Perl.pl
jjvergere/STKCodeExamples
b1144a1902e8f3d9d98379d37eefaba6743afb8d
[ "Adobe-2006" ]
null
null
null
StkExtensionPlugins/DragModels/WSC/Drag.N-Plate_Cube.Perl.pl
jjvergere/STKCodeExamples
b1144a1902e8f3d9d98379d37eefaba6743afb8d
[ "Adobe-2006" ]
null
null
null
StkExtensionPlugins/DragModels/WSC/Drag.N-Plate_Cube.Perl.pl
jjvergere/STKCodeExamples
b1144a1902e8f3d9d98379d37eefaba6743afb8d
[ "Adobe-2006" ]
null
null
null
# ===================================================== # Copyright 2010, Analytical Graphics, Inc. # ===================================================== ######################################################################### # # # N plate drag model. This model uses a 6-sided cube, 20 m^2 per side # # # # Computes Reflectance and Partials in Body Coordinates # # # # This model solves for 1 scale parameter # # # # # # Note: Turning on the DebugMode will output accelerations to the file # # given by the DebugFile attribute. This attribute # # only opens an existing file; it does not create a new file. # # So to output Debug data this file needs to be created before # # running the plugin. The default filename is # # 'C:\Temp\Drag_Plugin_Debug.txt' # ######################################################################### # This script requires Perl 5.8.0 or higher # This first section of code (before any of the subroutines or methods) is where all # the global variables are initialized require 5.8.0; use strict; use Win32; use Win32::OLE::Variant; use IO::Handle; # ========================================== # Reference Frames Enumeration # ========================================== use constant eInertial => 0; use constant eFixed => 1; use constant eLVLH => 2; use constant eNTC => 3; use constant eBodyFrame => 4; # ========================================== # Time Scale Enumeration # ========================================== use constant eUTC => 0; use constant eTAI => 1; use constant eTDT => 2; use constant eUT1 => 3; use constant eSTKEpochSec => 4; use constant eTDB => 5; use constant eGPS => 6; # ========================================== # Log Msg Type Enumeration # ========================================== use constant eLogMsgDebug => 0; use constant eLogMsgInfo => 1; use constant eLogMsgForceInfo => 2; use constant eLogMsgWarning => 3; use constant eLogMsgAlarm => 4; # ========================================== # AgEAttrAddFlags Enumeration # ========================================== use constant eFlagNone => 0; use constant eFlagTransparent => 2; use constant eFlagHidden => 4; use constant eFlagTransient => 8; use constant eFlagReadOnly => 16; use constant eFlagFixed => 32; use constant PI => 3.1415926535897932384; use constant false => 0; use constant true => 1; # ========================================== # Declare Global Variables # ========================================== # These variables are the default values for the Plugin attributes # that are displayed in ODTK. The subroutines at the end of this # code are used to pass the values of these attributes back and forth. my $m_Name = "Drag.N-Plate_Cube.Perl"; my $m_AgUtPluginSite = undef; my $m_AgAttrScope = undef; my $m_CDIndex = -1; my $m_CD = 2.02; my $m_MsgCntr = -1; my $m_Enabled = true; my $m_DebugMode = true; my $m_MsgInterval = 500; my $dirpath = 'C:\Temp'; my $m_DebugFile = $dirpath.'\Drag_Plugin_Debug.txt'; my $m_dcEpochRef; my $lastSec = -202020; # Body frame accelerations my $bx; my $by; my $bz; # Global variables relating to modeling of satellite shape my $Nplate = 6; # Box model # Area of each plate - in this example they are all the same my @Area; # Define each unit vector by modeling our satellite as a 6-sided box my @Nx; my @Ny; my @Nz; sub Message { my $severity = $_[0]; my $msg = $_[1]; if( defined($m_AgUtPluginSite) ) { $m_AgUtPluginSite->Message( $severity, "$msg" ); } } sub DebugMsg { my $msg = $_[0]; #if($m_DebugMode && $m_EvalMsgsOn) if($m_DebugMode) { if($m_MsgCntr % $m_MsgInterval == 0) { Message(eLogMsgDebug, "$msg"); } } } sub writeVec{ my $aVectorRef = $_[0]; my $vecName = $_[1]; printf DEBUGFILE "%10s %20.15e %20.15e %20.15e\n", $vecName, $aVectorRef->[0], $aVectorRef->[1], $aVectorRef->[2]; } sub writeMatrix{ my $aVectorRef = $_[0]; my $vecName = $_[1]; printf DEBUGFILE "%10s %20.15e %20.15e %20.15e\n", $vecName, $aVectorRef->[0], $aVectorRef->[1], $aVectorRef->[2]; printf DEBUGFILE " %20.15e %20.15e %20.15e\n", $aVectorRef->[3], $aVectorRef->[4], $aVectorRef->[5]; printf DEBUGFILE " %20.15e %20.15e %20.15e\n", $aVectorRef->[6], $aVectorRef->[7], $aVectorRef->[8]; } sub outerProduct{ #first vector is columns, 2nd vector is rows # # Result is: # # ax*bx ay*bx az*bx # ax*by ay*by az*by # ax*bz ay*bz az*bz my $aVectorRef = $_[0]; my $bVectorRef = $_[1]; my $cVectorRef = $_[2]; $cVectorRef->[0] = $aVectorRef->[0] * $bVectorRef->[0]; $cVectorRef->[1] = $aVectorRef->[1] * $bVectorRef->[0]; $cVectorRef->[2] = $aVectorRef->[2] * $bVectorRef->[0]; $cVectorRef->[3] = $aVectorRef->[0] * $bVectorRef->[1]; $cVectorRef->[4] = $aVectorRef->[1] * $bVectorRef->[1]; $cVectorRef->[5] = $aVectorRef->[2] * $bVectorRef->[1]; $cVectorRef->[6] = $aVectorRef->[0] * $bVectorRef->[2]; $cVectorRef->[7] = $aVectorRef->[1] * $bVectorRef->[2]; $cVectorRef->[8] = $aVectorRef->[2] * $bVectorRef->[2]; } sub vecTimesMatrix{ # # Input vector a: # ax,ay,az # # Input matrix b: # bxx bxy bxz # byx byy byz # bzx bzy bzz # # Result is vector: # # ax*bxx+ay*byx+az*bzx # ax*bxy+ay*byy+az*byz # ax*bxz+ay*byz+az*bzz my $aVectorRef = $_[0]; my $bVectorRef = $_[1]; my $cVector = $_[2]; #printf DEBUGFILE "vecXmat: a[0] = %20.15e\n", $aVectorRef->[0]; #printf DEBUGFILE "vecXmat: b[0] = %20.15e\n", $bVectorRef->[0]; #printf DEBUGFILE "vecXmat: c[0] = %20.15e\n", $cVector->[0]; $cVector->[0] = $aVectorRef->[0] * $bVectorRef->[0] + $aVectorRef->[1] * $bVectorRef->[3] + $aVectorRef->[2] * $bVectorRef->[6]; $cVector->[1] = $aVectorRef->[0] * $bVectorRef->[1] + $aVectorRef->[1] * $bVectorRef->[4] + $aVectorRef->[2] * $bVectorRef->[7]; $cVector->[2] = $aVectorRef->[0] * $bVectorRef->[2] + $aVectorRef->[1] * $bVectorRef->[5] + $aVectorRef->[2] * $bVectorRef->[8]; } sub vecTimesMatrix2{ # # Input vector a: # ax,ay,az # # Input matrix b: # bxx bxy bxz # byx byy byz # bzx bzy bzz # # Result is vector: # # ax*bxx+ay*byx+az*bzx # ax*bxy+ay*byy+az*byz # ax*bxz+ay*byz+az*bzz my $aVectorRef = $_[0]; my $bVectorRef = $_[1]; my $cVector = $_[2]; #printf DEBUGFILE "vecXmat2: a[0] = %20.15e\n", $aVectorRef->[0]; #printf DEBUGFILE "vecXmat2: b[0] = %20.15e\n", $bVectorRef->[0]; #printf DEBUGFILE "vecXmat2: c[0] = %20.15e\n", $cVector->[0]; $cVector->[0] = $aVectorRef->[0] * $bVectorRef->[0] + $aVectorRef->[1] * $bVectorRef->[3] + $aVectorRef->[2] * $bVectorRef->[6]; $cVector->[1] = $aVectorRef->[0] * $bVectorRef->[1] + $aVectorRef->[1] * $bVectorRef->[4] + $aVectorRef->[2] * $bVectorRef->[7]; $cVector->[2] = $aVectorRef->[0] * $bVectorRef->[2] + $aVectorRef->[1] * $bVectorRef->[5] + $aVectorRef->[2] * $bVectorRef->[8]; } sub computeDrag{ my $Result = $_[0]; my $cd = $_[1]; my $incidentVecArrayRef = $_[2]; #Incident Vector onto Body #writeVec($incidentVecArrayRef, "Incident"); # Copy incident vector to local vel vector; vel vector is in direction of motion, # opposite of returned vector which is in direction of force on satellite my @velVector; push @velVector, $incidentVecArrayRef->[0] * -1; push @velVector, $incidentVecArrayRef->[1] * -1; push @velVector, $incidentVecArrayRef->[2] * -1; my @posParts; push @posParts, 0.0; push @posParts, 0.0; push @posParts, 0.0; push @posParts, 0.0; push @posParts, 0.0; push @posParts, 0.0; push @posParts, 0.0; push @posParts, 0.0; push @posParts, 0.0; my @velParts; push @velParts, 0.0; push @velParts, 0.0; push @velParts, 0.0; push @velParts, 0.0; push @velParts, 0.0; push @velParts, 0.0; push @velParts, 0.0; push @velParts, 0.0; push @velParts, 0.0; my $x = 0; my $y = 0; my $z = 0; my $j = 0; my $k = 0; my $incidentDirPosPartialsArrayRef = $Result->IncidentDirectionBodyCompPosPartials_Array(); my $incidentDirVelPartialsArrayRef = $Result->IncidentDirectionBodyCompVelPartials_Array(); #all calcs in the for loop below are in the body frame for ($j = 0; $j <= $Nplate-1; $j++) { #take dot product of velocity vector and normal vector for each plate #(no need to divide by magnitudes, since both are unit vectors) my $dot = $velVector[0] * $Nx[$j] + $velVector[1] * $Ny[$j] + $velVector[2] * $Nz[$j]; #printf DEBUGFILE "Plate, dot prod: %d %20.15e\n", $j+1, $dot; if ($dot > 0.0) { #printf DEBUGFILE "Plate, dot prod: %d %20.15e\n", $j+1, $dot; # Subtraction puts returned reflectance in direction of force, opposite velocity $x -= $Area[$j] * $dot * $Nx[$j]; $y -= $Area[$j] * $dot * $Ny[$j]; $z -= $Area[$j] * $dot * $Nz[$j]; #printf DEBUGFILE "areas: %20.15e, %20.15e, %20.15e\n", $x, $y, $z; my $mult = $Area[$j] * $cd; #printf DEBUGFILE "multiplier: %20.15e, dot prod: %20.15e\n", $mult, $dot; my @nhat = ($Nx[$j], $Ny[$j], $Nz[$j]); # Add each plate's contribution to incidence position & velocity partials if(defined($incidentDirPosPartialsArrayRef)) { my @pos1 = (0,0,0); # nhat * incident partials my @pos2 = (0,0,0,0,0,0,0,0,0); # pos1 * nhat #writeVec(\@nhat, "nhat"); #writeMatrix($incidentDirPosPartialsArrayRef, "IncidentPs"); vecTimesMatrix2(\@nhat, $incidentDirPosPartialsArrayRef, \@pos1); #writeVec(\@pos1, "pos1"); outerProduct(\@pos1, \@nhat, \@pos2); #writeMatrix(\@pos2, "pos2"); for ($k=0; $k<9; $k++) { $posParts[$k] += $mult * $pos2[$k]; } #writeMatrix(\@posParts, "posParts1"); } if(defined($incidentDirVelPartialsArrayRef)) { my @vel1 = (0,0,0); # nhat * incident partials my @vel2 = (0,0,0,0,0,0,0,0,0); # vel1 * nhat vecTimesMatrix2(\@nhat, $incidentDirVelPartialsArrayRef, \@vel1); outerProduct(\@vel1, \@nhat, \@vel2); for ($k=0; $k<9; $k++) { $velParts[$k] += $mult * $vel2[$k]; } #writeMatrix(\@velParts, "velParts1"); } } } # end of loop over plates if($m_CDIndex > -1) { #printf DEBUGFILE "CD partials: %20.15e, %20.15e, %20.15e\n", $x, $y, $z; $Result->SetReflectanceInBodyParamPartials($m_CDIndex, $x, $y, $z); } $bx = $x * $cd; $by = $y * $cd; $bz = $z * $cd; $Result->SetReflectanceInBody($bx, $by, $bz); # printf DEBUGFILE "Cd: %10.3f\nIncidence: %20.15e %20.15e %20.15e \n", # $cd, $incidentVecArrayRef->[0], $incidentVecArrayRef->[1], $incidentVecArrayRef->[2]; printf DEBUGFILE "reflectance: %20.15e, %20.15e, %20.15e\n", $bx, $by, $bz; # Set the Position Partials if(defined($incidentDirPosPartialsArrayRef)) { #writeMatrix($incidentDirPosPartialsArrayRef, "IncBodyPPs"); $Result->SetReflectanceBodyCompPosPartials( $posParts[0], $posParts[1], $posParts[2], $posParts[3], $posParts[4], $posParts[5], $posParts[6], $posParts[7], $posParts[8]); #writeMatrix(\@posParts, "OutBodyPPs"); } # Set the Velocity Partials if(defined($incidentDirVelPartialsArrayRef)) { #writeMatrix($incidentDirVelPartialsArrayRef, "IncBodyVPs"); $Result->SetReflectanceBodyCompVelPartials( $velParts[0], $velParts[1], $velParts[2], $velParts[3], $velParts[4], $velParts[5], $velParts[6], $velParts[7], $velParts[8]); #writeMatrix(\@velParts, "OutBodyVPs"); } $m_Enabled = defined($Result); } # ======================== # GetPluginConfig method # ======================== sub GetPluginConfig{ my $AgAttrBuilder = $_[0]; if( !defined($m_AgAttrScope) ) { $m_AgAttrScope = $AgAttrBuilder->NewScope(); # # "DragCoefficient" was added for STK as there is no way to # modify CD via GUI, but should be removed when using with ODTK # See BUG53691. # # $AgAttrBuilder->AddDoubleDispatchProperty ( $m_AgAttrScope, # "DragCoefficient", # "Drag Coefficient", # "DragCoefficient", # eFlagNone ); # =========================== # General Plugin attributes # =========================== $AgAttrBuilder->AddBoolDispatchProperty ( $m_AgAttrScope, "PluginEnabled", "If the plugin is enabled or has experienced an error", "Enabled", eFlagNone ); $AgAttrBuilder->AddBoolDispatchProperty ( $m_AgAttrScope, "DebugMode", "Turn debug messages on or off", "DebugMode", eFlagNone ); $AgAttrBuilder->AddFileDispatchProperty ( $m_AgAttrScope, "DebugFile", "Debug output file", "DebugFile", "", "*.txt", eFlagNone ); # ============================== # Messaging related attributes # ============================== $AgAttrBuilder->AddIntDispatchProperty ( $m_AgAttrScope, "MessageInterval", "The interval at which to send messages during propagation in Debug mode", "MsgInterval", eFlagNone ); } return $m_AgAttrScope; } # =========================== # VerifyPluginConfig method # =========================== sub VerifyPluginConfig{ my $AgUtPluginConfigVerifyResult = $_[0]; my $Result = true; my $Message = "Ok"; $AgUtPluginConfigVerifyResult->{Result} = $Result; $AgUtPluginConfigVerifyResult->{Message} = $Message; } # ====================== # Init Method # ====================== sub Init{ my $AgUtPluginSite = $_[0]; $m_AgUtPluginSite = $AgUtPluginSite; if( defined($m_AgUtPluginSite) ) { if( $m_DebugMode == true ) { if( $m_Enabled == true ) { Message( eLogMsgInfo, "$m_Name.Init(): Enabled" ); } else { Message( eLogMsgInfo, "$m_Name.Init(): Disabled because Enabled flag is False" ); } } elsif($m_Enabled == false) { Message( eLogMsgAlarm, "$m_Name.Init(): Disabled because Enabled flag is False" ); } } return $m_Enabled; } # ====================== # PreCompute Method # ====================== # sub PreCompute{ my $AgAsHpopPluginResult = $_[0]; # This is an IAgAsDragModelResult interface if( $m_Enabled == true ) { if( defined($AgAsHpopPluginResult) ) { # Assemble area of each plate and plate normal vectors in the body frame # Box Model (6-sided cube) @Area = (); # reset array push @Area, 20; # m^2 push @Area, 20; # m^2 push @Area, 20; # m^2 push @Area, 20; # m^2 push @Area, 20; # m^2 push @Area, 20; # m^2 @Nx = (); # reset array @Ny = (); # reset array @Nz = (); # reset array # Imagine X is facing you, Y points to the right, and Z points up. # Plate 1 - front face, +X push @Nx, 1; push @Ny, 0; push @Nz, 0; # Plate 2 - right side, +Y push @Nx, 0; push @Ny, 1; push @Nz, 0; # Plate 3 - top face, +Z push @Nx, 0; push @Ny, 0; push @Nz, 1; # Plate 4 - back face, -X push @Nx, -1; push @Ny, 0; push @Nz, 0; # Plate 5 - left side, -Y push @Nx, 0; push @Ny, -1; push @Nz, 0; # Plate 6 - bottom, -Z push @Nx, 0; push @Ny, 0; push @Nz, -1; if( $m_DebugMode == true ) { Message(eLogMsgDebug, "$m_Name.PreCompute(): Enabled"); # Open debug file and write header open(DEBUGFILE,">$m_DebugFile"); #print DEBUGFILE "My N-Plate Drag Debug File \n"; #print DEBUGFILE "Plugin Model: $m_Name \n"; #print DEBUGFILE "Message Interval: $m_MsgInterval \n"; my $dateArrayRef = $AgAsHpopPluginResult->Date_Array(eUTC); #printf DEBUGFILE "Epoch: %4d.%03d.%02d:%02d:%06.3f UTCG \n", # $dateArrayRef->[0], $dateArrayRef->[1], # $dateArrayRef->[3], $dateArrayRef->[4], $dateArrayRef->[5]; $m_dcEpochRef = $AgAsHpopPluginResult->DayCount_Array(eUTC); $lastSec = -202020; #print DEBUGFILE "\n"; #print DEBUGFILE " Acceleration in body frame\n"; #print DEBUGFILE " Elapsed Time X Y Z\n"; #print DEBUGFILE " (sec) (m/sec^2) ( m/sec^2) ( m/sec^2)\n"; } } elsif( $m_DebugMode == true ) { Message( eLogMsgDebug, "$m_Name.PreCompute(): Disabled" ); } } return $m_Enabled; } # ================= # Evaluate Method # ================= # This method is called at every integration step over the propagation. # This method calls the computeSRP subroutine (above) sub Evaluate{ my $Result = $_[0]; # This is an IAgAsDragModelResultEval interface my $cd = 0; if($m_Enabled == true && defined($Result) ) { if($m_CDIndex > -1) { $cd = $Result->ParameterValue($m_CDIndex); } my $incidentVecArrayRef = $Result->IncidentDirectionInBody_Array(); computeDrag($Result, $cd, $incidentVecArrayRef); if( $m_Enabled != true ) { DebugMsg("enabled fail") } if( $m_Enabled == true && $m_DebugMode == true && defined($Result) ) { if( ($m_MsgCntr % $m_MsgInterval) == 0) { my $dcRef = $Result->DayCount_Array(eUTC); my $secs = ($dcRef->[0] - $m_dcEpochRef->[0])*86400 + ($dcRef->[1] - $m_dcEpochRef->[1]); #printf DEBUGFILE "%12.3f %17.10e %17.10e %17.10e \n", # $secs, $bx, $by, $bz; #printf DEBUGFILE "incidentVecArrayRef: %17.10e %17.10e %17.10e\n", # $incidentVecArrayRef->[0], $incidentVecArrayRef->[1], $incidentVecArrayRef->[2]; DEBUGFILE->autoflush(1); } $m_MsgCntr++; } } return $m_Enabled; } # ======================================================== # PostCompute Method # ======================================================== sub PostCompute { my $Result = $_[0]; # This is an IAgAsDragModelResult interface if( $m_DebugMode == true ) { if( $m_Enabled == true ) { Message( eLogMsgDebug, "PostCompute(): called" ); # now close debug file close(DEBUGFILE); } else { Message( eLogMsgDebug, "PostCompute(): Disabled" ); } } return $m_Enabled; } # =========================================================== # Free Method # =========================================================== sub Free(){ if( $m_DebugMode == true ) { if( $m_Enabled == true ) { Message( eLogMsgDebug, "$m_Name.PostPropagate(): Enabled" ); } else { Message( eLogMsgDebug, "$m_Name.PostPropagate(): Disabled" ); } Message( eLogMsgDebug, "$m_Name.Free(): MsgCntr( $m_MsgCntr )" ); } $m_AgUtPluginSite = undef; } # The properties listed below have subroutines that pass Plugin data to and from ODTK # ============================================================= # Name Property # ============================================================= sub GetName{ return $m_Name; } sub SetName{ $m_Name = $_[0]; } # ======================================================= # DragCoeff property # ======================================================= sub GetDragCoefficient { return $m_CD; } sub SetDragCoefficient { $m_CD = $_[0]; } # ============================================================ # Enabled property # ============================================================ sub GetEnabled{ return $m_Enabled; } sub SetEnabled{ $m_Enabled = $_[0]; } # ====================================================== # MsgStatus property # ====================================================== sub GetDebugMode{ return $m_DebugMode; } sub SetDebugMode{ $m_DebugMode = $_[0]; } # ====================================================== # DebugFile property # ====================================================== sub GetDebugFile { return $m_DebugFile; } sub SetDebugFile { $m_DebugFile = $_[0]; } # ======================================================= # EvalMsgInterval property # ======================================================= sub GetMsgInterval{ return $m_MsgInterval; } sub SetMsgInterval{ $m_MsgInterval = $_[0]; } # ====================== # Register Method # ====================== sub Register { my $Result = $_[0]; # This is an IAgAsDragModelResultRegister interface if( defined($Result) ) { if( $m_DebugMode == true ) { my $myMsg = "Register() called, cd = " . $m_CD; #$Result->Message( eLogMsgInfo, "Register() called" ); $Result->Message( eLogMsgInfo, $myMsg ); } $m_CDIndex = $Result->RegisterParameter("CD", $m_CD, 0.0, 20.0, "Unitless"); if($m_CDIndex > -1) { if( $m_DebugMode == true ) { $Result->Message( eLogMsgInfo, "Registered CD as Unitless parameter"); } } else { $Result->Message( eLogMsgAlarm, "Unable to register CD as Unitless parameter"); } } }
26.780025
121
0.535477
73ff0df0e64e23072998fdd6c427ab5eb7cac644
91
t
Perl
t/00_compile.t
gitpan/Net-BitTorrent-DHT
58610833598a03ba4d4925b935cf5feeaf83ed4e
[ "Artistic-2.0" ]
7
2016-08-15T20:22:30.000Z
2021-02-19T22:39:16.000Z
t/00_compile.t
gitpan/Net-BitTorrent-DHT
58610833598a03ba4d4925b935cf5feeaf83ed4e
[ "Artistic-2.0" ]
1
2015-01-31T21:57:03.000Z
2015-01-31T21:57:03.000Z
t/00_compile.t
sanko/net-bittorrent-dht
1284237cd998addff7fffee01ca9e163403dff85
[ "Artistic-2.0" ]
null
null
null
use strict; use Test::More; use_ok $_ for qw( Net::BitTorrent::DHT ); done_testing;
9.1
24
0.659341
73fbdb5151f213df1a97671f131c94ee42199850
16,450
pl
Perl
src/third_party/asio-master/asio/boostify.pl
benety/mongo
203430ac9559f82ca01e3cbb3b0e09149fec0835
[ "Apache-2.0" ]
6
2022-02-04T18:12:24.000Z
2022-03-21T23:57:12.000Z
src/third_party/asio-master/asio/boostify.pl
benety/mongo
203430ac9559f82ca01e3cbb3b0e09149fec0835
[ "Apache-2.0" ]
1
2020-08-09T18:42:14.000Z
2020-08-11T01:57:53.000Z
src/third_party/asio-master/asio/boostify.pl
benety/mongo
203430ac9559f82ca01e3cbb3b0e09149fec0835
[ "Apache-2.0" ]
1
2022-02-08T03:53:23.000Z
2022-02-08T03:53:23.000Z
#!/usr/bin/perl -w use strict; use File::Path; our $boost_dir = "boostified"; sub print_line { my ($output, $line, $from, $lineno) = @_; # Warn if the resulting line is >80 characters wide. if (length($line) > 80) { if ($from =~ /\.[chi]pp$/) { print("Warning: $from:$lineno: output >80 characters wide.\n"); } } # Write the output. print($output $line . "\n"); } sub source_contains_asio_thread_usage { my ($from) = @_; # Open the input file. open(my $input, "<$from") or die("Can't open $from for reading"); # Check file for use of asio::thread. while (my $line = <$input>) { chomp($line); if ($line =~ /asio::thread/) { close($input); return 1; } elsif ($line =~ /^ *thread /) { close($input); return 1; } } close($input); return 0; } sub source_contains_asio_include { my ($from) = @_; # Open the input file. open(my $input, "<$from") or die("Can't open $from for reading"); # Check file for inclusion of asio.hpp. while (my $line = <$input>) { chomp($line); if ($line =~ /# *include [<"]asio\.hpp[>"]/) { close($input); return 1; } } close($input); return 0; } sub copy_source_file { my ($from, $to) = @_; # Ensure the output directory exists. my $dir = $to; $dir =~ s/[^\/]*$//; mkpath($dir); # First determine whether the file makes any use of asio::thread. my $uses_asio_thread = source_contains_asio_thread_usage($from); my $includes_asio = source_contains_asio_include($from); my $is_asio_hpp = 0; $is_asio_hpp = 1 if ($from =~ /asio\.hpp/); my $needs_doc_link = 0; $needs_doc_link = 1 if ($is_asio_hpp); my $is_error_hpp = 0; $is_error_hpp = 1 if ($from =~ /asio\/error\.hpp/); my $is_qbk = 0; $is_qbk = 1 if ($from =~ /.qbk$/); my $is_xsl = 0; $is_xsl = 1 if ($from =~ /.xsl$/); my $is_test = 0; $is_test = 1 if ($from =~ /tests\/unit/); # Open the files. open(my $input, "<$from") or die("Can't open $from for reading"); open(my $output, ">$to") or die("Can't open $to for writing"); # Copy the content. my $lineno = 1; while (my $line = <$input>) { chomp($line); # Unconditional replacements. $line =~ s/[\\@]ref boost_bind/boost::bind()/g; if ($from =~ /.*\.txt$/) { $line =~ s/[\\@]ref async_read/boost::asio::async_read()/g; $line =~ s/[\\@]ref async_write/boost::asio::async_write()/g; } if ($line =~ /asio_detail_posix_thread_function/) { $line =~ s/asio_detail_posix_thread_function/boost_asio_detail_posix_thread_function/g; } if ($line =~ /asio_signal_handler/) { $line =~ s/asio_signal_handler/boost_asio_signal_handler/g; } if ($line =~ /ASIO_/ && !($line =~ /BOOST_ASIO_/)) { $line =~ s/ASIO_/BOOST_ASIO_/g; } # Extra replacements for quickbook and XSL source only. if ($is_qbk || $is_xsl) { $line =~ s/asio\.examples/boost_asio.examples/g; $line =~ s/asio\.history/boost_asio.history/g; $line =~ s/asio\.index/boost_asio.index/g; $line =~ s/asio\.net_ts/boost_asio.net_ts/g; $line =~ s/asio\.overview/boost_asio.overview/g; $line =~ s/asio\.reference/boost_asio.reference/g; $line =~ s/asio\.tutorial/boost_asio.tutorial/g; $line =~ s/asio\.using/boost_asio.using/g; $line =~ s/Asio/Boost.Asio/g; $line =~ s/changes made in each release/changes made in each Boost release/g; $line =~ s/\[\$/[\$boost_asio\//g; $line =~ s/\[@\.\.\/src\/examples/[\@boost_asio\/example/g; $line =~ s/include\/asio/boost\/asio/g; $line =~ s/\^asio/^boost\/asio/g; $line =~ s/namespaceasio/namespaceboost_1_1asio/g; $line =~ s/ \(\[\@examples\/diffs.*$//; } # Conditional replacements. if ($line =~ /^( *)namespace asio \{/) { if ($is_qbk) { print_line($output, $1 . "namespace boost { namespace asio {", $from, $lineno); } else { print_line($output, $1 . "namespace boost {", $from, $lineno); print_line($output, $line, $from, $lineno); } } elsif ($line =~ /^( *)} \/\/ namespace asio$/) { if ($is_qbk) { print_line($output, $1 . "} } // namespace boost::asio", $from, $lineno); } else { print_line($output, $line, $from, $lineno); print_line($output, $1 . "} // namespace boost", $from, $lineno); } } elsif ($line =~ /^(# *include )[<"](asio\.hpp)[>"]$/) { print_line($output, $1 . "<boost/" . $2 . ">", $from, $lineno); if ($uses_asio_thread) { print_line($output, $1 . "<boost/thread/thread.hpp>", $from, $lineno) if (!$is_test); $uses_asio_thread = 0; } } elsif ($line =~ /^(# *include )[<"]boost\/.*[>"].*$/) { if (!$includes_asio && $uses_asio_thread) { print_line($output, $1 . "<boost/thread/thread.hpp>", $from, $lineno) if (!$is_test); $uses_asio_thread = 0; } print_line($output, $line, $from, $lineno); } elsif ($line =~ /^(# *include )[<"]asio\/thread\.hpp[>"]/) { if ($is_test) { print_line($output, $1 . "<boost/asio/detail/thread.hpp>", $from, $lineno); } else { # Line is removed. } } elsif ($line =~ /(# *include )[<"]asio\/error_code\.hpp[>"]/) { if ($is_asio_hpp) { # Line is removed. } else { print_line($output, $1 . "<boost/cerrno.hpp>", $from, $lineno) if ($is_error_hpp); print_line($output, $1 . "<boost/system/error_code.hpp>", $from, $lineno); } } elsif ($line =~ /# *include [<"]asio\/impl\/error_code\.[hi]pp[>"]/) { # Line is removed. } elsif ($line =~ /(# *include )[<"]asio\/system_error\.hpp[>"]/) { if ($is_asio_hpp) { # Line is removed. } else { print_line($output, $1 . "<boost/system/system_error.hpp>", $from, $lineno); } } elsif ($line =~ /(^.*# *include )[<"](asio\/[^>"]*)[>"](.*)$/) { print_line($output, $1 . "<boost/" . $2 . ">" . $3, $from, $lineno); } elsif ($line =~ /#.*defined\(.*ASIO_HAS_STD_SYSTEM_ERROR\)$/) { # Line is removed. } elsif ($line =~ /asio::thread\b/) { if ($is_test) { $line =~ s/asio::thread/asio::detail::thread/g; } else { $line =~ s/asio::thread/boost::thread/g; } if (!($line =~ /boost::asio::/)) { $line =~ s/asio::/boost::asio::/g; } print_line($output, $line, $from, $lineno); } elsif ($line =~ /^( *)thread( .*)$/ && !$is_qbk) { if ($is_test) { print_line($output, $1 . "boost::asio::detail::thread" . $2, $from, $lineno); } else { print_line($output, $1 . "boost::thread" . $2, $from, $lineno); } } elsif ($line =~ /namespace std \{ *$/) { print_line($output, "namespace boost {", $from, $lineno); print_line($output, "namespace system {", $from, $lineno); } elsif ($line =~ /std::error_code/) { $line =~ s/std::error_code/boost::system::error_code/g; $line =~ s/asio::/boost::asio::/g if !$is_xsl; print_line($output, $line, $from, $lineno); } elsif ($line =~ /^} \/\/ namespace std/) { print_line($output, "} // namespace system", $from, $lineno); print_line($output, "} // namespace boost", $from, $lineno); } elsif ($line =~ /asio::/ && !($line =~ /boost::asio::/)) { $line =~ s/asio::error_code/boost::system::error_code/g; $line =~ s/asio::error_category/boost::system::error_category/g; $line =~ s/asio::system_category/boost::system::system_category/g; $line =~ s/asio::system_error/boost::system::system_error/g; $line =~ s/asio::/boost::asio::/g if !$is_xsl; print_line($output, $line, $from, $lineno); } elsif ($line =~ /using namespace asio/) { $line =~ s/using namespace asio/using namespace boost::asio/g; print_line($output, $line, $from, $lineno); } elsif ($line =~ /asio_handler_alloc_helpers/) { $line =~ s/asio_handler_alloc_helpers/boost_asio_handler_alloc_helpers/g; print_line($output, $line, $from, $lineno); } elsif ($line =~ /asio_handler_cont_helpers/) { $line =~ s/asio_handler_cont_helpers/boost_asio_handler_cont_helpers/g; print_line($output, $line, $from, $lineno); } elsif ($line =~ /asio_handler_invoke_helpers/) { $line =~ s/asio_handler_invoke_helpers/boost_asio_handler_invoke_helpers/g; print_line($output, $line, $from, $lineno); } elsif ($line =~ /[\\@]ref boost_bind/) { $line =~ s/[\\@]ref boost_bind/boost::bind()/g; print_line($output, $line, $from, $lineno); } elsif ($line =~ /( *)\[category template\]/) { print_line($output, $1 . "[authors [Kohlhoff, Christopher]]", $from, $lineno); print_line($output, $line, $from, $lineno); } elsif ($line =~ /boostify: non-boost docs start here/) { while ($line = <$input>) { last if $line =~ /boostify: non-boost docs end here/; } } elsif ($line =~ /boostify: non-boost code starts here/) { while ($line = <$input>) { last if $line =~ /boostify: non-boost code ends here/; } } elsif ($line =~ /^$/ && $needs_doc_link) { $needs_doc_link = 0; print_line($output, "// See www.boost.org/libs/asio for documentation.", $from, $lineno); print_line($output, "//", $from, $lineno); print_line($output, $line, $from, $lineno); } else { print_line($output, $line, $from, $lineno); } ++$lineno; } # Ok, we're done. close($input); close($output); } sub copy_include_files { my @dirs = ( "include", "include/asio", "include/asio/detail", "include/asio/detail/impl", "include/asio/experimental", "include/asio/experimental/impl", "include/asio/generic", "include/asio/generic/detail", "include/asio/generic/detail/impl", "include/asio/impl", "include/asio/ip", "include/asio/ip/impl", "include/asio/ip/detail", "include/asio/ip/detail/impl", "include/asio/local", "include/asio/local/detail", "include/asio/local/detail/impl", "include/asio/posix", "include/asio/ssl", "include/asio/ssl/detail", "include/asio/ssl/detail/impl", "include/asio/ssl/impl", "include/asio/ssl/old", "include/asio/ssl/old/detail", "include/asio/ts", "include/asio/windows"); foreach my $dir (@dirs) { our $boost_dir; my @files = ( glob("$dir/*.hpp"), glob("$dir/*.ipp"), glob("$dir/*cpp") ); foreach my $file (@files) { if ($file ne "include/asio/thread.hpp" and $file ne "include/asio/error_code.hpp" and $file ne "include/asio/system_error.hpp" and $file ne "include/asio/impl/error_code.hpp" and $file ne "include/asio/impl/error_code.ipp") { my $from = $file; my $to = $file; $to =~ s/^include\//$boost_dir\/libs\/asio\/include\/boost\//; copy_source_file($from, $to); } } } } sub create_lib_directory { my @dirs = ( "doc", "example", "test"); our $boost_dir; foreach my $dir (@dirs) { mkpath("$boost_dir/libs/asio/$dir"); } } sub copy_unit_tests { my @dirs = ( "src/tests/unit", "src/tests/unit/archetypes", "src/tests/unit/generic", "src/tests/unit/ip", "src/tests/unit/local", "src/tests/unit/posix", "src/tests/unit/ssl", "src/tests/unit/ts", "src/tests/unit/windows"); our $boost_dir; foreach my $dir (@dirs) { my @files = ( glob("$dir/*.*pp"), glob("$dir/Jamfile*") ); foreach my $file (@files) { if ($file ne "src/tests/unit/thread.cpp" and $file ne "src/tests/unit/error_handler.cpp" and $file ne "src/tests/unit/unit_test.cpp") { my $from = $file; my $to = $file; $to =~ s/^src\/tests\/unit\//$boost_dir\/libs\/asio\/test\//; copy_source_file($from, $to); } } } } sub copy_latency_tests { my @dirs = ( "src/tests/latency"); our $boost_dir; foreach my $dir (@dirs) { my @files = ( glob("$dir/*.*pp"), glob("$dir/Jamfile*") ); foreach my $file (@files) { my $from = $file; my $to = $file; $to =~ s/^src\/tests\/latency\//$boost_dir\/libs\/asio\/test\/latency\//; copy_source_file($from, $to); } } } sub copy_examples { my @dirs = ( "src/examples/cpp03/allocation", "src/examples/cpp03/buffers", "src/examples/cpp03/chat", "src/examples/cpp03/echo", "src/examples/cpp03/fork", "src/examples/cpp03/http/client", "src/examples/cpp03/http/doc_root", "src/examples/cpp03/http/server", "src/examples/cpp03/http/server2", "src/examples/cpp03/http/server3", "src/examples/cpp03/http/server4", "src/examples/cpp03/icmp", "src/examples/cpp03/invocation", "src/examples/cpp03/iostreams", "src/examples/cpp03/local", "src/examples/cpp03/multicast", "src/examples/cpp03/nonblocking", "src/examples/cpp03/porthopper", "src/examples/cpp03/serialization", "src/examples/cpp03/services", "src/examples/cpp03/socks4", "src/examples/cpp03/spawn", "src/examples/cpp03/ssl", "src/examples/cpp03/timeouts", "src/examples/cpp03/timers", "src/examples/cpp03/tutorial", "src/examples/cpp03/tutorial/daytime1", "src/examples/cpp03/tutorial/daytime2", "src/examples/cpp03/tutorial/daytime3", "src/examples/cpp03/tutorial/daytime4", "src/examples/cpp03/tutorial/daytime5", "src/examples/cpp03/tutorial/daytime6", "src/examples/cpp03/tutorial/daytime7", "src/examples/cpp03/tutorial/timer1", "src/examples/cpp03/tutorial/timer2", "src/examples/cpp03/tutorial/timer3", "src/examples/cpp03/tutorial/timer4", "src/examples/cpp03/tutorial/timer5", "src/examples/cpp03/windows", "src/examples/cpp11/allocation", "src/examples/cpp11/buffers", "src/examples/cpp11/chat", "src/examples/cpp11/echo", "src/examples/cpp11/executors", "src/examples/cpp11/fork", "src/examples/cpp11/futures", "src/examples/cpp11/handler_tracking", "src/examples/cpp11/http/server", "src/examples/cpp11/invocation", "src/examples/cpp11/iostreams", "src/examples/cpp11/local", "src/examples/cpp11/multicast", "src/examples/cpp11/nonblocking", "src/examples/cpp11/operations", "src/examples/cpp11/socks4", "src/examples/cpp11/spawn", "src/examples/cpp11/ssl", "src/examples/cpp11/timeouts", "src/examples/cpp11/timers", "src/examples/cpp14/executors", "src/examples/cpp17/coroutines_ts"); our $boost_dir; foreach my $dir (@dirs) { my @files = ( glob("$dir/*.*pp"), glob("$dir/*.html"), glob("$dir/Jamfile*"), glob("$dir/*.pem"), glob("$dir/README*"), glob("$dir/*.txt")); foreach my $file (@files) { my $from = $file; my $to = $file; $to =~ s/^src\/examples\//$boost_dir\/libs\/asio\/example\//; copy_source_file($from, $to); } } } sub copy_doc { our $boost_dir; my @files = ( "src/doc/asio.qbk", "src/doc/examples.qbk", "src/doc/net_ts.qbk", "src/doc/reference.xsl", "src/doc/tutorial.xsl", glob("src/doc/overview/*.qbk"), glob("src/doc/requirements/*.qbk")); foreach my $file (@files) { my $from = $file; my $to = $file; $to =~ s/^src\/doc\//$boost_dir\/libs\/asio\/doc\//; copy_source_file($from, $to); } } sub copy_tools { our $boost_dir; my @files = ( glob("src/tools/*.pl")); foreach my $file (@files) { my $from = $file; my $to = $file; $to =~ s/^src\/tools\//$boost_dir\/libs\/asio\/tools\//; copy_source_file($from, $to); } } copy_include_files(); create_lib_directory(); copy_unit_tests(); copy_latency_tests(); copy_examples(); copy_doc(); copy_tools();
27.280265
96
0.557021
73d414051a3182cebcf6224f9f7f751972603aec
56
pl
Perl
subjects/LData/Assignment/shallow-parser-ben-3.0.fc8/bin/sys/common/printinput.pl
zubairabid/Semester6
97d9633f6db7c3f7dd51ed91365e54511a62959f
[ "MIT" ]
null
null
null
subjects/LData/Assignment/shallow-parser-ben-3.0.fc8/bin/sys/common/printinput.pl
zubairabid/Semester6
97d9633f6db7c3f7dd51ed91365e54511a62959f
[ "MIT" ]
11
2021-02-02T23:00:10.000Z
2022-03-12T00:46:52.000Z
subjects/LData/Assignment/shallow-parser-ben-3.0.fc8/bin/sys/common/printinput.pl
zubairabid/Semester6
97d9633f6db7c3f7dd51ed91365e54511a62959f
[ "MIT" ]
null
null
null
# Printing the file while($line=<>) { print $line; }
7
19
0.589286
ed677ecbc1293c3b3e2af834f999a13ea81f7967
428
pl
Perl
match_month.pl
Zaier9/expresiones-regulares
5f94a6874bfae956760c43a92155d55a68a12c44
[ "MIT" ]
null
null
null
match_month.pl
Zaier9/expresiones-regulares
5f94a6874bfae956760c43a92155d55a68a12c44
[ "MIT" ]
null
null
null
match_month.pl
Zaier9/expresiones-regulares
5f94a6874bfae956760c43a92155d55a68a12c44
[ "MIT" ]
null
null
null
#!/usr/bin/perl use strict; use warnings; my $t = time; open(my $f, "<./results.csv") or die ("No hay archivo"); #Con esta expresion, buscamos todos lo partidos jugados en el mes de Febrero. my $match = 0; my $nomatch = 0; while(<$f>) { chomp; if(m/^[\d]{4,4}\-02\-.*$/){ print $_."\n"; $match++; } else { $nomatch++; } } close($f); printf("Se encontraron %d matches\n", $match);
15.285714
77
0.542056
ed579d727204cf747859425d578abb819c727b8f
361
t
Perl
t/Handler/CoreList.t
tokuhirom/LiBot
7ef3f106c71f4377986350800aed6854206f6a02
[ "Artistic-1.0" ]
1
2015-11-05T01:54:05.000Z
2015-11-05T01:54:05.000Z
t/Handler/CoreList.t
tokuhirom/LiBot
7ef3f106c71f4377986350800aed6854206f6a02
[ "Artistic-1.0" ]
null
null
null
t/Handler/CoreList.t
tokuhirom/LiBot
7ef3f106c71f4377986350800aed6854206f6a02
[ "Artistic-1.0" ]
null
null
null
use strict; use warnings; use utf8; use Test::More; use LiBot::Test::Handler; load_plugin( 'Handler' => 'CoreList' => { } ); test_message '<tokuhirom> corelist Test::More' => 'Test::More was first released with perl 5.006002'; test_message '<tokuhirom> corelist Acme::PrettyCure' => 'Acme::PrettyCure was not in CORE (or so I think)'; done_testing;
21.235294
107
0.692521
ed28ea04f88ac6a62edf8fbaf6dacda0ce2d7bcb
1,177
t
Perl
t/02.linewrap.t
bestpractical/data-ical
a5b68e8a2840eaa71231d5bdc9239e7bf1618a44
[ "Unlicense" ]
3
2016-05-09T11:05:59.000Z
2020-11-07T04:15:41.000Z
t/02.linewrap.t
bestpractical/data-ical
a5b68e8a2840eaa71231d5bdc9239e7bf1618a44
[ "Unlicense" ]
2
2020-01-02T19:00:15.000Z
2021-02-18T21:13:24.000Z
t/02.linewrap.t
bestpractical/data-ical
a5b68e8a2840eaa71231d5bdc9239e7bf1618a44
[ "Unlicense" ]
3
2017-02-11T11:08:53.000Z
2020-01-02T16:32:32.000Z
#!/usr/bin/perl -w use warnings; use strict; use Test::More tests => 8; use Test::LongString; BEGIN { use_ok('Data::ICal::Entry::Todo') } my $todo = Data::ICal::Entry::Todo->new; isa_ok($todo, 'Data::ICal::Entry::Todo'); my $hundreds_of_characters = "X" x 300; is(length $hundreds_of_characters, 300); cmp_ok(length $hundreds_of_characters, '>', 75, "the summary is bigger than the suggested line-wrap"); $todo->add_property(summary => $hundreds_of_characters); lacks_string($todo->as_string, $hundreds_of_characters, "the long string isn't there"); unlike_string($todo->as_string, qr/[^\r\n]{76}/, "no lines are too long"); my $want = <<'END'; BEGIN:VTODO SUMMARY:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXX END:VTODO END $want =~ s/\n/\r\n/g; is($todo->as_string, $want, "expectations: met"); like_string($todo->as_string(fold => 0), qr/.{300}/, "no lines are too long".$todo->as_string(fold=>0));
30.179487
104
0.762957
ed41bb17c130aedce83c49f0eb2b91ca712df78c
2,221
pm
Perl
lib/xml_utils.pm
lansuse/os-autoinst-distri-opensuse
8e8c532236f2436693ec1da426de563c9759d778
[ "FSFAP" ]
null
null
null
lib/xml_utils.pm
lansuse/os-autoinst-distri-opensuse
8e8c532236f2436693ec1da426de563c9759d778
[ "FSFAP" ]
null
null
null
lib/xml_utils.pm
lansuse/os-autoinst-distri-opensuse
8e8c532236f2436693ec1da426de563c9759d778
[ "FSFAP" ]
null
null
null
=head1 xml_utils.pm Library for parsing xml files =cut # SUSE's openQA tests # # Copyright 2018 SUSE LLC # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. This file is offered as-is, # without any warranty. # Summary: Library for parsing xml files # Maintainer: Rodion Iafarov <riafarov@suse.com> use strict; use warnings; use XML::LibXML; use Exporter 'import'; =head2 get_xpc get_xpc($string); Returns XPathContext for the dom build using the string, which contains xml. =cut our @EXPORT = qw(get_xpc verify_option find_nodes); sub get_xpc { my ($string) = @_; my $dom = XML::LibXML->load_xml(string => $string); # Init xml namespace my $xpc = XML::LibXML::XPathContext->new($dom); $xpc->registerNs('ns', 'http://www.suse.com/1.0/yast2ns'); return $xpc; } =head2 verify_option verify_option(%args); Verifies that node by given XPath is unique and has expected value. C<%args> is a hash which must have following keys: =over =item * C<xpc> - XPathContext object for the parsed xml, =item * C<xpath> - XPath to the node which value we want to check =item * C<expected_val> - expected value for the node =back =cut sub verify_option { my (%args) = @_; my @nodes = find_nodes(%args); ## Verify that there is node found by xpath and it's single one if (scalar @nodes != 1) { return "Generated autoinst.xml contains unexpected number of nodes for xpath: $args{xpath}. Found: " . scalar @nodes . ", expected: 1."; } if ($nodes[0]->to_literal ne $args{expected_val}) { return "Unexpected value for xpath $args{xpath}. Expected: '$args{expected_val}', got: '$nodes[0]'"; } return ''; } =head2 find_nodes find_nodes(%args); Finds all the nodes by xpath and returns the nodes as array. C<xpc> - XPathContext object for the parsed xml, C<xpath> - XPath to the target node =cut sub find_nodes { my (%args) = @_; my $nodeset = $args{xpc}->findnodes($args{xpath}); for my $node ($nodeset->get_nodelist) { print $node->to_literal; } return $nodeset->get_nodelist; } 1;
23.135417
144
0.683476
ed4de8917789d269ef7dc50576ccc53ca755f8c5
19,522
pm
Perl
auto-lib/Paws/ACMPCA.pm
galenhuntington/aws-sdk-perl
13b775dcb5f0b3764f0a82f3679ed5c7721e67d3
[ "Apache-2.0" ]
null
null
null
auto-lib/Paws/ACMPCA.pm
galenhuntington/aws-sdk-perl
13b775dcb5f0b3764f0a82f3679ed5c7721e67d3
[ "Apache-2.0" ]
null
null
null
auto-lib/Paws/ACMPCA.pm
galenhuntington/aws-sdk-perl
13b775dcb5f0b3764f0a82f3679ed5c7721e67d3
[ "Apache-2.0" ]
null
null
null
package Paws::ACMPCA; use Moose; sub service { 'acm-pca' } sub signing_name { 'acm-pca' } sub version { '2017-08-22' } sub target_prefix { 'ACMPrivateCA' } sub json_version { "1.1" } has max_attempts => (is => 'ro', isa => 'Int', default => 5); has retry => (is => 'ro', isa => 'HashRef', default => sub { { base => 'rand', type => 'exponential', growth_factor => 2 } }); has retriables => (is => 'ro', isa => 'ArrayRef', default => sub { [ ] }); with 'Paws::API::Caller', 'Paws::API::EndpointResolver', 'Paws::Net::V4Signature', 'Paws::Net::JsonCaller'; sub CreateCertificateAuthority { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::CreateCertificateAuthority', @_); return $self->caller->do_call($self, $call_object); } sub CreateCertificateAuthorityAuditReport { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::CreateCertificateAuthorityAuditReport', @_); return $self->caller->do_call($self, $call_object); } sub DeleteCertificateAuthority { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::DeleteCertificateAuthority', @_); return $self->caller->do_call($self, $call_object); } sub DescribeCertificateAuthority { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::DescribeCertificateAuthority', @_); return $self->caller->do_call($self, $call_object); } sub DescribeCertificateAuthorityAuditReport { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::DescribeCertificateAuthorityAuditReport', @_); return $self->caller->do_call($self, $call_object); } sub GetCertificate { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::GetCertificate', @_); return $self->caller->do_call($self, $call_object); } sub GetCertificateAuthorityCertificate { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::GetCertificateAuthorityCertificate', @_); return $self->caller->do_call($self, $call_object); } sub GetCertificateAuthorityCsr { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::GetCertificateAuthorityCsr', @_); return $self->caller->do_call($self, $call_object); } sub ImportCertificateAuthorityCertificate { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::ImportCertificateAuthorityCertificate', @_); return $self->caller->do_call($self, $call_object); } sub IssueCertificate { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::IssueCertificate', @_); return $self->caller->do_call($self, $call_object); } sub ListCertificateAuthorities { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::ListCertificateAuthorities', @_); return $self->caller->do_call($self, $call_object); } sub ListTags { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::ListTags', @_); return $self->caller->do_call($self, $call_object); } sub RevokeCertificate { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::RevokeCertificate', @_); return $self->caller->do_call($self, $call_object); } sub TagCertificateAuthority { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::TagCertificateAuthority', @_); return $self->caller->do_call($self, $call_object); } sub UntagCertificateAuthority { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::UntagCertificateAuthority', @_); return $self->caller->do_call($self, $call_object); } sub UpdateCertificateAuthority { my $self = shift; my $call_object = $self->new_with_coercions('Paws::ACMPCA::UpdateCertificateAuthority', @_); return $self->caller->do_call($self, $call_object); } sub operations { qw/CreateCertificateAuthority CreateCertificateAuthorityAuditReport DeleteCertificateAuthority DescribeCertificateAuthority DescribeCertificateAuthorityAuditReport GetCertificate GetCertificateAuthorityCertificate GetCertificateAuthorityCsr ImportCertificateAuthorityCertificate IssueCertificate ListCertificateAuthorities ListTags RevokeCertificate TagCertificateAuthority UntagCertificateAuthority UpdateCertificateAuthority / } 1; ### main pod documentation begin ### =head1 NAME Paws::ACMPCA - Perl Interface to AWS AWS Certificate Manager Private Certificate Authority =head1 SYNOPSIS use Paws; my $obj = Paws->service('ACMPCA'); my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); =head1 DESCRIPTION You can use the ACM PCA API to create a private certificate authority (CA). You must first call the CreateCertificateAuthority function. If successful, the function returns an Amazon Resource Name (ARN) for your private CA. Use this ARN as input to the GetCertificateAuthorityCsr function to retrieve the certificate signing request (CSR) for your private CA certificate. Sign the CSR using the root or an intermediate CA in your on-premises PKI hierarchy, and call the ImportCertificateAuthorityCertificate to import your signed private CA certificate into ACM PCA. Use your private CA to issue and revoke certificates. These are private certificates that identify and secure client computers, servers, applications, services, devices, and users over SSLS/TLS connections within your organization. Call the IssueCertificate function to issue a certificate. Call the RevokeCertificate function to revoke a certificate. Certificates issued by your private CA can be trusted only within your organization, not publicly. Your private CA can optionally create a certificate revocation list (CRL) to track the certificates you revoke. To create a CRL, you must specify a RevocationConfiguration object when you call the CreateCertificateAuthority function. ACM PCA writes the CRL to an S3 bucket that you specify. You must specify a bucket policy that grants ACM PCA write permission. You can also call the CreateCertificateAuthorityAuditReport to create an optional audit report that lists every time the CA private key is used. The private key is used for signing when the B<IssueCertificate> or B<RevokeCertificate> function is called. For the AWS API documentation, see L<https://docs.aws.amazon.com/goto/WebAPI/acm-pca-2017-08-22> =head1 METHODS =head2 CreateCertificateAuthority =over =item CertificateAuthorityConfiguration => L<Paws::ACMPCA::CertificateAuthorityConfiguration> =item CertificateAuthorityType => Str =item [IdempotencyToken => Str] =item [RevocationConfiguration => L<Paws::ACMPCA::RevocationConfiguration>] =back Each argument is described in detail in: L<Paws::ACMPCA::CreateCertificateAuthority> Returns: a L<Paws::ACMPCA::CreateCertificateAuthorityResponse> instance Creates a private subordinate certificate authority (CA). You must specify the CA configuration, the revocation configuration, the CA type, and an optional idempotency token. The CA configuration specifies the name of the algorithm and key size to be used to create the CA private key, the type of signing algorithm that the CA uses to sign, and X.500 subject information. The CRL (certificate revocation list) configuration specifies the CRL expiration period in days (the validity period of the CRL), the Amazon S3 bucket that will contain the CRL, and a CNAME alias for the S3 bucket that is included in certificates issued by the CA. If successful, this function returns the Amazon Resource Name (ARN) of the CA. =head2 CreateCertificateAuthorityAuditReport =over =item AuditReportResponseFormat => Str =item CertificateAuthorityArn => Str =item S3BucketName => Str =back Each argument is described in detail in: L<Paws::ACMPCA::CreateCertificateAuthorityAuditReport> Returns: a L<Paws::ACMPCA::CreateCertificateAuthorityAuditReportResponse> instance Creates an audit report that lists every time that the your CA private key is used. The report is saved in the Amazon S3 bucket that you specify on input. The IssueCertificate and RevokeCertificate functions use the private key. You can generate a new report every 30 minutes. =head2 DeleteCertificateAuthority =over =item CertificateAuthorityArn => Str =back Each argument is described in detail in: L<Paws::ACMPCA::DeleteCertificateAuthority> Returns: nothing Deletes the private certificate authority (CA) that you created or started to create by calling the CreateCertificateAuthority function. This action requires that you enter an ARN (Amazon Resource Name) for the private CA that you want to delete. You can find the ARN by calling the ListCertificateAuthorities function. You can delete the CA if you are waiting for it to be created (the B<Status> field of the CertificateAuthority is C<CREATING>) or if the CA has been created but you haven't yet imported the signed certificate (the B<Status> is C<PENDING_CERTIFICATE>) into ACM PCA. If you've already imported the certificate, you cannot delete the CA unless it has been disabled for more than 30 days. To disable a CA, call the UpdateCertificateAuthority function and set the B<CertificateAuthorityStatus> argument to C<DISABLED>. =head2 DescribeCertificateAuthority =over =item CertificateAuthorityArn => Str =back Each argument is described in detail in: L<Paws::ACMPCA::DescribeCertificateAuthority> Returns: a L<Paws::ACMPCA::DescribeCertificateAuthorityResponse> instance Lists information about your private certificate authority (CA). You specify the private CA on input by its ARN (Amazon Resource Name). The output contains the status of your CA. This can be any of the following: =over =item * B<CREATING:> ACM PCA is creating your private certificate authority. =item * B<PENDING_CERTIFICATE:> The certificate is pending. You must use your on-premises root or subordinate CA to sign your private CA CSR and then import it into PCA. =item * B<ACTIVE:> Your private CA is active. =item * B<DISABLED:> Your private CA has been disabled. =item * B<EXPIRED:> Your private CA certificate has expired. =item * B<FAILED:> Your private CA has failed. Your CA can fail for problems such a network outage or backend AWS failure or other errors. A failed CA can never return to the pending state. You must create a new CA. =back =head2 DescribeCertificateAuthorityAuditReport =over =item AuditReportId => Str =item CertificateAuthorityArn => Str =back Each argument is described in detail in: L<Paws::ACMPCA::DescribeCertificateAuthorityAuditReport> Returns: a L<Paws::ACMPCA::DescribeCertificateAuthorityAuditReportResponse> instance Lists information about a specific audit report created by calling the CreateCertificateAuthorityAuditReport function. Audit information is created every time the certificate authority (CA) private key is used. The private key is used when you call the IssueCertificate function or the RevokeCertificate function. =head2 GetCertificate =over =item CertificateArn => Str =item CertificateAuthorityArn => Str =back Each argument is described in detail in: L<Paws::ACMPCA::GetCertificate> Returns: a L<Paws::ACMPCA::GetCertificateResponse> instance Retrieves a certificate from your private CA. The ARN of the certificate is returned when you call the IssueCertificate function. You must specify both the ARN of your private CA and the ARN of the issued certificate when calling the B<GetCertificate> function. You can retrieve the certificate if it is in the B<ISSUED> state. You can call the CreateCertificateAuthorityAuditReport function to create a report that contains information about all of the certificates issued and revoked by your private CA. =head2 GetCertificateAuthorityCertificate =over =item CertificateAuthorityArn => Str =back Each argument is described in detail in: L<Paws::ACMPCA::GetCertificateAuthorityCertificate> Returns: a L<Paws::ACMPCA::GetCertificateAuthorityCertificateResponse> instance Retrieves the certificate and certificate chain for your private certificate authority (CA). Both the certificate and the chain are base64 PEM-encoded. The chain does not include the CA certificate. Each certificate in the chain signs the one before it. =head2 GetCertificateAuthorityCsr =over =item CertificateAuthorityArn => Str =back Each argument is described in detail in: L<Paws::ACMPCA::GetCertificateAuthorityCsr> Returns: a L<Paws::ACMPCA::GetCertificateAuthorityCsrResponse> instance Retrieves the certificate signing request (CSR) for your private certificate authority (CA). The CSR is created when you call the CreateCertificateAuthority function. Take the CSR to your on-premises X.509 infrastructure and sign it by using your root or a subordinate CA. Then import the signed certificate back into ACM PCA by calling the ImportCertificateAuthorityCertificate function. The CSR is returned as a base64 PEM-encoded string. =head2 ImportCertificateAuthorityCertificate =over =item Certificate => Str =item CertificateAuthorityArn => Str =item CertificateChain => Str =back Each argument is described in detail in: L<Paws::ACMPCA::ImportCertificateAuthorityCertificate> Returns: nothing Imports your signed private CA certificate into ACM PCA. Before you can call this function, you must create the private certificate authority by calling the CreateCertificateAuthority function. You must then generate a certificate signing request (CSR) by calling the GetCertificateAuthorityCsr function. Take the CSR to your on-premises CA and use the root certificate or a subordinate certificate to sign it. Create a certificate chain and copy the signed certificate and the certificate chain to your working directory. Your certificate chain must not include the private CA certificate that you are importing. Your on-premises CA certificate must be the last certificate in your chain. The subordinate certificate, if any, that your root CA signed must be next to last. The subordinate certificate signed by the preceding subordinate CA must come next, and so on until your chain is built. The chain must be PEM-encoded. =head2 IssueCertificate =over =item CertificateAuthorityArn => Str =item Csr => Str =item SigningAlgorithm => Str =item Validity => L<Paws::ACMPCA::Validity> =item [IdempotencyToken => Str] =back Each argument is described in detail in: L<Paws::ACMPCA::IssueCertificate> Returns: a L<Paws::ACMPCA::IssueCertificateResponse> instance Uses your private certificate authority (CA) to issue a client certificate. This function returns the Amazon Resource Name (ARN) of the certificate. You can retrieve the certificate by calling the GetCertificate function and specifying the ARN. You cannot use the ACM B<ListCertificateAuthorities> function to retrieve the ARNs of the certificates that you issue by using ACM PCA. =head2 ListCertificateAuthorities =over =item [MaxResults => Int] =item [NextToken => Str] =back Each argument is described in detail in: L<Paws::ACMPCA::ListCertificateAuthorities> Returns: a L<Paws::ACMPCA::ListCertificateAuthoritiesResponse> instance Lists the private certificate authorities that you created by using the CreateCertificateAuthority function. =head2 ListTags =over =item CertificateAuthorityArn => Str =item [MaxResults => Int] =item [NextToken => Str] =back Each argument is described in detail in: L<Paws::ACMPCA::ListTags> Returns: a L<Paws::ACMPCA::ListTagsResponse> instance Lists the tags, if any, that are associated with your private CA. Tags are labels that you can use to identify and organize your CAs. Each tag consists of a key and an optional value. Call the TagCertificateAuthority function to add one or more tags to your CA. Call the UntagCertificateAuthority function to remove tags. =head2 RevokeCertificate =over =item CertificateAuthorityArn => Str =item CertificateSerial => Str =item RevocationReason => Str =back Each argument is described in detail in: L<Paws::ACMPCA::RevokeCertificate> Returns: nothing Revokes a certificate that you issued by calling the IssueCertificate function. If you enable a certificate revocation list (CRL) when you create or update your private CA, information about the revoked certificates will be included in the CRL. ACM PCA writes the CRL to an S3 bucket that you specify. For more information about revocation, see the CrlConfiguration structure. ACM PCA also writes revocation information to the audit report. For more information, see CreateCertificateAuthorityAuditReport. =head2 TagCertificateAuthority =over =item CertificateAuthorityArn => Str =item Tags => ArrayRef[L<Paws::ACMPCA::Tag>] =back Each argument is described in detail in: L<Paws::ACMPCA::TagCertificateAuthority> Returns: nothing Adds one or more tags to your private CA. Tags are labels that you can use to identify and organize your AWS resources. Each tag consists of a key and an optional value. You specify the private CA on input by its Amazon Resource Name (ARN). You specify the tag by using a key-value pair. You can apply a tag to just one private CA if you want to identify a specific characteristic of that CA, or you can apply the same tag to multiple private CAs if you want to filter for a common relationship among those CAs. To remove one or more tags, use the UntagCertificateAuthority function. Call the ListTags function to see what tags are associated with your CA. =head2 UntagCertificateAuthority =over =item CertificateAuthorityArn => Str =item Tags => ArrayRef[L<Paws::ACMPCA::Tag>] =back Each argument is described in detail in: L<Paws::ACMPCA::UntagCertificateAuthority> Returns: nothing Remove one or more tags from your private CA. A tag consists of a key-value pair. If you do not specify the value portion of the tag when calling this function, the tag will be removed regardless of value. If you specify a value, the tag is removed only if it is associated with the specified value. To add tags to a private CA, use the TagCertificateAuthority. Call the ListTags function to see what tags are associated with your CA. =head2 UpdateCertificateAuthority =over =item CertificateAuthorityArn => Str =item [RevocationConfiguration => L<Paws::ACMPCA::RevocationConfiguration>] =item [Status => Str] =back Each argument is described in detail in: L<Paws::ACMPCA::UpdateCertificateAuthority> Returns: nothing Updates the status or configuration of a private certificate authority (CA). Your private CA must be in the B< C<ACTIVE> > or B< C<DISABLED> > state before you can update it. You can disable a private CA that is in the B< C<ACTIVE> > state or make a CA that is in the B< C<DISABLED> > state active again. =head1 PAGINATORS Paginator methods are helpers that repetively call methods that return partial results =head1 SEE ALSO This service class forms part of L<Paws> =head1 BUGS and CONTRIBUTIONS The source code is located here: L<https://github.com/pplu/aws-sdk-perl> Please report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues> =cut
31.335474
449
0.773333
73f777e382d4dcd50e1a2ae4cb9c8b0a93764519
482
pm
Perl
lib/JCVI/DB/feat_link.pm
vivekkrish/eucap
ef4d670aea2870dcaaaaebf9f17778df9b28d0a8
[ "BSD-3-Clause" ]
1
2019-09-18T02:50:23.000Z
2019-09-18T02:50:23.000Z
lib/JCVI/DB/feat_link.pm
jcvi-plant-genomics/eucap
ef4d670aea2870dcaaaaebf9f17778df9b28d0a8
[ "BSD-3-Clause" ]
null
null
null
lib/JCVI/DB/feat_link.pm
jcvi-plant-genomics/eucap
ef4d670aea2870dcaaaaebf9f17778df9b28d0a8
[ "BSD-3-Clause" ]
null
null
null
package AnnotDB::DB::feat_link; use base 'AnnotDB::DB::CDBI'; __PACKAGE__->table('feat_link'); __PACKAGE__->columns(All => qw/id parent_feat child_feat assignby datestamp/); #__PACKAGE__->set_up_table('feat_link'); __PACKAGE__->set_sql( get_children => qq{ SELECT fl.child_feat FROM feat_link fl LEFT JOIN phys_ev p ON p.feat_name = fl.child_feat WHERE fl.parent_feat = ? AND p.feat_name = fl.child_feat AND p.ev_type = "working" } ); 1;
25.368421
78
0.688797
ed60929b25b55577a110d00f03ad6831e29bc354
1,373
pm
Perl
hardware/server/ibm/hmc/ssh/plugin.pm
alenorcy/centreon-plugins
d7603030c24766935ed07e6ebe1082e16d6fdb4a
[ "Apache-2.0" ]
null
null
null
hardware/server/ibm/hmc/ssh/plugin.pm
alenorcy/centreon-plugins
d7603030c24766935ed07e6ebe1082e16d6fdb4a
[ "Apache-2.0" ]
null
null
null
hardware/server/ibm/hmc/ssh/plugin.pm
alenorcy/centreon-plugins
d7603030c24766935ed07e6ebe1082e16d6fdb4a
[ "Apache-2.0" ]
null
null
null
# # Copyright 2019 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for # service performance. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # package hardware::server::ibm::hmc::ssh::plugin; use strict; use warnings; use base qw(centreon::plugins::script_simple); sub new { my ($class, %options) = @_; my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; $self->{version} = '0.1'; %{$self->{modes}} = ( 'hardware-errors' => 'hardware::server::ibm::hmc::ssh::mode::hardwareerrors', 'led-status' => 'hardware::server::ibm::hmc::ssh::mode::ledstatus', ); return $self; } 1; __END__ =head1 PLUGIN DESCRIPTION Check IBM HMC Hardware (in ssh with 'plink' command). =cut
27.46
85
0.697742
ed45bf39915f988dd4fb7e207b364f638c9d2f0e
1,744
t
Perl
t/except.t
gitpan/Try-Tiny-Except
84ecf93f5c0e850ed7d80edfadb52c2312d62813
[ "Artistic-1.0" ]
null
null
null
t/except.t
gitpan/Try-Tiny-Except
84ecf93f5c0e850ed7d80edfadb52c2312d62813
[ "Artistic-1.0" ]
2
2016-08-27T07:22:55.000Z
2016-10-29T08:10:05.000Z
t/except.t
tfoertsch/perl-Try-Tiny-Except
2ff089079025bed42b61a6b76ac2c6e874b8e225
[ "Artistic-1.0" ]
null
null
null
#!/usr/bin/perl use strict; use warnings; use Test::More tests => 8; use Try::Tiny::Except; sub _eval { local $@; local $Test::Builder::Level = $Test::Builder::Level + 2; return ( scalar(eval { $_[0]->(); 1 }), $@ ); } sub lives_ok (&$) { my ( $code, $desc ) = @_; local $Test::Builder::Level = $Test::Builder::Level + 1; my ( $ok, $error ) = _eval($code); ok($ok, $desc ); diag "error: $@" unless $ok; } sub throws_ok (&$$) { my ( $code, $regex, $desc ) = @_; local $Test::Builder::Level = $Test::Builder::Level + 1; my ( $ok, $error ) = _eval($code); if ( $ok ) { fail($desc); } else { like($error || '', $regex, $desc ); } } throws_ok { local $Try::Tiny::Except::always_propagate=sub{/foo/}; try { die "foo"; }; } qr/foo/, "except w/o catch block"; throws_ok { local $Try::Tiny::Except::always_propagate=sub{/foo/}; try { die "foo"; } catch {die "bar"}; } qr/foo/, "except w/ catch block"; lives_ok { local $Try::Tiny::Except::always_propagate=sub{/foo/}; try { die "bar"; }; } "except w/o catch if \$always_propagate does not match"; throws_ok { local $Try::Tiny::Except::always_propagate=sub{/foo/}; try { die "baz"; } catch {die "bar"}; } qr/bar/, "except w/ catch if \$always_propagate does not match"; my $finally=0; throws_ok { local $Try::Tiny::Except::always_propagate=sub{/foo/}; try { die "foo"; } finally {$finally++}; } qr/foo/, "except w/o catch w/ finally"; is $finally, 1, 'finally called'; throws_ok { local $Try::Tiny::Except::always_propagate=sub{/foo/}; try { die "foo"; } catch {die "bar"} finally {$finally++}; } qr/foo/, "except w/ catch w/ finally"; is $finally, 2, 'finally called'; done_testing;
18.956522
66
0.582569
ed5a67ce66c27ec1a5e4183d7869e163234dfea7
126
pl
Perl
examples/experimental.pl
dickmao/tree-sitter-perl
5308d95b43160c896410c886706c9aaf4d17d81d
[ "MIT" ]
16
2020-12-07T22:38:43.000Z
2022-01-26T09:11:53.000Z
examples/experimental.pl
dickmao/tree-sitter-perl
5308d95b43160c896410c886706c9aaf4d17d81d
[ "MIT" ]
18
2022-02-24T17:03:28.000Z
2022-03-16T23:12:49.000Z
examples/experimental.pl
dickmao/tree-sitter-perl
5308d95b43160c896410c886706c9aaf4d17d81d
[ "MIT" ]
4
2021-06-30T20:47:32.000Z
2022-02-15T16:26:18.000Z
use feature 'switch'; use v5.14; use Try::Tiny; try { my $a = 1; print "tying..\n"; } catch { print "catch block"; };
9.692308
22
0.563492
73e0cd1b69c5df7a3314c8f22d2a8cf453ddefc7
3,041
pm
Perl
extlib/lib/perl5/Bio/DescribableI.pm
Julianne95/Moringa_genome
3be4f736e80232cd4b29fdeb4efb0f97c2f1e23e
[ "Artistic-2.0" ]
null
null
null
extlib/lib/perl5/Bio/DescribableI.pm
Julianne95/Moringa_genome
3be4f736e80232cd4b29fdeb4efb0f97c2f1e23e
[ "Artistic-2.0" ]
7
2020-03-10T18:14:30.000Z
2022-03-25T18:53:36.000Z
extlib/lib/perl5/Bio/DescribableI.pm
Julboteroc/bidens_pilosa
8a8e2bb1449a2bb2e1dffc8856a77b6f4f4bf82a
[ "Artistic-2.0" ]
null
null
null
# # This module is licensed under the same terms as Perl itself. You use, # modify, and redistribute it under the terms of the Perl Artistic License. # =head1 NAME Bio::DescribableI - interface for objects with human readable names and descriptions =head1 SYNOPSIS # to test this is a describable object $obj->isa("Bio::DescribableI") || $obj->throw("$obj does not implement the Bio::DescribableI interface"); # accessors $name = $obj->display_name(); $desc = $obj->description(); =head1 DESCRIPTION This interface describes methods expected on describable objects, ie ones which have human displayable names and descriptions =head1 FEEDBACK =head2 Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists =head2 Support Please direct usage questions or support issues to the mailing list: I<bioperl-l@bioperl.org> rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. =head2 Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: https://github.com/bioperl/bioperl-live/issues =head1 AUTHOR - Ewan Birney Email birney@sanger.ac.uk =cut package Bio::DescribableI; $Bio::DescribableI::VERSION = '1.7.5'; use strict; use base qw(Bio::Root::RootI); =head1 Implementation Specific Functions These functions are the ones that a specific implementation must define. =head2 display_name Title : display_name Usage : $string = $obj->display_name() Function: A string which is what should be displayed to the user the string should have no spaces (ideally, though a cautious user of this interface would not assume this) and should be less than thirty characters (though again, double checking this is a good idea) Returns : A scalar Status : Virtual =cut sub display_name { my ($self) = @_; $self->throw_not_implemented(); } =head2 description Title : description Usage : $string = $obj->description() Function: A text string suitable for displaying to the user a description. This string is likely to have spaces, but should not have any newlines or formatting - just plain text. The string should not be greater than 255 characters and clients can feel justified at truncating strings at 255 characters for the purposes of display Returns : A scalar Status : Virtual =cut sub description { my ($self) = @_; $self->throw_not_implemented(); } 1;
25.554622
84
0.724762
73fb107c6933905ccabad911264a17647c0e7949
5,891
pm
Perl
Main/lib/perl/WorkflowSteps/MakeDownloadFiles.pm
EuPathDB/OrthoMCLWorkflow
db6b801055a84a343b574c2310eda80e6a57f14b
[ "Apache-2.0" ]
null
null
null
Main/lib/perl/WorkflowSteps/MakeDownloadFiles.pm
EuPathDB/OrthoMCLWorkflow
db6b801055a84a343b574c2310eda80e6a57f14b
[ "Apache-2.0" ]
null
null
null
Main/lib/perl/WorkflowSteps/MakeDownloadFiles.pm
EuPathDB/OrthoMCLWorkflow
db6b801055a84a343b574c2310eda80e6a57f14b
[ "Apache-2.0" ]
null
null
null
package OrthoMCLWorkflow::Main::WorkflowSteps::MakeDownloadFiles; @ISA = (ApiCommonWorkflow::Main::WorkflowSteps::WorkflowStep); use strict; use ApiCommonWorkflow::Main::WorkflowSteps::WorkflowStep; sub run { my ($self, $test, $undo) = @_; my $workflowDataDir = $self->getWorkflowDataDir(); my $relativeDownloadSiteDir = $self->getParamValue('relativeDownloadSiteDir'); my $release = $self->getParamValue('release'); my $project = $self->getParamValue('project'); my $corePairsDir = $self->getParamValue('corePairsDir'); my $residualPairsDir = $self->getParamValue('residualPairsDir'); my $orthomclVersion = $self->getParamValue('orthomclVersion'); $orthomclVersion =~ s/_//g; my $groupFile = "$workflowDataDir/genomicSitesFiles_$orthomclVersion/orthomclGroups.txt"; #original for core plus periph proteomes build $self->testInputFile('groupsFile', "$workflowDataDir/finalGroups.txt"); $self->testInputFile('groupsFile', "$workflowDataDir/coreGroups/orthomclGroups.txt"); my $websiteFilesDir = $self->getWebsiteFilesDir($test); my $seqsDownloadFileName = "$websiteFilesDir/$relativeDownloadSiteDir/aa_seqs_$project-$release.fasta"; my $deflinesDownloadFileName = "$websiteFilesDir/$relativeDownloadSiteDir/deflines_$project-$release.txt"; my $groupsDownloadFileName = "$websiteFilesDir/$relativeDownloadSiteDir/groups_$project-$release.txt"; my $domainsDownloadFileName = "$websiteFilesDir/$relativeDownloadSiteDir/domainFreqs_$project-$release.txt"; my $genomeSummaryFileName = "$websiteFilesDir/$relativeDownloadSiteDir/genomeSummary_$project-$release.txt"; my $corePairsDownloadDir = "$websiteFilesDir/$relativeDownloadSiteDir/corePairs_$project-$release"; my $residualPairsDownloadDir = "$websiteFilesDir/$relativeDownloadSiteDir/residualPairs_$project-$release"; if ($undo) { $self->runCmd($test, "rm $seqsDownloadFileName.gz"); $self->runCmd($test, "rm $deflinesDownloadFileName.gz"); $self->runCmd($test, "rm $groupsDownloadFileName.gz"); $self->runCmd($test, "rm $domainsDownloadFileName.gz"); $self->runCmd($test, "rm $genomeSummaryFileName.gz"); $self->runCmd($test, "rm -r $corePairsDownloadDir"); $self->runCmd($test, "rm -r $residualPairsDownloadDir"); } else { # fasta my $sql = $self->getSql(1); $self->runCmd($test, "mkdir -p $websiteFilesDir/$relativeDownloadSiteDir"); $self->runCmd($test, "gusExtractSequences --outputFile $seqsDownloadFileName --idSQL \"$sql\""); $self->runCmd($test, "gzip $seqsDownloadFileName"); # deflines $sql = $self->getSql(0); $self->runCmd($test, "gusExtractSequences --outputFile $deflinesDownloadFileName --idSQL \"$sql\" --noSequence"); $self->runCmd($test, "gzip $deflinesDownloadFileName"); # domain frequencies my $extDbRlsId = $self->getExtDbRlsId($test, "PFAM|" . $self->getExtDbVersion($test, "PFAM")); $sql = $self->getDomainsSql($extDbRlsId); $self->runCmd($test, "makeFileWithSql --outFile $domainsDownloadFileName --sql \"$sql\""); $self->runCmd($test, "gzip $domainsDownloadFileName"); # groups # original for core plu periph proteomes $self->runCmd($test, "cp $workflowDataDir/finalGroups.txt $groupsDownloadFileName"); $self->runCmd($test, "cp $groupFile $groupsDownloadFileName"); $self->runCmd($test, "gzip $groupsDownloadFileName"); # genome summary $sql = $self->getGenomeSummarySql(); $self->runCmd($test, "makeFileWithSql --outFile $genomeSummaryFileName --sql \"$sql\" --includeHeader --outDelimiter \"\\t\""); $self->runCmd($test, "gzip $genomeSummaryFileName"); # pairs $self->runCmd($test, "mkdir -p $corePairsDownloadDir"); $self->runCmd($test, "cp $workflowDataDir/$corePairsDir/* $corePairsDownloadDir"); $self->runCmd($test, "gzip $corePairsDownloadDir/*"); $self->runCmd($test, "mkdir -p $residualPairsDownloadDir"); $self->runCmd($test, "cp $workflowDataDir/$residualPairsDir/* $residualPairsDownloadDir"); $self->runCmd($test, "gzip $residualPairsDownloadDir/*"); } } sub getSql { my ($self, $seq) = @_; my $SS = $seq? ", x.sequence" : ""; return " SELECT x.secondary_identifier || ' | ' || CASE WHEN og.name is null THEN 'no_group' ELSE og.name END || ' | ' || x.description$SS FROM dots.externalaasequence x, apidb.orthologgroup og, apidb.orthologgroupaasequence oga WHERE x.aa_sequence_id = oga.aa_sequence_id(+) and oga.ortholog_group_id = og.ortholog_group_id(+) and og.core_peripheral_residual in ('P','R') "; } sub getDomainsSql { my ($self, $extDbRlsId) = @_; return " SELECT name as Orthomcl_Group, primary_identifier as Pfam_Name, round(count(aa_sequence_id)/number_of_members,4) as Frequency FROM (SELECT distinct og.name, db.primary_identifier, ogs.aa_sequence_id, og.number_of_members FROM apidb.OrthologGroupAaSequence ogs, apidb.OrthologGroup og, dots.DomainFeature df, dots.DbRefAaFeature dbaf, sres.DbRef db WHERE og.ortholog_group_id != 0 AND ogs.ortholog_group_id = og.ortholog_group_id AND og.core_peripheral_residual in ('P','R') AND df.aa_sequence_id = ogs.aa_sequence_id AND dbaf.aa_feature_id = df.aa_feature_id AND db.db_ref_id = dbaf.db_ref_id AND db.external_database_release_id = $extDbRlsId) GROUP BY name, number_of_members, primary_identifier ORDER BY name, frequency desc"; } sub getGenomeSummarySql { my ($self) = @_; return " SELECT ot.name, ot.three_letter_abbrev, case ot.core_peripheral when 'C' then 'Core' when 'P' then 'Peripheral' else '' end as core_peripheral, od.resource_name, od.resource_url FROM apidb.OrthomclTaxon ot, apidb.OrthomclResource od WHERE od.orthomcl_taxon_id(+) = ot.orthomcl_taxon_id AND ot.is_species != 0 ORDER BY ot.name"; }
48.286885
150
0.709896
ed4682ef0dc03abe3fa2f2019d9694af7be278dc
1,178
t
Perl
S14-roles/anonymous.t
b2gills/roast
4b689b3c9cc2642fdeb8176a24415ec1540f013f
[ "Artistic-2.0" ]
null
null
null
S14-roles/anonymous.t
b2gills/roast
4b689b3c9cc2642fdeb8176a24415ec1540f013f
[ "Artistic-2.0" ]
null
null
null
S14-roles/anonymous.t
b2gills/roast
4b689b3c9cc2642fdeb8176a24415ec1540f013f
[ "Artistic-2.0" ]
null
null
null
use v6; use Test; plan 13; # L<S14/Roles> { my $a = {:x}; is $a, {:x}, "basic sanity"; lives-ok { $a does role { has $.cool = "yeah" }}, "anonymous role mixin"; is $a, {:x}, "still basic sanity"; is $a.cool, "yeah", "anonymous role gave us an attribute"; } # The same, but we story the anonymous role in a variable { my $a = {:x}; is $a, {:x}, "basic sanity"; my $role; lives-ok { $role = role { has $.cool = "yeah" } }, "anonymous role definition"; lives-ok { $a does $role }, "anonymous role variable mixin"; is $a, {:x}, "still basic sanity"; is $a.cool, "yeah", "anonymous role variable gave us an attribute"; } # Guarantee roles are really first-class-entities: { sub role_generator(Str $val) { return role { has $.cool = $val; } } my $a = {:x}; is $a, {:x}, "basic sanity"; #?niecza todo 'This is being misinterpreted as an initial value' lives-ok {$a does role_generator("hi")}, "role generating function mixin"; is $a, {:x}, "still basic sanity"; #?niecza skip 'roles are run once and only capture the protopad' is $a.cool, "hi", "role generating function gave us an attribute"; } # vim: ft=perl6
26.177778
81
0.609508
ed6bea1022e42aa40062d45764259bbe095a5ac5
2,733
pm
Perl
plugins/GoogleOpenIDConnect/extlib/OAuth/Lite2/Server/GrantHandler/ClientCredentials.pm
movabletype/mt-plugin-google-openid-connect
f3992f312dc817ed64d28dc28aa916c4642054a9
[ "MIT" ]
3
2015-11-06T16:06:28.000Z
2015-11-19T06:08:15.000Z
plugins/GoogleOpenIDConnect/extlib/OAuth/Lite2/Server/GrantHandler/ClientCredentials.pm
movabletype/mt-plugin-google-openid-connect
f3992f312dc817ed64d28dc28aa916c4642054a9
[ "MIT" ]
3
2015-11-12T09:03:45.000Z
2016-02-21T11:41:16.000Z
plugins/GoogleOpenIDConnect/extlib/OAuth/Lite2/Server/GrantHandler/ClientCredentials.pm
movabletype/mt-plugin-google-openid-connect
f3992f312dc817ed64d28dc28aa916c4642054a9
[ "MIT" ]
null
null
null
package OAuth::Lite2::Server::GrantHandler::ClientCredentials; use strict; use warnings; use parent 'OAuth::Lite2::Server::GrantHandler'; use OAuth::Lite2::Server::Error; use OAuth::Lite2::ParamMethod::AuthHeader; use Carp (); sub handle_request { my ($self, $dh) = @_; my $req = $dh->request; my $parser = OAuth::Lite2::ParamMethod::AuthHeader->new; my $header_credentials = $parser->basic_credentials($req); my $client_id = ($header_credentials->{client_id}) ? $header_credentials->{client_id} : $req->param("client_id"); my $client_secret = ($header_credentials->{client_secret}) ? $header_credentials->{client_secret} : $req->param("client_secret"); my $user_id = $dh->get_client_user_id($client_id, $client_secret); OAuth::Lite2::Server::Error::InvalidClient->throw unless defined $user_id; my $scope = $req->param("scope"); my $auth_info = $dh->create_or_update_auth_info( client_id => $client_id, user_id => $user_id, scope => $scope, ); Carp::croak "OAuth::Lite2::Server::DataHandler::create_or_update_auth_info doesn't return OAuth::Lite2::Model::AuthInfo" unless ($auth_info && $auth_info->isa("OAuth::Lite2::Model::AuthInfo")); my $access_token = $dh->create_or_update_access_token( auth_info => $auth_info, ); Carp::croak "OAuth::Lite2::Server::DataHandler::create_or_update_access_token doesn't return OAuth::Lite2::Model::AccessToken" unless ($access_token && $access_token->isa("OAuth::Lite2::Model::AccessToken")); my $res = { token_type => 'Bearer', access_token => $access_token->token, }; $res->{expires_in} = $access_token->expires_in if $access_token->expires_in; $res->{refresh_token} = $auth_info->refresh_token if $auth_info->refresh_token; $res->{scope} = $auth_info->scope if $auth_info->scope; return $res; } =head1 NAME OAuth::Lite2::Server::GrantHandler::ClientCredentials - handler for 'client_credentials' grant_type request =head1 SYNOPSIS my $handler = OAuth::Lite2::Server::GrantHandler::ClientCredentials->new; my $res = $handler->handle_request( $data_handler ); =head1 DESCRIPTION handler for 'client_credentials' grant_type request. =head1 METHODS =head2 handle_request( $req ) See L<OAuth::Lite2::Server::GrantHandler> document. =head1 AUTHOR Lyo Kato, E<lt>lyo.kato@gmail.comE<gt> =head1 COPYRIGHT AND LICENSE Copyright (C) 2010 by Lyo Kato This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. =cut 1;
30.366667
133
0.686791
ed008abc9282f9bd18ea6ac7e7077f5e2568bba5
1,298
pm
Perl
rest-server/lib/App/Routes.pm
NozakiLabs/uranus
3887fed9ec2ddff26beb9f7cfd4ec623ae2fb20b
[ "MIT" ]
5
2020-11-27T08:34:58.000Z
2022-01-09T20:48:02.000Z
rest-server/lib/App/Routes.pm
NozakiLabs/pastebin_crawler
3717a3e3c33769fb95b7e47e34c62a96fba61f7a
[ "MIT" ]
1
2021-01-21T13:36:59.000Z
2021-01-21T13:36:59.000Z
rest-server/lib/App/Routes.pm
NozakiLabs/pastebin_crawler
3717a3e3c33769fb95b7e47e34c62a96fba61f7a
[ "MIT" ]
null
null
null
package App::Routes; use strict; use warnings; use Mojo::Base -base; has "routes"; sub register { my ($self) = @_; my $routes = $self -> routes(); $routes -> get("/" => sub { shift -> redirect_to("/company") }); $routes -> get("/company") -> to("company#index"); $routes -> get("/company/:id") -> to ("company#show"); $routes -> post("/company") -> to ("company#store"); $routes -> put("/company/:id") -> to("company#update"); $routes -> delete("/company/:id") -> to("company#remove"); $routes -> get("/rule") -> to("rule#index"); $routes -> get("/rule/:id") -> to ("rule#show"); $routes -> post("/rule") -> to ("rule#store"); $routes -> put("/rule/:id") -> to("rule#update"); $routes -> delete("/rule/:id") -> to("rule#remove"); $routes -> get("/alert") -> to("alert#index"); $routes -> get("/alert/:id") -> to ("alert#show"); $routes -> post("/alert") -> to ("alert#store"); $routes -> put("/alert/:id") -> to("alert#update"); $routes -> delete("/alert/:id") -> to("alert#remove"); $routes -> get("/history") -> to("history#index"); $routes -> get("/history/:id") -> to ("history#show"); $routes -> post("/history") -> to ("history#store"); $routes -> put("/history/:id") -> to("history#update"); $routes -> delete("/history/:id") -> to("history#remove"); } 1;
30.186047
59
0.559322
ed5690d963459b1b133441beff6b1cb97ea0f906
817
pl
Perl
regress/usr.sbin/syslogd/args-client-bind6.pl
ArrogantWombatics/openbsd-src
75721e1d44322953075b7c4b89337b163a395291
[ "BSD-3-Clause" ]
1
2019-02-16T13:29:23.000Z
2019-02-16T13:29:23.000Z
regress/usr.sbin/syslogd/args-client-bind6.pl
ArrogantWombatics/openbsd-src
75721e1d44322953075b7c4b89337b163a395291
[ "BSD-3-Clause" ]
1
2018-08-21T03:56:33.000Z
2018-08-21T03:56:33.000Z
regress/usr.sbin/syslogd/args-client-bind6.pl
ArrogantWombaticus/openbsd-src
75721e1d44322953075b7c4b89337b163a395291
[ "BSD-3-Clause" ]
null
null
null
# The syslogd binds UDP socket on ::1. # The client writes a message into a ::1 UDP socket. # The syslogd writes it into a file and through a pipe. # The syslogd passes it via UDP to the loghost. # The server receives the message on its UDP socket. # Find the message in client, file, pipe, syslogd, server log. # Check that the file log contains the localhost name. # Check that fstat contains a bound UDP socket. use strict; use warnings; use Socket; our %args = ( client => { connect => { domain => AF_INET6, addr => "::1", port => 514 }, }, syslogd => { options => ["-U", "[::1]"], fstat => { qr/^root .* internet/ => 0, qr/^_syslogd .* internet/ => 3, qr/ internet6 dgram udp \[::1\]:514$/ => 1, }, }, file => { loggrep => qr/ localhost /. get_testgrep(), }, ); 1;
25.53125
63
0.610771
ed47ad0537bd86c2d6ff4208b42c607499b1e5eb
621
pl
Perl
sdcard-wifi-ssh/initrd_extracted/usr/lib/arm-linux-gnueabihf/perl-base/unicore/lib/InSC/Consona2.pl
zwo-bot/keybow-firmware
0de2da9c4be1ee588f92f486b682985dace6e633
[ "MIT" ]
1
2019-02-22T05:19:40.000Z
2019-02-22T05:19:40.000Z
sdcard-wifi-ssh/initrd_extracted/usr/lib/arm-linux-gnueabihf/perl-base/unicore/lib/InSC/Consona2.pl
zwo-bot/keybow-firmware
0de2da9c4be1ee588f92f486b682985dace6e633
[ "MIT" ]
null
null
null
sdcard-wifi-ssh/initrd_extracted/usr/lib/arm-linux-gnueabihf/perl-base/unicore/lib/InSC/Consona2.pl
zwo-bot/keybow-firmware
0de2da9c4be1ee588f92f486b682985dace6e633
[ "MIT" ]
1
2020-11-04T07:54:34.000Z
2020-11-04T07:54:34.000Z
# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! # This file is machine-generated by lib/unicore/mktables from the Unicode # database, Version 10.0.0. Any changes made here will be lost! # !!!!!!! INTERNAL PERL USE ONLY !!!!!!! # This file is for internal use by core Perl only. The format and even the # name or existence of this file are subject to change without notice. Don't # use it directly. Use Unicode::UCD to access the Unicode character data # base. return <<'END'; V24 6448 6450 6451 6458 6593 6600 6744 6746 7102 7104 7152 7154 7213 7220 43188 43189 43343 43347 43584 43598 43995 44003 72330 72342 END
15.923077
77
0.711755
ed5b1b11eeefcbafd373736075e73ff591da58e6
3,010
pl
Perl
sandbox/genMETA.pl
lancew/Release-Checklist
7e710d3c17db0b525d22f9d6c5acab1d65ee9176
[ "Artistic-2.0" ]
null
null
null
sandbox/genMETA.pl
lancew/Release-Checklist
7e710d3c17db0b525d22f9d6c5acab1d65ee9176
[ "Artistic-2.0" ]
null
null
null
sandbox/genMETA.pl
lancew/Release-Checklist
7e710d3c17db0b525d22f9d6c5acab1d65ee9176
[ "Artistic-2.0" ]
null
null
null
#!/pro/bin/perl use strict; use warnings; use Getopt::Long qw(:config bundling nopermute); GetOptions ( "c|check" => \ my $check, "v|verbose:1" => \(my $opt_v = 0), ) or die "usage: $0 [--check]\n"; use lib "sandbox"; use genMETA; my $meta = genMETA->new ( from => "Checklist.pm", verbose => $opt_v, ); $meta->from_data (<DATA>); unlink "META.yml", "META.json"; $meta->write_yaml (); $meta->gen_cpanfile (); if ($check) { $meta->check_encoding (); $meta->check_required (); my @ef = glob "examples/*"; $meta->check_minimum ([ "t", @ef, "Checklist.pm", "Makefile.PL" ]); $meta->done_testing (); } elsif ($opt_v) { $meta->print_yaml (); } else { $meta->fix_meta (); } __END__ --- #YAML:1.0 name: Release-Checklist version: VERSION abstract: A QA checklist for CPAN releases license: perl author: - H.Merijn Brand <h.m.brand@xs4all.nl> generated_by: Author distribution_type: module release_status: stable provides: Release::Checklist: file: Checklist.pm version: VERSION requires: perl: 5.006 Test::More: 0.88 configure_requires: ExtUtils::MakeMaker: 0 test_requires: Test::Harness: 0 Test::More: 0.88 recommends: perl: 5.030000 CPAN::Meta::Converter: 2.150010 CPAN::Meta::Validator: 2.150010 Devel::Cover: 1.36 Devel::PPPort: 3.58 JSON::PP: 4.05 Module::CPANTS::Analyse: 1.01 Module::Release: 2.125 Parse::CPAN::Meta: 2.150010 Perl::Critic: 1.138 Perl::Critic::TooMuchCode: 0.13 Perl::MinimumVersion: 1.38 Perl::Tidy: 20200619 Pod::Escapes: 1.07 Pod::Parser: 1.63 Pod::Spell: 1.20 Pod::Spell::CommonMistakes: 1.002 Test2::Harness: 1.000020 Test::CPAN::Changes: 0.400002 Test::CPAN::Meta::YAML: 0.25 Test::Kwalitee: 1.28 Test::Manifest: 2.021 Test::MinimumVersion: 0.101082 Test::MinimumVersion::Fast: 0.04 Test::More: 1.302175 Test::Perl::Critic: 1.04 Test::Perl::Critic::Policy: 1.138 Test::Pod: 1.52 Test::Pod::Coverage: 1.10 Test::Version: 2.09 Text::Aspell: 0.09 Text::Ispell: 0.04 Text::Markdown: 1.000031 resources: license: http://dev.perl.org/licenses/ repository: https://github.com/Tux/Release-Checklist bugtracker: https://github.com/Tux/Release-Checklist/issues xIRC: irc://irc.perl.org/#toolchain meta-spec: version: 1.4 url: http://module-build.sourceforge.net/META-spec-v1.4.html
29.223301
79
0.51794
ed4f1b29a08104bcaddfb091ad52f8d895adfa4e
1,432
t
Perl
t/02-keys.t
gitpan/WebService-Algolia
1dd8b760585d0931b5df15dfb566892b60db8b81
[ "Artistic-1.0" ]
null
null
null
t/02-keys.t
gitpan/WebService-Algolia
1dd8b760585d0931b5df15dfb566892b60db8b81
[ "Artistic-1.0" ]
null
null
null
t/02-keys.t
gitpan/WebService-Algolia
1dd8b760585d0931b5df15dfb566892b60db8b81
[ "Artistic-1.0" ]
null
null
null
use Test::Modern; use t::lib::Harness qw(alg skip_unless_has_keys); skip_unless_has_keys; subtest 'Global Key Management' => sub { my $keys = alg->get_keys; cmp_deeply $keys->{keys} => [], 'Correctly retrieved no keys' or diag explain $keys; my $key = alg->create_key({})->{key}; ok $key, "Successfully created key: '$key'"; sleep 1; my $key_object = alg->get_key($key); cmp_deeply $key_object => { acl => [], validity => 0, value => $key, }, "Successfully retrieved key '$key'" or diag explain $key_object; $keys = alg->get_keys; cmp_deeply $keys->{keys} => [{ acl => [], validity => 0, value => $key, }], "Retrieved key '$key' again" or diag explain $keys; ok alg->update_key($key, { acl => ['search']}), "Successfully updated key '$key'"; sleep 1; $key_object = alg->get_key($key); cmp_deeply $key_object => { acl => ['search'], validity => 0, value => $key, }, 'Retrieved key matches with updated fields' or diag explain $key_object; ok alg->delete_key($key), "Deleted key '$key' completely"; sleep 1; $keys = alg->get_keys; cmp_deeply $keys->{keys} => [], 'Correctly retrieved no keys' or diag explain $keys; }; done_testing;
25.122807
62
0.52933
73fc60a0ea64b5392856d3d5d1debac25c710771
18,896
pl
Perl
lib/fathead/mdn_css/parse.pl
Acidburn0zzz/zeroclickinfo-fathead
90016212c7433860026289db0cfcb05051dc531d
[ "Apache-2.0" ]
null
null
null
lib/fathead/mdn_css/parse.pl
Acidburn0zzz/zeroclickinfo-fathead
90016212c7433860026289db0cfcb05051dc531d
[ "Apache-2.0" ]
null
null
null
lib/fathead/mdn_css/parse.pl
Acidburn0zzz/zeroclickinfo-fathead
90016212c7433860026289db0cfcb05051dc531d
[ "Apache-2.0" ]
null
null
null
#!/usr/bin/env perl use v5.10.0; use strict; use warnings; use Carp 'croak'; use File::Spec::Functions; use feature 'state'; use Mojo::DOM; use Mojo::URL; use Mojo::Util 'slurp'; use Text::Trim; use HTML::Strip; use HTML::Entities; # Used by HTML::Strip use Data::Printer return_value => 'dump'; use YAML::XS 'LoadFile'; =begin This script extracts data from html files under the downloads folder =cut # Keep track of unique keys my %SEEN; # Map categories to redirect keywords # These are used to create additional redirects my %redirect_map = ( 'css pseudo elements' => 'pseudo element', 'css pseudo classes' => 'pseudo class', 'css properties' => 'property', 'css functions' => 'function', 'css data types' => 'data type', 'css at rules' => 'at rule', ); # Inverse css_categories.yml # - The per-category structure is easier read/edit # - The inverse mapping is used to lookup titles as we create articles my ( $categories, $extra_categories, $units ) = LoadFile('css_categories.yml'); my %titles; my %units; # Map titles to categories while ( my ( $category, $array ) = each %{$categories} ) { foreach my $title ( @{$array} ) { $titles{$title}{categories} = []; push @{ $titles{$title}{categories} }, $category; } } # Map titles to extra categories while ( my ( $category, $array ) = each %{$extra_categories} ) { foreach my $title ( @{$array} ) { $titles{$title}{extra_categories} = []; push @{ $titles{$title}{extra_categories} }, $category; } } # Map titles to units while ( my ( $unit, $array ) = each %{$units} ) { foreach my $title ( @{$array} ) { $units{$title} = $unit; } } # p(%redirect_map); # p(%titles); # p(%units); =begin Process fragment data like matrix3d() in https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function#matrix3d() whenever a url matches one of these regexes. Each fragment shall go to its own line in the output.txt file TODO: Confirm this is the correct approach =cut my $fragments_file = catfile 'download', 'fragments.txt'; # keys are urls, values are fragments my %url_fragment; if ( -e $fragments_file ) { open( my $fh, '<:encoding(UTF-8)', $fragments_file ) or die $!; while ( my $url = <$fh> ) { chomp $url; $url = Mojo::URL->new($url); my $url_clone = $url->clone; my $fragment = $url->fragment; $url = Mojo::URL->new( sprintf "%s://%s", $url_clone->protocol, $url_clone->host )->path( $url_clone->path ); push @{ $url_fragment{$url} }, $fragment; } } open( my $fh, ">", 'output.txt' ) or croak $!; ############### # PARSING LOOP ############### foreach my $html_file ( glob 'download/*.html' ) { say "\n----------------------------------------\n"; say "Processing $html_file"; my $dom = Mojo::DOM->new( slurp $html_file); =begin Name of CSS tag is found here: <!-- document-specific social tags --> <meta property="og:title" content=":right"> and the description is from here: <meta property="og:description" content="The :right CSS page pseudo-class matches any right page when printing a page. It allows to describe the styling of right-side page."> The link is found in a this section <link rel="canonical" ref="https://developer.mozilla.org/en-US/docs/Web/CSS/:right" > =cut my ( $title, $link, $description, $initial_value, @entries ); # Get canonical link to article $link = $dom->find('link')->first( sub { my $lnk = shift; return 1 if $lnk->attr('rel') and $lnk->attr('rel') =~ /canonical/; } ); $link = $link->attr('href') if $link; chomp $link; $link = Mojo::URL->new($link); if ( exists $url_fragment{$link} ) { say "*** Parsing fragment for $link ***"; parse_fragment_data( $link, $dom ); } # Get article title my $meta_with_title = $dom->find('meta')->first( sub { my $meta = $_; my $property = $meta->attr('property'); $property && $property =~ /og\:title/; } ); $title = lc $meta_with_title->attr('content') if $meta_with_title; my $h2 = $dom->at('h2#Summary'); if ($h2) { my $p = $h2->next; if ($p) { $description = $p->all_text; my $next = $p->next; if ( $next && $next->tag eq 'ul' ) { my $li = $next->at('li'); my $a = $li->at('a') if $li; if ( $a && $a->text =~ /Initial value/ ) { $initial_value = $li->text; $initial_value =~ s/://; $initial_value = _build_initial_value($initial_value); } else { $description .= $next->find('li')->map('all_text')->join(', '); } } } } else { my $wiki_article = $dom->at('article#wikiArticle'); if ($wiki_article) { my $div = $wiki_article->at('div'); if ($div) { my $next_element = $div->next; if ( $next_element && $next_element->tag eq 'p' ) { $description = $next_element->all_text; } } } } # Check if article already processed if ( exists $SEEN{$title} ) { say "SKIPPING: $title!"; next; } $SEEN{$title} = 1; # Get syntax code snippet my $code; # TODO # Preserve HTML and use the same lib as Mozilla # (http://prismjs.com/) to render code? if ( my $pre = $dom->at('#Syntax ~ pre') ) { if ( $pre->child_nodes->first->matches('code') ) { $code = $pre->child_nodes->first->all_text; } else { $code = $pre->to_string; } $code = trim($code); $code =~ s!\\0!\\\\0!; # say ''; # say $code; } #initial value is found in the table properties my $table_properties = $dom->at('table.properties'); if ($table_properties) { $initial_value = parse_initial_value($table_properties); } $description = create_abstract( $description, $code, $initial_value ); next unless $title && $link && $description; create_article( $title, $description, $link ); if ( $title =~ m/[():<>@]/ || exists $titles{$title} ) { create_redirects($title); } } #################### # HELPER FUNCTIONS #################### sub create_abstract { my ( $description, $code, $initial_value ) = @_; if ($description) { $description = trim($description); $description =~ s/\r?\n+/\\n/g; } else { say "NO DESCRIPTION!"; } $initial_value =~ s/\r?\n+/\\n/g if $initial_value; $code = _clean_code($code) if $code; my $out = "<p>$description</p>" if $description; $out .= "<p>$initial_value</p>" if $initial_value; $out .= "<pre><code>$code</code></pre>" if $code; $out = sprintf '<section class="prog__container">%s</section>', $out; return $out; } # Build HTML string containing Initial Value data sub parse_initial_value { my ($table_properties) = @_; #first <tr> Contains the initial value my $tr = $table_properties->find('tr')->first; my $th = $tr->at('th'); my $initial_value; if ($th) { my $a = $th->at('a'); if ( $a && $a->text =~ /Initial value/ ) { my $td = $tr->at('td'); if ( $td->at('ul') ) { for my $element ( $td->find('code, a, br')->each ) { $element->replace( $element->all_text ); } $initial_value .= $td->content; } else { $initial_value = trim( $td->all_text ); } $initial_value = trim($initial_value); $initial_value = _build_initial_value($initial_value); } } return $initial_value; } # Create Article and Redirects as needed # Write to output files sub create_article { my ( $title, $description, $link ) = @_; my @data; my $categories = ''; my $lookup = _category_title($title); if ( exists $titles{$lookup} ) { say "CATEGORY MATCH: "; p( $titles{$lookup} ); my @cats = @{ $titles{$lookup}->{categories} }; p(@cats); $categories = join '\\n', @cats; } push @data, _build_article( $title, $categories, $description, $link ); _write_to_file(@data); } sub create_redirects { =begin Check for CSS Functions like not() or for titles beginning with @ like @page and replace "()" with "function" in title e.g. "not()" -> "not function". remove @ and create output entry with redirect field =cut my $title = shift; my $title_clean; my $title_with_space; my $lookup = _category_title($title); my @data; my $postfix; my $outputline; # Add a space between the pseudo class and parentheses, when it is not present if ( $title =~ /(:?:?-moz[^\s\(]+)\((.+)\)/ ) { $title_with_space = "$1 ($2)"; $title_clean = _clean_string($title_with_space); } else { $title_clean = _clean_string($title); } if ( exists $titles{$lookup} ) { #TODO If multiple categories per article exist, improve redirect creation my $category = @{ $titles{$lookup}->{categories} }[0]; $postfix = $redirect_map{$category}; say "POSTFIX: $postfix"; } # Capture content inside parentheses # E.g. "::before (:before)" if ( $title =~ m/(.+) \((:.+|-webkit.+)\)/ ) { say "Has parens!"; my $outer = $1; my $inner = $2; say "OUTER: $outer"; say "INNER: $inner"; my $inner_clean = _clean_string($inner); push @data, _build_redirect( $outer, $title ); push @data, _build_redirect( $inner, $title ); push @data, _build_redirect( $inner_clean, $title ); if ($postfix) { push @data, _build_redirect( "$inner $postfix", $title ); push @data, _build_redirect( "$outer $postfix", $title ); push @data, _build_redirect( "$inner_clean $postfix", $title ); } } elsif ( $title_clean ne $title ) { push @data, _build_redirect( $title_clean, $title ); push @data, _build_redirect( "$title_clean $postfix", $title ) if $postfix; } elsif ($postfix) { push @data, _build_redirect( "$title $postfix", $title ); } _write_to_file(@data); } #################### # PRIVATE FUNCTIONS #################### # Build HTML string containing Initial Value data sub _build_initial_value { my ($content) = @_; my $initial_value = "<b>Initial Value: </b><em>$content</em>"; return $initial_value; } # Clean up code blocks # - strip HTML content # - collapse spaces # - escape newlines sub _clean_code { my ($code) = @_; my $hs = HTML::Strip->new( emit_spaces => 0, auto_reset => 1 ); $code = $hs->parse($code); $code =~ tr/ / /s; $code =~ s/\r?\n/\\n/g; return $code; } # Clean up title for lookup in Categories hash sub _category_title { my $title = shift; $title = $1 if $title =~ m/(::.+) \((:.+)\)/; $title =~ s/\(\)$//; say "CATEGORY TITLE: $title"; return $title; } # Remove certain non-alphanumeric characters sub _clean_string { my $input = shift; say "Input: '$input'"; $input =~ s/[:<>@()]//g; trim($input); say "Cleaned: '$input'"; return $input; } # Build Article string for given title, description, and link sub _build_article { my ( $title, $categories, $description, $link ) = @_; say ''; say "ARTICLE: $title"; say "LINK: $link"; say "CATEGORIES: $categories"; # say "DESCRIPTION: $description" if $description; return join "\t", ( $title, 'A', '', '', $categories, '', '', '', '', '', '', $description, $link ); } sub _build_redirect { my ( $title, $redirect ) = @_; say "REDIRECT: $title =========> $redirect"; return join "\t", ( $title, 'R', $redirect, '', '', '', '', '', '', '', '', '', '' ); } sub _write_to_file { my @parts = @_; for my $part (@parts) { say $fh $part; } } #################### # PARSING FRAGMENTS #################### sub parse_fragment_data { my ( $link, $dom ) = @_; state %already_processed; return if exists $already_processed{$link}; $already_processed{$link} = 1; if ( $link =~ qr/font-variant/ ) { #TODO: Implement parsing when the page is available. Currently #it generates 404 not found response say "Font Variant $link"; } elsif ( $link =~ qr/src/ ) { #TODO: Implement parsing when the page is available. Currently #it generates 404 not found response say "src $link"; } elsif ( $link =~ qr/color_value/ ) { for my $fragment ( @{ $url_fragment{$link} } ) { my $h3 = $dom->at("h3#$fragment"); next unless $h3; my $title = $fragment; my $url = $link->clone->fragment($title); my $description; my $next_element = $h3->next; =begin Collect all the description and code for the fragment in all the nodes following the current h3. When another h3 is encountered, write the previous h3 data and start over again until all h3s are processed =cut my $paragraphs; my $code_fragment; do { next unless $next_element; if ( $next_element->tag eq 'p' ) { $paragraphs .= $next_element->all_text; } else { $code_fragment .= $next_element->to_string; } $next_element = $next_element->next; } while ( $next_element && $next_element->tag ne 'h3' ); $description = create_abstract( $paragraphs, $code_fragment ); create_article( $title, $description, $url ); } } elsif ( $link =~ qr/filter/ ) { for my $fragment ( @{ $url_fragment{$link} } ) { =begin Some h3 elements have a variant form of the fragment as the id like <h3 id="blur()_2"> instead of <h3 id="blur()"> so regex will be used to match fragment with its correct h3 =cut my $h3 = $dom->find('h3')->first( sub { $_->attr('id') =~ qr/$fragment/; } ); next unless $h3; my $title = $fragment; my $url = $link->clone->fragment( $h3->attr('id') ); my $description; my $next_element = $h3->next; =begin Collect all the description and code for the fragment in h3 until we encounter a div which means we have reached the end of all the data for our current h3 =cut my $paragraphs; my $code_fragment; do { next unless $next_element; if ( $next_element->tag eq 'p' ) { $paragraphs .= $next_element->all_text; } else { $code_fragment .= $next_element->to_string; } $next_element = $next_element->next; } while ( $next_element && $next_element->tag ne 'div' ); $description = create_abstract( $paragraphs, $code_fragment ); create_article( $title, $description, $url ); } } elsif ( $link =~ qr/length/ ) { my $dl_collection = $dom->find('dl'); for my $dl ( $dl_collection->each ) { for my $dt ( $dl->find('dt')->each ) { my $title = $dt->all_text; #TODO: Add building of external urls? my $url = $link->clone->fragment( $dt->attr('id') ); my $dd = $dt->next; my $description; if ($dd) { $description = create_abstract( $dd->all_text ); } create_article( $title, $description, $url ); } } } elsif ( $link =~ qr/time|frequency|angle/ ) { my $h2 = $dom->at('h2#Summary'); my $ul_containing_fragments = $h2->following->first( sub { $_->tag eq 'ul' } ); if ($ul_containing_fragments) { for my $li ( $ul_containing_fragments->find('li')->each ) { my $title = $li->at('a')->text; my $url = $link->clone->fragment($title); =begin Taking 's' and 'ms' fragments for /time/ as examples their current description appears as below: s which represents a time in seconds... ms which represents a time in milliseconds... We remove the 'which' so that the description appears as: s represents a time in seconds... Which sounds right. =cut my $paragraph = $li->all_text; $paragraph =~ s/\s{1}which//; #for /frequency/ and /angle/ the example code #is contained in a table #for /time/ it is contained in a <pre> my $node_with_code = $link =~ /time/ ? 'pre' : 'table'; my $code_dom = $dom->at('h2#Examples')->following->first( sub { $_->tag eq $node_with_code; } ) if $dom->at('h2#Examples'); my $code; if ($code_dom) { if ( $code_dom->tag eq 'pre' ) { $code = $code_dom->all_text; } else { my $tbody = $code_dom->at('tbody'); my $trs = $tbody->find('tr'); for my $tr ( $trs->each ) { my $tds = $tr->find('td'); $tds->each( sub { my ( $td, $num ) = @_; my $td_text = trim( $td->all_text ); $code .= $td_text if $num == 1; $code .= " $td_text\n" if $num == 2; } ); } } } my $description = create_abstract( $paragraph, $code ); create_article( $title, $description, $url ); } } } else { warn "Unmatched $link in parse_fragment_data()"; } }
30.725203
80
0.510531
ed6c58379c61b6e1bb0ffa30acafaa3883bbe1f1
500,981
pm
Perl
worker/deps/openssl/config/archs/VC-WIN32/asm_avx2/configdata.pm
liwf616/mediasoup
99d1c696bd4b985ea8bf5348b7f520998e165c32
[ "ISC" ]
null
null
null
worker/deps/openssl/config/archs/VC-WIN32/asm_avx2/configdata.pm
liwf616/mediasoup
99d1c696bd4b985ea8bf5348b7f520998e165c32
[ "ISC" ]
null
null
null
worker/deps/openssl/config/archs/VC-WIN32/asm_avx2/configdata.pm
liwf616/mediasoup
99d1c696bd4b985ea8bf5348b7f520998e165c32
[ "ISC" ]
1
2021-06-11T10:53:24.000Z
2021-06-11T10:53:24.000Z
#! /usr/bin/env perl package configdata; use strict; use warnings; use Exporter; #use vars qw(@ISA @EXPORT); our @ISA = qw(Exporter); our @EXPORT = qw(%config %target %disabled %withargs %unified_info @disablables); our %config = ( AR => "lib", ARFLAGS => [ "/nologo" ], AS => "nasm", CC => "../config/fake_gcc.pl", CFLAGS => [ "/W3 /wd4090 /nologo /O2 /WX" ], CPP => "\$(CC) /EP /C", CPPDEFINES => [ ], CPPFLAGS => [ ], CPPINCLUDES => [ ], CXXFLAGS => [ ], HASHBANGPERL => "/usr/bin/env perl", LD => "link", LDFLAGS => [ "/nologo /debug" ], LDLIBS => [ ], MT => "mt", MTFLAGS => [ "-nologo" ], PERL => "/usr/bin/perl", RANLIB => "ranlib", RC => "rc", RCFLAGS => [ ], b32 => "1", b64 => "0", b64l => "0", bn_ll => "1", build_file => "makefile", build_file_templates => [ "Configurations/common0.tmpl", "Configurations/windows-makefile.tmpl", "Configurations/common.tmpl" ], build_infos => [ "./build.info", "crypto/build.info", "ssl/build.info", "engines/build.info", "apps/build.info", "test/build.info", "util/build.info", "tools/build.info", "fuzz/build.info", "crypto/objects/build.info", "crypto/md4/build.info", "crypto/md5/build.info", "crypto/sha/build.info", "crypto/mdc2/build.info", "crypto/hmac/build.info", "crypto/ripemd/build.info", "crypto/whrlpool/build.info", "crypto/poly1305/build.info", "crypto/blake2/build.info", "crypto/siphash/build.info", "crypto/sm3/build.info", "crypto/des/build.info", "crypto/aes/build.info", "crypto/rc2/build.info", "crypto/rc4/build.info", "crypto/idea/build.info", "crypto/aria/build.info", "crypto/bf/build.info", "crypto/cast/build.info", "crypto/camellia/build.info", "crypto/seed/build.info", "crypto/sm4/build.info", "crypto/chacha/build.info", "crypto/modes/build.info", "crypto/bn/build.info", "crypto/ec/build.info", "crypto/rsa/build.info", "crypto/dsa/build.info", "crypto/dh/build.info", "crypto/sm2/build.info", "crypto/dso/build.info", "crypto/engine/build.info", "crypto/buffer/build.info", "crypto/bio/build.info", "crypto/stack/build.info", "crypto/lhash/build.info", "crypto/rand/build.info", "crypto/err/build.info", "crypto/evp/build.info", "crypto/asn1/build.info", "crypto/pem/build.info", "crypto/x509/build.info", "crypto/x509v3/build.info", "crypto/conf/build.info", "crypto/txt_db/build.info", "crypto/pkcs7/build.info", "crypto/pkcs12/build.info", "crypto/ocsp/build.info", "crypto/ui/build.info", "crypto/cms/build.info", "crypto/ts/build.info", "crypto/srp/build.info", "crypto/cmac/build.info", "crypto/ct/build.info", "crypto/async/build.info", "crypto/kdf/build.info", "crypto/store/build.info", "test/ossl_shim/build.info" ], build_type => "release", builddir => ".", cflags => [ "-Wa,--noexecstack" ], conf_files => [ "Configurations/00-base-templates.conf", "Configurations/10-main.conf" ], cppflags => [ ], cxxflags => [ ], defines => [ "NDEBUG" ], dirs => [ "crypto", "ssl", "engines", "apps", "test", "util", "tools", "fuzz" ], dso_defines => [ "PADLOCK_ASM" ], dynamic_engines => "0", engdirs => [ ], ex_libs => [ ], export_var_as_fn => "1", includes => [ ], lflags => [ ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "AES_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ], libdir => "", major => "1", minor => "1.1", openssl_algorithm_defines => [ "OPENSSL_NO_COMP", "OPENSSL_NO_MD2", "OPENSSL_NO_RC5" ], openssl_api_defines => [ ], openssl_other_defines => [ "OPENSSL_RAND_SEED_OS", "OPENSSL_NO_AFALGENG", "OPENSSL_NO_ASAN", "OPENSSL_NO_CRYPTO_MDEBUG", "OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE", "OPENSSL_NO_DEVCRYPTOENG", "OPENSSL_NO_EC_NISTP_64_GCC_128", "OPENSSL_NO_EGD", "OPENSSL_NO_EXTERNAL_TESTS", "OPENSSL_NO_FUZZ_AFL", "OPENSSL_NO_FUZZ_LIBFUZZER", "OPENSSL_NO_HEARTBEATS", "OPENSSL_NO_MSAN", "OPENSSL_NO_SCTP", "OPENSSL_NO_SSL3", "OPENSSL_NO_SSL3_METHOD", "OPENSSL_NO_UBSAN", "OPENSSL_NO_UNIT_TEST", "OPENSSL_NO_WEAK_SSL_CIPHERS", "OPENSSL_NO_DYNAMIC_ENGINE", "OPENSSL_NO_AFALGENG" ], openssl_sys_defines => [ "OPENSSL_SYS_WIN32" ], openssl_thread_defines => [ "OPENSSL_THREADS" ], openssldir => "", options => "enable-ssl-trace no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic", perl_archname => "x86_64-linux-gnu-thread-multi", perl_cmd => "/usr/bin/perl", perl_version => "5.28.1", perlargv => [ "no-comp", "no-shared", "no-afalgeng", "enable-ssl-trace", "VC-WIN32" ], perlenv => { "AR" => undef, "ARFLAGS" => undef, "AS" => undef, "ASFLAGS" => undef, "BUILDFILE" => undef, "CC" => "../config/fake_gcc.pl", "CFLAGS" => undef, "CPP" => undef, "CPPDEFINES" => undef, "CPPFLAGS" => undef, "CPPINCLUDES" => undef, "CROSS_COMPILE" => undef, "CXX" => undef, "CXXFLAGS" => undef, "HASHBANGPERL" => undef, "LD" => undef, "LDFLAGS" => undef, "LDLIBS" => undef, "MT" => undef, "MTFLAGS" => undef, "OPENSSL_LOCAL_CONFIG_DIR" => undef, "PERL" => undef, "RANLIB" => undef, "RC" => undef, "RCFLAGS" => undef, "RM" => undef, "WINDRES" => undef, "__CNF_CFLAGS" => undef, "__CNF_CPPDEFINES" => undef, "__CNF_CPPFLAGS" => undef, "__CNF_CPPINCLUDES" => undef, "__CNF_CXXFLAGS" => undef, "__CNF_LDFLAGS" => undef, "__CNF_LDLIBS" => undef, }, prefix => "", processor => "", rc4_int => "unsigned int", sdirs => [ "objects", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool", "poly1305", "blake2", "siphash", "sm3", "des", "aes", "rc2", "rc4", "idea", "aria", "bf", "cast", "camellia", "seed", "sm4", "chacha", "modes", "bn", "ec", "rsa", "dsa", "dh", "sm2", "dso", "engine", "buffer", "bio", "stack", "lhash", "rand", "err", "evp", "asn1", "pem", "x509", "x509v3", "conf", "txt_db", "pkcs7", "pkcs12", "ocsp", "ui", "cms", "ts", "srp", "cmac", "ct", "async", "kdf", "store" ], shlib_major => "1", shlib_minor => "1", shlib_version_history => "", shlib_version_number => "1.1", sourcedir => ".", target => "VC-WIN32", tdirs => [ "ossl_shim" ], version => "1.1.1c", version_num => "0x1010103fL", ); our %target = ( AR => "lib", ARFLAGS => "/nologo", AS => "nasm", ASFLAGS => "", CC => "cl", CFLAGS => "/W3 /wd4090 /nologo /O2 /WX", CPP => "\$(CC) /EP /C", HASHBANGPERL => "/usr/bin/env perl", LD => "link", LDFLAGS => "/nologo /debug", MT => "mt", MTFLAGS => "-nologo", RANLIB => "CODE(0x558cc0187db8)", RC => "rc", _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ], aes_asm_src => "aes-586.s vpaes-x86.s aesni-x86.s", aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o", apps_aux_src => "win32_init.c", apps_init_src => "", apps_obj => "win32_init.o", aroutflag => "/out:", asflags => "-f win32", asoutflag => "-o ", bf_asm_src => "bf-586.s", bf_obj => "bf-586.o", bin_cflags => "/Zi /Fdapp.pdb /MT", bin_lflags => "/subsystem:console /opt:ref", bn_asm_src => "bn-586.s co-586.s x86-mont.s x86-gf2m.s", bn_obj => "bn-586.o co-586.o x86-mont.o x86-gf2m.o", bn_ops => "EXPORT_VAR_AS_FN BN_LLONG", build_file => "makefile", build_scheme => [ "unified", "windows", "VC-common", "VC-WOW" ], cast_asm_src => "c_enc.c", cast_obj => "c_enc.o", cflags => "/Gs0 /GF /Gy", chacha_asm_src => "chacha-x86.s", chacha_obj => "chacha-x86.o", cmll_asm_src => "cmll-x86.s", cmll_obj => "cmll-x86.o", coutflag => "/Fo", cppflags => "", cpuid_asm_src => "x86cpuid.s", cpuid_obj => "x86cpuid.o", defines => [ "OPENSSL_SYS_WIN32", "WIN32_LEAN_AND_MEAN", "UNICODE", "_UNICODE", "_CRT_SECURE_NO_DEPRECATE", "_WINSOCK_DEPRECATED_NO_WARNINGS" ], des_asm_src => "des-586.s crypt586.s", des_obj => "des-586.o crypt586.o", disable => [ ], dso_cflags => "/Zi /Fddso.pdb", dso_extension => ".dll", dso_scheme => "win32", ec_asm_src => "ecp_nistz256.c ecp_nistz256-x86.s", ec_obj => "ecp_nistz256.o ecp_nistz256-x86.o", enable => [ ], ex_libs => "ws2_32.lib gdi32.lib advapi32.lib crypt32.lib user32.lib", exe_extension => "", includes => [ ], keccak1600_asm_src => "keccak1600.c", keccak1600_obj => "keccak1600.o", ldoutflag => "/out:", lflags => "", lib_cflags => "/Zi /Fdossl_static.pdb /MT /Zl", lib_cppflags => "", lib_defines => [ "L_ENDIAN" ], md5_asm_src => "md5-586.s", md5_obj => "md5-586.o", modes_asm_src => "ghash-x86.s", modes_obj => "ghash-x86.o", module_cflags => "", module_cxxflags => "", module_ldflags => "/dll", mtinflag => "-manifest ", mtoutflag => "-outputresource:", padlock_asm_src => "e_padlock-x86.s", padlock_obj => "e_padlock-x86.o", perlasm_scheme => "win32n", poly1305_asm_src => "poly1305-x86.s", poly1305_obj => "poly1305-x86.o", rc4_asm_src => "rc4-586.s", rc4_obj => "rc4-586.o", rc5_asm_src => "rc5-586.s", rc5_obj => "rc5-586.o", rcoutflag => "/fo", rmd160_asm_src => "rmd-586.s", rmd160_obj => "rmd-586.o", sha1_asm_src => "sha1-586.s sha256-586.s sha512-586.s", sha1_obj => "sha1-586.o sha256-586.o sha512-586.o", shared_cflag => "", shared_defines => [ ], shared_extension => ".dll", shared_extension_simple => ".dll", shared_ldflag => "/dll", shared_rcflag => "", shared_target => "win-shared", sys_id => "WIN32", template => "1", thread_defines => [ ], thread_scheme => "winthreads", unistd => "<unistd.h>", uplink_aux_src => "", uplink_obj => "", wp_asm_src => "wp_block.c wp-mmx.s", wp_obj => "wp_block.o wp-mmx.o", ); our %available_protocols = ( tls => [ "ssl3", "tls1", "tls1_1", "tls1_2", "tls1_3" ], dtls => [ "dtls1", "dtls1_2" ], ); our @disablables = ( "afalgeng", "aria", "asan", "asm", "async", "autoalginit", "autoerrinit", "autoload-config", "bf", "blake2", "buildtest-c\\+\\+", "camellia", "capieng", "cast", "chacha", "cmac", "cms", "comp", "crypto-mdebug", "crypto-mdebug-backtrace", "ct", "deprecated", "des", "devcryptoeng", "dgram", "dh", "dsa", "dtls", "dynamic-engine", "ec", "ec2m", "ecdh", "ecdsa", "ec_nistp_64_gcc_128", "egd", "engine", "err", "external-tests", "filenames", "fuzz-libfuzzer", "fuzz-afl", "gost", "heartbeats", "hw(-.+)?", "idea", "makedepend", "md2", "md4", "mdc2", "msan", "multiblock", "nextprotoneg", "pinshared", "ocb", "ocsp", "pic", "poly1305", "posix-io", "psk", "rc2", "rc4", "rc5", "rdrand", "rfc3779", "rmd160", "scrypt", "sctp", "seed", "shared", "siphash", "sm2", "sm3", "sm4", "sock", "srp", "srtp", "sse2", "ssl", "ssl-trace", "static-engine", "stdio", "tests", "threads", "tls", "ts", "ubsan", "ui-console", "unit-test", "whirlpool", "weak-ssl-ciphers", "zlib", "zlib-dynamic", "ssl3", "ssl3-method", "tls1", "tls1-method", "tls1_1", "tls1_1-method", "tls1_2", "tls1_2-method", "tls1_3", "dtls1", "dtls1-method", "dtls1_2", "dtls1_2-method", ); our %disabled = ( "afalgeng" => "option", "asan" => "default", "buildtest-c++" => "default", "comp" => "option", "crypto-mdebug" => "default", "crypto-mdebug-backtrace" => "default", "devcryptoeng" => "default", "dynamic-engine" => "cascade", "ec_nistp_64_gcc_128" => "default", "egd" => "default", "external-tests" => "default", "fuzz-afl" => "default", "fuzz-libfuzzer" => "default", "heartbeats" => "default", "md2" => "default", "msan" => "default", "rc5" => "default", "sctp" => "default", "shared" => "option", "ssl3" => "default", "ssl3-method" => "default", "ubsan" => "default", "unit-test" => "default", "weak-ssl-ciphers" => "default", "zlib" => "default", "zlib-dynamic" => "default", ); our %withargs = ( ); our %unified_info = ( "depends" => { "" => [ "crypto/include/internal/bn_conf.h", "crypto/include/internal/dso_conf.h", "include/openssl/opensslconf.h", ], "apps/asn1pars.o" => [ "apps/progs.h", ], "apps/ca.o" => [ "apps/progs.h", ], "apps/ciphers.o" => [ "apps/progs.h", ], "apps/cms.o" => [ "apps/progs.h", ], "apps/crl.o" => [ "apps/progs.h", ], "apps/crl2p7.o" => [ "apps/progs.h", ], "apps/dgst.o" => [ "apps/progs.h", ], "apps/dhparam.o" => [ "apps/progs.h", ], "apps/dsa.o" => [ "apps/progs.h", ], "apps/dsaparam.o" => [ "apps/progs.h", ], "apps/ec.o" => [ "apps/progs.h", ], "apps/ecparam.o" => [ "apps/progs.h", ], "apps/enc.o" => [ "apps/progs.h", ], "apps/engine.o" => [ "apps/progs.h", ], "apps/errstr.o" => [ "apps/progs.h", ], "apps/gendsa.o" => [ "apps/progs.h", ], "apps/genpkey.o" => [ "apps/progs.h", ], "apps/genrsa.o" => [ "apps/progs.h", ], "apps/nseq.o" => [ "apps/progs.h", ], "apps/ocsp.o" => [ "apps/progs.h", ], "apps/openssl" => [ "apps/libapps.a", "libssl", ], "apps/openssl.o" => [ "apps/progs.h", ], "apps/passwd.o" => [ "apps/progs.h", ], "apps/pkcs12.o" => [ "apps/progs.h", ], "apps/pkcs7.o" => [ "apps/progs.h", ], "apps/pkcs8.o" => [ "apps/progs.h", ], "apps/pkey.o" => [ "apps/progs.h", ], "apps/pkeyparam.o" => [ "apps/progs.h", ], "apps/pkeyutl.o" => [ "apps/progs.h", ], "apps/prime.o" => [ "apps/progs.h", ], "apps/progs.h" => [ "configdata.pm", ], "apps/rand.o" => [ "apps/progs.h", ], "apps/rehash.o" => [ "apps/progs.h", ], "apps/req.o" => [ "apps/progs.h", ], "apps/rsa.o" => [ "apps/progs.h", ], "apps/rsautl.o" => [ "apps/progs.h", ], "apps/s_client.o" => [ "apps/progs.h", ], "apps/s_server.o" => [ "apps/progs.h", ], "apps/s_time.o" => [ "apps/progs.h", ], "apps/sess_id.o" => [ "apps/progs.h", ], "apps/smime.o" => [ "apps/progs.h", ], "apps/speed.o" => [ "apps/progs.h", ], "apps/spkac.o" => [ "apps/progs.h", ], "apps/srp.o" => [ "apps/progs.h", ], "apps/storeutl.o" => [ "apps/progs.h", ], "apps/ts.o" => [ "apps/progs.h", ], "apps/verify.o" => [ "apps/progs.h", ], "apps/version.o" => [ "apps/progs.h", ], "apps/x509.o" => [ "apps/progs.h", ], "crypto/aes/aes-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/aes/aesni-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/aes/aest4-sparcv9.S" => [ "crypto/perlasm/sparcv9_modes.pl", ], "crypto/aes/vpaes-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/bf/bf-586.s" => [ "crypto/perlasm/cbc.pl", "crypto/perlasm/x86asm.pl", ], "crypto/bn/bn-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/bn/co-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/bn/x86-gf2m.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/bn/x86-mont.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/buildinf.h" => [ "configdata.pm", ], "crypto/camellia/cmll-x86.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/camellia/cmllt4-sparcv9.S" => [ "crypto/perlasm/sparcv9_modes.pl", ], "crypto/cast/cast-586.s" => [ "crypto/perlasm/cbc.pl", "crypto/perlasm/x86asm.pl", ], "crypto/cversion.o" => [ "crypto/buildinf.h", ], "crypto/des/crypt586.s" => [ "crypto/perlasm/cbc.pl", "crypto/perlasm/x86asm.pl", ], "crypto/des/des-586.s" => [ "crypto/perlasm/cbc.pl", "crypto/perlasm/x86asm.pl", ], "crypto/include/internal/bn_conf.h" => [ "configdata.pm", ], "crypto/include/internal/dso_conf.h" => [ "configdata.pm", ], "crypto/rc4/rc4-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/ripemd/rmd-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/sha/sha1-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/sha/sha256-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/sha/sha512-586.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/whrlpool/wp-mmx.s" => [ "crypto/perlasm/x86asm.pl", ], "crypto/x86cpuid.s" => [ "crypto/perlasm/x86asm.pl", ], "fuzz/asn1-test" => [ "libcrypto", "libssl", ], "fuzz/asn1parse-test" => [ "libcrypto", ], "fuzz/bignum-test" => [ "libcrypto", ], "fuzz/bndiv-test" => [ "libcrypto", ], "fuzz/client-test" => [ "libcrypto", "libssl", ], "fuzz/cms-test" => [ "libcrypto", ], "fuzz/conf-test" => [ "libcrypto", ], "fuzz/crl-test" => [ "libcrypto", ], "fuzz/ct-test" => [ "libcrypto", ], "fuzz/server-test" => [ "libcrypto", "libssl", ], "fuzz/x509-test" => [ "libcrypto", ], "include/openssl/opensslconf.h" => [ "configdata.pm", ], "libcrypto.def" => [ "util/libcrypto.num", ], "libssl" => [ "libcrypto", ], "libssl.def" => [ "util/libssl.num", ], "test/aborttest" => [ "libcrypto", ], "test/afalgtest" => [ "libcrypto", "test/libtestutil.a", ], "test/asn1_decode_test" => [ "libcrypto", "test/libtestutil.a", ], "test/asn1_encode_test" => [ "libcrypto", "test/libtestutil.a", ], "test/asn1_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/asn1_string_table_test" => [ "libcrypto", "test/libtestutil.a", ], "test/asn1_time_test" => [ "libcrypto", "test/libtestutil.a", ], "test/asynciotest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/asynctest" => [ "libcrypto", ], "test/bad_dtls_test" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/bftest" => [ "libcrypto", "test/libtestutil.a", ], "test/bio_callback_test" => [ "libcrypto", "test/libtestutil.a", ], "test/bio_enc_test" => [ "libcrypto", "test/libtestutil.a", ], "test/bio_memleak_test" => [ "libcrypto", "test/libtestutil.a", ], "test/bioprinttest" => [ "libcrypto", "test/libtestutil.a", ], "test/bntest" => [ "libcrypto", "test/libtestutil.a", ], "test/buildtest_c_aes" => [ "libcrypto", "libssl", ], "test/buildtest_c_asn1" => [ "libcrypto", "libssl", ], "test/buildtest_c_asn1t" => [ "libcrypto", "libssl", ], "test/buildtest_c_async" => [ "libcrypto", "libssl", ], "test/buildtest_c_bio" => [ "libcrypto", "libssl", ], "test/buildtest_c_blowfish" => [ "libcrypto", "libssl", ], "test/buildtest_c_bn" => [ "libcrypto", "libssl", ], "test/buildtest_c_buffer" => [ "libcrypto", "libssl", ], "test/buildtest_c_camellia" => [ "libcrypto", "libssl", ], "test/buildtest_c_cast" => [ "libcrypto", "libssl", ], "test/buildtest_c_cmac" => [ "libcrypto", "libssl", ], "test/buildtest_c_cms" => [ "libcrypto", "libssl", ], "test/buildtest_c_conf" => [ "libcrypto", "libssl", ], "test/buildtest_c_conf_api" => [ "libcrypto", "libssl", ], "test/buildtest_c_crypto" => [ "libcrypto", "libssl", ], "test/buildtest_c_ct" => [ "libcrypto", "libssl", ], "test/buildtest_c_des" => [ "libcrypto", "libssl", ], "test/buildtest_c_dh" => [ "libcrypto", "libssl", ], "test/buildtest_c_dsa" => [ "libcrypto", "libssl", ], "test/buildtest_c_dtls1" => [ "libcrypto", "libssl", ], "test/buildtest_c_e_os2" => [ "libcrypto", "libssl", ], "test/buildtest_c_ebcdic" => [ "libcrypto", "libssl", ], "test/buildtest_c_ec" => [ "libcrypto", "libssl", ], "test/buildtest_c_ecdh" => [ "libcrypto", "libssl", ], "test/buildtest_c_ecdsa" => [ "libcrypto", "libssl", ], "test/buildtest_c_engine" => [ "libcrypto", "libssl", ], "test/buildtest_c_evp" => [ "libcrypto", "libssl", ], "test/buildtest_c_hmac" => [ "libcrypto", "libssl", ], "test/buildtest_c_idea" => [ "libcrypto", "libssl", ], "test/buildtest_c_kdf" => [ "libcrypto", "libssl", ], "test/buildtest_c_lhash" => [ "libcrypto", "libssl", ], "test/buildtest_c_md4" => [ "libcrypto", "libssl", ], "test/buildtest_c_md5" => [ "libcrypto", "libssl", ], "test/buildtest_c_mdc2" => [ "libcrypto", "libssl", ], "test/buildtest_c_modes" => [ "libcrypto", "libssl", ], "test/buildtest_c_obj_mac" => [ "libcrypto", "libssl", ], "test/buildtest_c_objects" => [ "libcrypto", "libssl", ], "test/buildtest_c_ocsp" => [ "libcrypto", "libssl", ], "test/buildtest_c_opensslv" => [ "libcrypto", "libssl", ], "test/buildtest_c_ossl_typ" => [ "libcrypto", "libssl", ], "test/buildtest_c_pem" => [ "libcrypto", "libssl", ], "test/buildtest_c_pem2" => [ "libcrypto", "libssl", ], "test/buildtest_c_pkcs12" => [ "libcrypto", "libssl", ], "test/buildtest_c_pkcs7" => [ "libcrypto", "libssl", ], "test/buildtest_c_rand" => [ "libcrypto", "libssl", ], "test/buildtest_c_rand_drbg" => [ "libcrypto", "libssl", ], "test/buildtest_c_rc2" => [ "libcrypto", "libssl", ], "test/buildtest_c_rc4" => [ "libcrypto", "libssl", ], "test/buildtest_c_ripemd" => [ "libcrypto", "libssl", ], "test/buildtest_c_rsa" => [ "libcrypto", "libssl", ], "test/buildtest_c_safestack" => [ "libcrypto", "libssl", ], "test/buildtest_c_seed" => [ "libcrypto", "libssl", ], "test/buildtest_c_sha" => [ "libcrypto", "libssl", ], "test/buildtest_c_srp" => [ "libcrypto", "libssl", ], "test/buildtest_c_srtp" => [ "libcrypto", "libssl", ], "test/buildtest_c_ssl" => [ "libcrypto", "libssl", ], "test/buildtest_c_ssl2" => [ "libcrypto", "libssl", ], "test/buildtest_c_stack" => [ "libcrypto", "libssl", ], "test/buildtest_c_store" => [ "libcrypto", "libssl", ], "test/buildtest_c_symhacks" => [ "libcrypto", "libssl", ], "test/buildtest_c_tls1" => [ "libcrypto", "libssl", ], "test/buildtest_c_ts" => [ "libcrypto", "libssl", ], "test/buildtest_c_txt_db" => [ "libcrypto", "libssl", ], "test/buildtest_c_ui" => [ "libcrypto", "libssl", ], "test/buildtest_c_whrlpool" => [ "libcrypto", "libssl", ], "test/buildtest_c_x509" => [ "libcrypto", "libssl", ], "test/buildtest_c_x509_vfy" => [ "libcrypto", "libssl", ], "test/buildtest_c_x509v3" => [ "libcrypto", "libssl", ], "test/casttest" => [ "libcrypto", "test/libtestutil.a", ], "test/chacha_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/cipher_overhead_test" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/cipherbytes_test" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/cipherlist_test" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/ciphername_test" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/clienthellotest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/cmsapitest" => [ "libcrypto", "test/libtestutil.a", ], "test/conf_include_test" => [ "libcrypto", "test/libtestutil.a", ], "test/constant_time_test" => [ "libcrypto", "test/libtestutil.a", ], "test/crltest" => [ "libcrypto", "test/libtestutil.a", ], "test/ct_test" => [ "libcrypto", "test/libtestutil.a", ], "test/ctype_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/curve448_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/d2i_test" => [ "libcrypto", "test/libtestutil.a", ], "test/danetest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/destest" => [ "libcrypto", "test/libtestutil.a", ], "test/dhtest" => [ "libcrypto", "test/libtestutil.a", ], "test/drbg_cavs_test" => [ "libcrypto", "test/libtestutil.a", ], "test/drbgtest" => [ "libcrypto.a", "test/libtestutil.a", ], "test/dsa_no_digest_size_test" => [ "libcrypto", "test/libtestutil.a", ], "test/dsatest" => [ "libcrypto", "test/libtestutil.a", ], "test/dtls_mtu_test" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/dtlstest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/dtlsv1listentest" => [ "libssl", "test/libtestutil.a", ], "test/ec_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/ecdsatest" => [ "libcrypto", "test/libtestutil.a", ], "test/ecstresstest" => [ "libcrypto", "test/libtestutil.a", ], "test/ectest" => [ "libcrypto", "test/libtestutil.a", ], "test/enginetest" => [ "libcrypto", "test/libtestutil.a", ], "test/errtest" => [ "libcrypto", "test/libtestutil.a", ], "test/evp_extra_test" => [ "libcrypto", "test/libtestutil.a", ], "test/evp_test" => [ "libcrypto", "test/libtestutil.a", ], "test/exdatatest" => [ "libcrypto", "test/libtestutil.a", ], "test/exptest" => [ "libcrypto", "test/libtestutil.a", ], "test/fatalerrtest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/gmdifftest" => [ "libcrypto", "test/libtestutil.a", ], "test/gosttest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/hmactest" => [ "libcrypto", "test/libtestutil.a", ], "test/ideatest" => [ "libcrypto", "test/libtestutil.a", ], "test/igetest" => [ "libcrypto", "test/libtestutil.a", ], "test/lhash_test" => [ "libcrypto", "test/libtestutil.a", ], "test/libtestutil.a" => [ "libcrypto", ], "test/md2test" => [ "libcrypto", "test/libtestutil.a", ], "test/mdc2_internal_test" => [ "libcrypto", "test/libtestutil.a", ], "test/mdc2test" => [ "libcrypto", "test/libtestutil.a", ], "test/memleaktest" => [ "libcrypto", "test/libtestutil.a", ], "test/modes_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/ocspapitest" => [ "libcrypto", "test/libtestutil.a", ], "test/packettest" => [ "libcrypto", "test/libtestutil.a", ], "test/pbelutest" => [ "libcrypto", "test/libtestutil.a", ], "test/pemtest" => [ "libcrypto", "test/libtestutil.a", ], "test/pkey_meth_kdf_test" => [ "libcrypto", "test/libtestutil.a", ], "test/pkey_meth_test" => [ "libcrypto", "test/libtestutil.a", ], "test/poly1305_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/rc2test" => [ "libcrypto", "test/libtestutil.a", ], "test/rc4test" => [ "libcrypto", "test/libtestutil.a", ], "test/rc5test" => [ "libcrypto", "test/libtestutil.a", ], "test/rdrand_sanitytest" => [ "libcrypto.a", "test/libtestutil.a", ], "test/recordlentest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/rsa_mp_test" => [ "libcrypto", "test/libtestutil.a", ], "test/rsa_test" => [ "libcrypto", "test/libtestutil.a", ], "test/sanitytest" => [ "libcrypto", "test/libtestutil.a", ], "test/secmemtest" => [ "libcrypto", "test/libtestutil.a", ], "test/servername_test" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/siphash_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/sm2_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/sm4_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/srptest" => [ "libcrypto", "test/libtestutil.a", ], "test/ssl_cert_table_internal_test" => [ "libcrypto", "test/libtestutil.a", ], "test/ssl_test" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/ssl_test_ctx_test" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/sslapitest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/sslbuffertest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/sslcorrupttest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/ssltest_old" => [ "libcrypto", "libssl", ], "test/stack_test" => [ "libcrypto", "test/libtestutil.a", ], "test/sysdefaulttest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/test_test" => [ "libcrypto", "test/libtestutil.a", ], "test/threadstest" => [ "libcrypto", "test/libtestutil.a", ], "test/time_offset_test" => [ "libcrypto", "test/libtestutil.a", ], "test/tls13ccstest" => [ "libcrypto", "libssl", "test/libtestutil.a", ], "test/tls13encryptiontest" => [ "libcrypto", "libssl.a", "test/libtestutil.a", ], "test/uitest" => [ "apps/libapps.a", "libcrypto", "libssl", "test/libtestutil.a", ], "test/v3ext" => [ "libcrypto", "test/libtestutil.a", ], "test/v3nametest" => [ "libcrypto", "test/libtestutil.a", ], "test/verify_extra_test" => [ "libcrypto", "test/libtestutil.a", ], "test/versions" => [ "libcrypto", ], "test/wpackettest" => [ "libcrypto", "libssl.a", "test/libtestutil.a", ], "test/x509_check_cert_pkey_test" => [ "libcrypto", "test/libtestutil.a", ], "test/x509_dup_cert_test" => [ "libcrypto", "test/libtestutil.a", ], "test/x509_internal_test" => [ "libcrypto.a", "test/libtestutil.a", ], "test/x509_time_test" => [ "libcrypto", "test/libtestutil.a", ], "test/x509aux" => [ "libcrypto", "test/libtestutil.a", ], }, "dirinfo" => { "apps" => { "products" => { "bin" => [ "apps/openssl", ], "lib" => [ "apps/libapps.a", ], "script" => [ "apps/CA.pl", "apps/tsget.pl", ], }, }, "crypto" => { "deps" => [ "crypto/cpt_err.o", "crypto/cryptlib.o", "crypto/ctype.o", "crypto/cversion.o", "crypto/ebcdic.o", "crypto/ex_data.o", "crypto/getenv.o", "crypto/init.o", "crypto/mem.o", "crypto/mem_dbg.o", "crypto/mem_sec.o", "crypto/o_dir.o", "crypto/o_fips.o", "crypto/o_fopen.o", "crypto/o_init.o", "crypto/o_str.o", "crypto/o_time.o", "crypto/threads_none.o", "crypto/threads_pthread.o", "crypto/threads_win.o", "crypto/uid.o", "crypto/x86cpuid.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/aes" => { "deps" => [ "crypto/aes/aes-586.o", "crypto/aes/aes_cfb.o", "crypto/aes/aes_ecb.o", "crypto/aes/aes_ige.o", "crypto/aes/aes_misc.o", "crypto/aes/aes_ofb.o", "crypto/aes/aes_wrap.o", "crypto/aes/aesni-x86.o", "crypto/aes/vpaes-x86.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/aria" => { "deps" => [ "crypto/aria/aria.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/asn1" => { "deps" => [ "crypto/asn1/a_bitstr.o", "crypto/asn1/a_d2i_fp.o", "crypto/asn1/a_digest.o", "crypto/asn1/a_dup.o", "crypto/asn1/a_gentm.o", "crypto/asn1/a_i2d_fp.o", "crypto/asn1/a_int.o", "crypto/asn1/a_mbstr.o", "crypto/asn1/a_object.o", "crypto/asn1/a_octet.o", "crypto/asn1/a_print.o", "crypto/asn1/a_sign.o", "crypto/asn1/a_strex.o", "crypto/asn1/a_strnid.o", "crypto/asn1/a_time.o", "crypto/asn1/a_type.o", "crypto/asn1/a_utctm.o", "crypto/asn1/a_utf8.o", "crypto/asn1/a_verify.o", "crypto/asn1/ameth_lib.o", "crypto/asn1/asn1_err.o", "crypto/asn1/asn1_gen.o", "crypto/asn1/asn1_item_list.o", "crypto/asn1/asn1_lib.o", "crypto/asn1/asn1_par.o", "crypto/asn1/asn_mime.o", "crypto/asn1/asn_moid.o", "crypto/asn1/asn_mstbl.o", "crypto/asn1/asn_pack.o", "crypto/asn1/bio_asn1.o", "crypto/asn1/bio_ndef.o", "crypto/asn1/d2i_pr.o", "crypto/asn1/d2i_pu.o", "crypto/asn1/evp_asn1.o", "crypto/asn1/f_int.o", "crypto/asn1/f_string.o", "crypto/asn1/i2d_pr.o", "crypto/asn1/i2d_pu.o", "crypto/asn1/n_pkey.o", "crypto/asn1/nsseq.o", "crypto/asn1/p5_pbe.o", "crypto/asn1/p5_pbev2.o", "crypto/asn1/p5_scrypt.o", "crypto/asn1/p8_pkey.o", "crypto/asn1/t_bitst.o", "crypto/asn1/t_pkey.o", "crypto/asn1/t_spki.o", "crypto/asn1/tasn_dec.o", "crypto/asn1/tasn_enc.o", "crypto/asn1/tasn_fre.o", "crypto/asn1/tasn_new.o", "crypto/asn1/tasn_prn.o", "crypto/asn1/tasn_scn.o", "crypto/asn1/tasn_typ.o", "crypto/asn1/tasn_utl.o", "crypto/asn1/x_algor.o", "crypto/asn1/x_bignum.o", "crypto/asn1/x_info.o", "crypto/asn1/x_int64.o", "crypto/asn1/x_long.o", "crypto/asn1/x_pkey.o", "crypto/asn1/x_sig.o", "crypto/asn1/x_spki.o", "crypto/asn1/x_val.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/async" => { "deps" => [ "crypto/async/async.o", "crypto/async/async_err.o", "crypto/async/async_wait.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/async/arch" => { "deps" => [ "crypto/async/arch/async_null.o", "crypto/async/arch/async_posix.o", "crypto/async/arch/async_win.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/bf" => { "deps" => [ "crypto/bf/bf-586.o", "crypto/bf/bf_cfb64.o", "crypto/bf/bf_ecb.o", "crypto/bf/bf_ofb64.o", "crypto/bf/bf_skey.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/bio" => { "deps" => [ "crypto/bio/b_addr.o", "crypto/bio/b_dump.o", "crypto/bio/b_print.o", "crypto/bio/b_sock.o", "crypto/bio/b_sock2.o", "crypto/bio/bf_buff.o", "crypto/bio/bf_lbuf.o", "crypto/bio/bf_nbio.o", "crypto/bio/bf_null.o", "crypto/bio/bio_cb.o", "crypto/bio/bio_err.o", "crypto/bio/bio_lib.o", "crypto/bio/bio_meth.o", "crypto/bio/bss_acpt.o", "crypto/bio/bss_bio.o", "crypto/bio/bss_conn.o", "crypto/bio/bss_dgram.o", "crypto/bio/bss_fd.o", "crypto/bio/bss_file.o", "crypto/bio/bss_log.o", "crypto/bio/bss_mem.o", "crypto/bio/bss_null.o", "crypto/bio/bss_sock.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/blake2" => { "deps" => [ "crypto/blake2/blake2b.o", "crypto/blake2/blake2s.o", "crypto/blake2/m_blake2b.o", "crypto/blake2/m_blake2s.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/bn" => { "deps" => [ "crypto/bn/bn-586.o", "crypto/bn/bn_add.o", "crypto/bn/bn_blind.o", "crypto/bn/bn_const.o", "crypto/bn/bn_ctx.o", "crypto/bn/bn_depr.o", "crypto/bn/bn_dh.o", "crypto/bn/bn_div.o", "crypto/bn/bn_err.o", "crypto/bn/bn_exp.o", "crypto/bn/bn_exp2.o", "crypto/bn/bn_gcd.o", "crypto/bn/bn_gf2m.o", "crypto/bn/bn_intern.o", "crypto/bn/bn_kron.o", "crypto/bn/bn_lib.o", "crypto/bn/bn_mod.o", "crypto/bn/bn_mont.o", "crypto/bn/bn_mpi.o", "crypto/bn/bn_mul.o", "crypto/bn/bn_nist.o", "crypto/bn/bn_prime.o", "crypto/bn/bn_print.o", "crypto/bn/bn_rand.o", "crypto/bn/bn_recp.o", "crypto/bn/bn_shift.o", "crypto/bn/bn_sqr.o", "crypto/bn/bn_sqrt.o", "crypto/bn/bn_srp.o", "crypto/bn/bn_word.o", "crypto/bn/bn_x931p.o", "crypto/bn/co-586.o", "crypto/bn/x86-gf2m.o", "crypto/bn/x86-mont.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/buffer" => { "deps" => [ "crypto/buffer/buf_err.o", "crypto/buffer/buffer.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/camellia" => { "deps" => [ "crypto/camellia/cmll-x86.o", "crypto/camellia/cmll_cfb.o", "crypto/camellia/cmll_ctr.o", "crypto/camellia/cmll_ecb.o", "crypto/camellia/cmll_ofb.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/cast" => { "deps" => [ "crypto/cast/c_cfb64.o", "crypto/cast/c_ecb.o", "crypto/cast/c_enc.o", "crypto/cast/c_ofb64.o", "crypto/cast/c_skey.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/chacha" => { "deps" => [ "crypto/chacha/chacha-x86.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/cmac" => { "deps" => [ "crypto/cmac/cm_ameth.o", "crypto/cmac/cm_pmeth.o", "crypto/cmac/cmac.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/cms" => { "deps" => [ "crypto/cms/cms_asn1.o", "crypto/cms/cms_att.o", "crypto/cms/cms_cd.o", "crypto/cms/cms_dd.o", "crypto/cms/cms_enc.o", "crypto/cms/cms_env.o", "crypto/cms/cms_err.o", "crypto/cms/cms_ess.o", "crypto/cms/cms_io.o", "crypto/cms/cms_kari.o", "crypto/cms/cms_lib.o", "crypto/cms/cms_pwri.o", "crypto/cms/cms_sd.o", "crypto/cms/cms_smime.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/conf" => { "deps" => [ "crypto/conf/conf_api.o", "crypto/conf/conf_def.o", "crypto/conf/conf_err.o", "crypto/conf/conf_lib.o", "crypto/conf/conf_mall.o", "crypto/conf/conf_mod.o", "crypto/conf/conf_sap.o", "crypto/conf/conf_ssl.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/ct" => { "deps" => [ "crypto/ct/ct_b64.o", "crypto/ct/ct_err.o", "crypto/ct/ct_log.o", "crypto/ct/ct_oct.o", "crypto/ct/ct_policy.o", "crypto/ct/ct_prn.o", "crypto/ct/ct_sct.o", "crypto/ct/ct_sct_ctx.o", "crypto/ct/ct_vfy.o", "crypto/ct/ct_x509v3.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/des" => { "deps" => [ "crypto/des/cbc_cksm.o", "crypto/des/cbc_enc.o", "crypto/des/cfb64ede.o", "crypto/des/cfb64enc.o", "crypto/des/cfb_enc.o", "crypto/des/crypt586.o", "crypto/des/des-586.o", "crypto/des/ecb3_enc.o", "crypto/des/ecb_enc.o", "crypto/des/fcrypt.o", "crypto/des/ofb64ede.o", "crypto/des/ofb64enc.o", "crypto/des/ofb_enc.o", "crypto/des/pcbc_enc.o", "crypto/des/qud_cksm.o", "crypto/des/rand_key.o", "crypto/des/set_key.o", "crypto/des/str2key.o", "crypto/des/xcbc_enc.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/dh" => { "deps" => [ "crypto/dh/dh_ameth.o", "crypto/dh/dh_asn1.o", "crypto/dh/dh_check.o", "crypto/dh/dh_depr.o", "crypto/dh/dh_err.o", "crypto/dh/dh_gen.o", "crypto/dh/dh_kdf.o", "crypto/dh/dh_key.o", "crypto/dh/dh_lib.o", "crypto/dh/dh_meth.o", "crypto/dh/dh_pmeth.o", "crypto/dh/dh_prn.o", "crypto/dh/dh_rfc5114.o", "crypto/dh/dh_rfc7919.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/dsa" => { "deps" => [ "crypto/dsa/dsa_ameth.o", "crypto/dsa/dsa_asn1.o", "crypto/dsa/dsa_depr.o", "crypto/dsa/dsa_err.o", "crypto/dsa/dsa_gen.o", "crypto/dsa/dsa_key.o", "crypto/dsa/dsa_lib.o", "crypto/dsa/dsa_meth.o", "crypto/dsa/dsa_ossl.o", "crypto/dsa/dsa_pmeth.o", "crypto/dsa/dsa_prn.o", "crypto/dsa/dsa_sign.o", "crypto/dsa/dsa_vrf.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/dso" => { "deps" => [ "crypto/dso/dso_dl.o", "crypto/dso/dso_dlfcn.o", "crypto/dso/dso_err.o", "crypto/dso/dso_lib.o", "crypto/dso/dso_openssl.o", "crypto/dso/dso_vms.o", "crypto/dso/dso_win32.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/ec" => { "deps" => [ "crypto/ec/curve25519.o", "crypto/ec/ec2_oct.o", "crypto/ec/ec2_smpl.o", "crypto/ec/ec_ameth.o", "crypto/ec/ec_asn1.o", "crypto/ec/ec_check.o", "crypto/ec/ec_curve.o", "crypto/ec/ec_cvt.o", "crypto/ec/ec_err.o", "crypto/ec/ec_key.o", "crypto/ec/ec_kmeth.o", "crypto/ec/ec_lib.o", "crypto/ec/ec_mult.o", "crypto/ec/ec_oct.o", "crypto/ec/ec_pmeth.o", "crypto/ec/ec_print.o", "crypto/ec/ecdh_kdf.o", "crypto/ec/ecdh_ossl.o", "crypto/ec/ecdsa_ossl.o", "crypto/ec/ecdsa_sign.o", "crypto/ec/ecdsa_vrf.o", "crypto/ec/eck_prn.o", "crypto/ec/ecp_mont.o", "crypto/ec/ecp_nist.o", "crypto/ec/ecp_nistp224.o", "crypto/ec/ecp_nistp256.o", "crypto/ec/ecp_nistp521.o", "crypto/ec/ecp_nistputil.o", "crypto/ec/ecp_nistz256-x86.o", "crypto/ec/ecp_nistz256.o", "crypto/ec/ecp_oct.o", "crypto/ec/ecp_smpl.o", "crypto/ec/ecx_meth.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/ec/curve448" => { "deps" => [ "crypto/ec/curve448/curve448.o", "crypto/ec/curve448/curve448_tables.o", "crypto/ec/curve448/eddsa.o", "crypto/ec/curve448/f_generic.o", "crypto/ec/curve448/scalar.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/ec/curve448/arch_32" => { "deps" => [ "crypto/ec/curve448/arch_32/f_impl.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/engine" => { "deps" => [ "crypto/engine/eng_all.o", "crypto/engine/eng_cnf.o", "crypto/engine/eng_ctrl.o", "crypto/engine/eng_dyn.o", "crypto/engine/eng_err.o", "crypto/engine/eng_fat.o", "crypto/engine/eng_init.o", "crypto/engine/eng_lib.o", "crypto/engine/eng_list.o", "crypto/engine/eng_openssl.o", "crypto/engine/eng_pkey.o", "crypto/engine/eng_rdrand.o", "crypto/engine/eng_table.o", "crypto/engine/tb_asnmth.o", "crypto/engine/tb_cipher.o", "crypto/engine/tb_dh.o", "crypto/engine/tb_digest.o", "crypto/engine/tb_dsa.o", "crypto/engine/tb_eckey.o", "crypto/engine/tb_pkmeth.o", "crypto/engine/tb_rand.o", "crypto/engine/tb_rsa.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/err" => { "deps" => [ "crypto/err/err.o", "crypto/err/err_all.o", "crypto/err/err_prn.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/evp" => { "deps" => [ "crypto/evp/bio_b64.o", "crypto/evp/bio_enc.o", "crypto/evp/bio_md.o", "crypto/evp/bio_ok.o", "crypto/evp/c_allc.o", "crypto/evp/c_alld.o", "crypto/evp/cmeth_lib.o", "crypto/evp/digest.o", "crypto/evp/e_aes.o", "crypto/evp/e_aes_cbc_hmac_sha1.o", "crypto/evp/e_aes_cbc_hmac_sha256.o", "crypto/evp/e_aria.o", "crypto/evp/e_bf.o", "crypto/evp/e_camellia.o", "crypto/evp/e_cast.o", "crypto/evp/e_chacha20_poly1305.o", "crypto/evp/e_des.o", "crypto/evp/e_des3.o", "crypto/evp/e_idea.o", "crypto/evp/e_null.o", "crypto/evp/e_old.o", "crypto/evp/e_rc2.o", "crypto/evp/e_rc4.o", "crypto/evp/e_rc4_hmac_md5.o", "crypto/evp/e_rc5.o", "crypto/evp/e_seed.o", "crypto/evp/e_sm4.o", "crypto/evp/e_xcbc_d.o", "crypto/evp/encode.o", "crypto/evp/evp_cnf.o", "crypto/evp/evp_enc.o", "crypto/evp/evp_err.o", "crypto/evp/evp_key.o", "crypto/evp/evp_lib.o", "crypto/evp/evp_pbe.o", "crypto/evp/evp_pkey.o", "crypto/evp/m_md2.o", "crypto/evp/m_md4.o", "crypto/evp/m_md5.o", "crypto/evp/m_md5_sha1.o", "crypto/evp/m_mdc2.o", "crypto/evp/m_null.o", "crypto/evp/m_ripemd.o", "crypto/evp/m_sha1.o", "crypto/evp/m_sha3.o", "crypto/evp/m_sigver.o", "crypto/evp/m_wp.o", "crypto/evp/names.o", "crypto/evp/p5_crpt.o", "crypto/evp/p5_crpt2.o", "crypto/evp/p_dec.o", "crypto/evp/p_enc.o", "crypto/evp/p_lib.o", "crypto/evp/p_open.o", "crypto/evp/p_seal.o", "crypto/evp/p_sign.o", "crypto/evp/p_verify.o", "crypto/evp/pbe_scrypt.o", "crypto/evp/pmeth_fn.o", "crypto/evp/pmeth_gn.o", "crypto/evp/pmeth_lib.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/hmac" => { "deps" => [ "crypto/hmac/hm_ameth.o", "crypto/hmac/hm_pmeth.o", "crypto/hmac/hmac.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/idea" => { "deps" => [ "crypto/idea/i_cbc.o", "crypto/idea/i_cfb64.o", "crypto/idea/i_ecb.o", "crypto/idea/i_ofb64.o", "crypto/idea/i_skey.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/kdf" => { "deps" => [ "crypto/kdf/hkdf.o", "crypto/kdf/kdf_err.o", "crypto/kdf/scrypt.o", "crypto/kdf/tls1_prf.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/lhash" => { "deps" => [ "crypto/lhash/lh_stats.o", "crypto/lhash/lhash.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/md4" => { "deps" => [ "crypto/md4/md4_dgst.o", "crypto/md4/md4_one.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/md5" => { "deps" => [ "crypto/md5/md5-586.o", "crypto/md5/md5_dgst.o", "crypto/md5/md5_one.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/mdc2" => { "deps" => [ "crypto/mdc2/mdc2_one.o", "crypto/mdc2/mdc2dgst.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/modes" => { "deps" => [ "crypto/modes/cbc128.o", "crypto/modes/ccm128.o", "crypto/modes/cfb128.o", "crypto/modes/ctr128.o", "crypto/modes/cts128.o", "crypto/modes/gcm128.o", "crypto/modes/ghash-x86.o", "crypto/modes/ocb128.o", "crypto/modes/ofb128.o", "crypto/modes/wrap128.o", "crypto/modes/xts128.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/objects" => { "deps" => [ "crypto/objects/o_names.o", "crypto/objects/obj_dat.o", "crypto/objects/obj_err.o", "crypto/objects/obj_lib.o", "crypto/objects/obj_xref.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/ocsp" => { "deps" => [ "crypto/ocsp/ocsp_asn.o", "crypto/ocsp/ocsp_cl.o", "crypto/ocsp/ocsp_err.o", "crypto/ocsp/ocsp_ext.o", "crypto/ocsp/ocsp_ht.o", "crypto/ocsp/ocsp_lib.o", "crypto/ocsp/ocsp_prn.o", "crypto/ocsp/ocsp_srv.o", "crypto/ocsp/ocsp_vfy.o", "crypto/ocsp/v3_ocsp.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/pem" => { "deps" => [ "crypto/pem/pem_all.o", "crypto/pem/pem_err.o", "crypto/pem/pem_info.o", "crypto/pem/pem_lib.o", "crypto/pem/pem_oth.o", "crypto/pem/pem_pk8.o", "crypto/pem/pem_pkey.o", "crypto/pem/pem_sign.o", "crypto/pem/pem_x509.o", "crypto/pem/pem_xaux.o", "crypto/pem/pvkfmt.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/pkcs12" => { "deps" => [ "crypto/pkcs12/p12_add.o", "crypto/pkcs12/p12_asn.o", "crypto/pkcs12/p12_attr.o", "crypto/pkcs12/p12_crpt.o", "crypto/pkcs12/p12_crt.o", "crypto/pkcs12/p12_decr.o", "crypto/pkcs12/p12_init.o", "crypto/pkcs12/p12_key.o", "crypto/pkcs12/p12_kiss.o", "crypto/pkcs12/p12_mutl.o", "crypto/pkcs12/p12_npas.o", "crypto/pkcs12/p12_p8d.o", "crypto/pkcs12/p12_p8e.o", "crypto/pkcs12/p12_sbag.o", "crypto/pkcs12/p12_utl.o", "crypto/pkcs12/pk12err.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/pkcs7" => { "deps" => [ "crypto/pkcs7/bio_pk7.o", "crypto/pkcs7/pk7_asn1.o", "crypto/pkcs7/pk7_attr.o", "crypto/pkcs7/pk7_doit.o", "crypto/pkcs7/pk7_lib.o", "crypto/pkcs7/pk7_mime.o", "crypto/pkcs7/pk7_smime.o", "crypto/pkcs7/pkcs7err.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/poly1305" => { "deps" => [ "crypto/poly1305/poly1305-x86.o", "crypto/poly1305/poly1305.o", "crypto/poly1305/poly1305_ameth.o", "crypto/poly1305/poly1305_pmeth.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/rand" => { "deps" => [ "crypto/rand/drbg_ctr.o", "crypto/rand/drbg_lib.o", "crypto/rand/rand_egd.o", "crypto/rand/rand_err.o", "crypto/rand/rand_lib.o", "crypto/rand/rand_unix.o", "crypto/rand/rand_vms.o", "crypto/rand/rand_win.o", "crypto/rand/randfile.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/rc2" => { "deps" => [ "crypto/rc2/rc2_cbc.o", "crypto/rc2/rc2_ecb.o", "crypto/rc2/rc2_skey.o", "crypto/rc2/rc2cfb64.o", "crypto/rc2/rc2ofb64.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/rc4" => { "deps" => [ "crypto/rc4/rc4-586.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/ripemd" => { "deps" => [ "crypto/ripemd/rmd-586.o", "crypto/ripemd/rmd_dgst.o", "crypto/ripemd/rmd_one.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/rsa" => { "deps" => [ "crypto/rsa/rsa_ameth.o", "crypto/rsa/rsa_asn1.o", "crypto/rsa/rsa_chk.o", "crypto/rsa/rsa_crpt.o", "crypto/rsa/rsa_depr.o", "crypto/rsa/rsa_err.o", "crypto/rsa/rsa_gen.o", "crypto/rsa/rsa_lib.o", "crypto/rsa/rsa_meth.o", "crypto/rsa/rsa_mp.o", "crypto/rsa/rsa_none.o", "crypto/rsa/rsa_oaep.o", "crypto/rsa/rsa_ossl.o", "crypto/rsa/rsa_pk1.o", "crypto/rsa/rsa_pmeth.o", "crypto/rsa/rsa_prn.o", "crypto/rsa/rsa_pss.o", "crypto/rsa/rsa_saos.o", "crypto/rsa/rsa_sign.o", "crypto/rsa/rsa_ssl.o", "crypto/rsa/rsa_x931.o", "crypto/rsa/rsa_x931g.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/seed" => { "deps" => [ "crypto/seed/seed.o", "crypto/seed/seed_cbc.o", "crypto/seed/seed_cfb.o", "crypto/seed/seed_ecb.o", "crypto/seed/seed_ofb.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/sha" => { "deps" => [ "crypto/sha/keccak1600.o", "crypto/sha/sha1-586.o", "crypto/sha/sha1_one.o", "crypto/sha/sha1dgst.o", "crypto/sha/sha256-586.o", "crypto/sha/sha256.o", "crypto/sha/sha512-586.o", "crypto/sha/sha512.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/siphash" => { "deps" => [ "crypto/siphash/siphash.o", "crypto/siphash/siphash_ameth.o", "crypto/siphash/siphash_pmeth.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/sm2" => { "deps" => [ "crypto/sm2/sm2_crypt.o", "crypto/sm2/sm2_err.o", "crypto/sm2/sm2_pmeth.o", "crypto/sm2/sm2_sign.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/sm3" => { "deps" => [ "crypto/sm3/m_sm3.o", "crypto/sm3/sm3.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/sm4" => { "deps" => [ "crypto/sm4/sm4.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/srp" => { "deps" => [ "crypto/srp/srp_lib.o", "crypto/srp/srp_vfy.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/stack" => { "deps" => [ "crypto/stack/stack.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/store" => { "deps" => [ "crypto/store/loader_file.o", "crypto/store/store_err.o", "crypto/store/store_init.o", "crypto/store/store_lib.o", "crypto/store/store_register.o", "crypto/store/store_strings.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/ts" => { "deps" => [ "crypto/ts/ts_asn1.o", "crypto/ts/ts_conf.o", "crypto/ts/ts_err.o", "crypto/ts/ts_lib.o", "crypto/ts/ts_req_print.o", "crypto/ts/ts_req_utils.o", "crypto/ts/ts_rsp_print.o", "crypto/ts/ts_rsp_sign.o", "crypto/ts/ts_rsp_utils.o", "crypto/ts/ts_rsp_verify.o", "crypto/ts/ts_verify_ctx.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/txt_db" => { "deps" => [ "crypto/txt_db/txt_db.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/ui" => { "deps" => [ "crypto/ui/ui_err.o", "crypto/ui/ui_lib.o", "crypto/ui/ui_null.o", "crypto/ui/ui_openssl.o", "crypto/ui/ui_util.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/whrlpool" => { "deps" => [ "crypto/whrlpool/wp-mmx.o", "crypto/whrlpool/wp_block.o", "crypto/whrlpool/wp_dgst.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/x509" => { "deps" => [ "crypto/x509/by_dir.o", "crypto/x509/by_file.o", "crypto/x509/t_crl.o", "crypto/x509/t_req.o", "crypto/x509/t_x509.o", "crypto/x509/x509_att.o", "crypto/x509/x509_cmp.o", "crypto/x509/x509_d2.o", "crypto/x509/x509_def.o", "crypto/x509/x509_err.o", "crypto/x509/x509_ext.o", "crypto/x509/x509_lu.o", "crypto/x509/x509_meth.o", "crypto/x509/x509_obj.o", "crypto/x509/x509_r2x.o", "crypto/x509/x509_req.o", "crypto/x509/x509_set.o", "crypto/x509/x509_trs.o", "crypto/x509/x509_txt.o", "crypto/x509/x509_v3.o", "crypto/x509/x509_vfy.o", "crypto/x509/x509_vpm.o", "crypto/x509/x509cset.o", "crypto/x509/x509name.o", "crypto/x509/x509rset.o", "crypto/x509/x509spki.o", "crypto/x509/x509type.o", "crypto/x509/x_all.o", "crypto/x509/x_attrib.o", "crypto/x509/x_crl.o", "crypto/x509/x_exten.o", "crypto/x509/x_name.o", "crypto/x509/x_pubkey.o", "crypto/x509/x_req.o", "crypto/x509/x_x509.o", "crypto/x509/x_x509a.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "crypto/x509v3" => { "deps" => [ "crypto/x509v3/pcy_cache.o", "crypto/x509v3/pcy_data.o", "crypto/x509v3/pcy_lib.o", "crypto/x509v3/pcy_map.o", "crypto/x509v3/pcy_node.o", "crypto/x509v3/pcy_tree.o", "crypto/x509v3/v3_addr.o", "crypto/x509v3/v3_admis.o", "crypto/x509v3/v3_akey.o", "crypto/x509v3/v3_akeya.o", "crypto/x509v3/v3_alt.o", "crypto/x509v3/v3_asid.o", "crypto/x509v3/v3_bcons.o", "crypto/x509v3/v3_bitst.o", "crypto/x509v3/v3_conf.o", "crypto/x509v3/v3_cpols.o", "crypto/x509v3/v3_crld.o", "crypto/x509v3/v3_enum.o", "crypto/x509v3/v3_extku.o", "crypto/x509v3/v3_genn.o", "crypto/x509v3/v3_ia5.o", "crypto/x509v3/v3_info.o", "crypto/x509v3/v3_int.o", "crypto/x509v3/v3_lib.o", "crypto/x509v3/v3_ncons.o", "crypto/x509v3/v3_pci.o", "crypto/x509v3/v3_pcia.o", "crypto/x509v3/v3_pcons.o", "crypto/x509v3/v3_pku.o", "crypto/x509v3/v3_pmaps.o", "crypto/x509v3/v3_prn.o", "crypto/x509v3/v3_purp.o", "crypto/x509v3/v3_skey.o", "crypto/x509v3/v3_sxnet.o", "crypto/x509v3/v3_tlsf.o", "crypto/x509v3/v3_utl.o", "crypto/x509v3/v3err.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "engines" => { "deps" => [ "engines/e_capi.o", "engines/e_padlock-x86.o", "engines/e_padlock.o", ], "products" => { "lib" => [ "libcrypto", ], }, }, "fuzz" => { "products" => { "bin" => [ "fuzz/asn1-test", "fuzz/asn1parse-test", "fuzz/bignum-test", "fuzz/bndiv-test", "fuzz/client-test", "fuzz/cms-test", "fuzz/conf-test", "fuzz/crl-test", "fuzz/ct-test", "fuzz/server-test", "fuzz/x509-test", ], }, }, "ssl" => { "deps" => [ "ssl/bio_ssl.o", "ssl/d1_lib.o", "ssl/d1_msg.o", "ssl/d1_srtp.o", "ssl/methods.o", "ssl/packet.o", "ssl/pqueue.o", "ssl/s3_cbc.o", "ssl/s3_enc.o", "ssl/s3_lib.o", "ssl/s3_msg.o", "ssl/ssl_asn1.o", "ssl/ssl_cert.o", "ssl/ssl_ciph.o", "ssl/ssl_conf.o", "ssl/ssl_err.o", "ssl/ssl_init.o", "ssl/ssl_lib.o", "ssl/ssl_mcnf.o", "ssl/ssl_rsa.o", "ssl/ssl_sess.o", "ssl/ssl_stat.o", "ssl/ssl_txt.o", "ssl/ssl_utst.o", "ssl/t1_enc.o", "ssl/t1_lib.o", "ssl/t1_trce.o", "ssl/tls13_enc.o", "ssl/tls_srp.o", ], "products" => { "lib" => [ "libssl", ], }, }, "ssl/record" => { "deps" => [ "ssl/record/dtls1_bitmap.o", "ssl/record/rec_layer_d1.o", "ssl/record/rec_layer_s3.o", "ssl/record/ssl3_buffer.o", "ssl/record/ssl3_record.o", "ssl/record/ssl3_record_tls13.o", ], "products" => { "lib" => [ "libssl", ], }, }, "ssl/statem" => { "deps" => [ "ssl/statem/extensions.o", "ssl/statem/extensions_clnt.o", "ssl/statem/extensions_cust.o", "ssl/statem/extensions_srvr.o", "ssl/statem/statem.o", "ssl/statem/statem_clnt.o", "ssl/statem/statem_dtls.o", "ssl/statem/statem_lib.o", "ssl/statem/statem_srvr.o", ], "products" => { "lib" => [ "libssl", ], }, }, "test/testutil" => { "deps" => [ "test/testutil/basic_output.o", "test/testutil/cb.o", "test/testutil/driver.o", "test/testutil/format_output.o", "test/testutil/init.o", "test/testutil/main.o", "test/testutil/output_helpers.o", "test/testutil/stanza.o", "test/testutil/tap_bio.o", "test/testutil/test_cleanup.o", "test/testutil/tests.o", ], "products" => { "lib" => [ "test/libtestutil.a", ], }, }, "tools" => { "products" => { "script" => [ "tools/c_rehash.pl", ], }, }, }, "engines" => [ ], "extra" => [ "crypto/alphacpuid.pl", "crypto/arm64cpuid.pl", "crypto/armv4cpuid.pl", "crypto/ia64cpuid.S", "crypto/pariscid.pl", "crypto/ppccpuid.pl", "crypto/x86_64cpuid.pl", "crypto/x86cpuid.pl", "ms/applink.c", "ms/uplink-x86.pl", "ms/uplink.c", ], "generate" => { "apps/openssl.rc" => [ "util/mkrc.pl", "openssl", ], "apps/progs.h" => [ "apps/progs.pl", "\$(APPS_OPENSSL)", ], "crypto/aes/aes-586.s" => [ "crypto/aes/asm/aes-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/aes/aes-armv4.S" => [ "crypto/aes/asm/aes-armv4.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aes-ia64.s" => [ "crypto/aes/asm/aes-ia64.S", ], "crypto/aes/aes-mips.S" => [ "crypto/aes/asm/aes-mips.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aes-parisc.s" => [ "crypto/aes/asm/aes-parisc.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aes-ppc.s" => [ "crypto/aes/asm/aes-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aes-s390x.S" => [ "crypto/aes/asm/aes-s390x.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aes-sparcv9.S" => [ "crypto/aes/asm/aes-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aes-x86_64.s" => [ "crypto/aes/asm/aes-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aesfx-sparcv9.S" => [ "crypto/aes/asm/aesfx-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aesni-mb-x86_64.s" => [ "crypto/aes/asm/aesni-mb-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aesni-sha1-x86_64.s" => [ "crypto/aes/asm/aesni-sha1-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aesni-sha256-x86_64.s" => [ "crypto/aes/asm/aesni-sha256-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aesni-x86.s" => [ "crypto/aes/asm/aesni-x86.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/aes/aesni-x86_64.s" => [ "crypto/aes/asm/aesni-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aesp8-ppc.s" => [ "crypto/aes/asm/aesp8-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aest4-sparcv9.S" => [ "crypto/aes/asm/aest4-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/aesv8-armx.S" => [ "crypto/aes/asm/aesv8-armx.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/bsaes-armv7.S" => [ "crypto/aes/asm/bsaes-armv7.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/bsaes-x86_64.s" => [ "crypto/aes/asm/bsaes-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/vpaes-armv8.S" => [ "crypto/aes/asm/vpaes-armv8.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/vpaes-ppc.s" => [ "crypto/aes/asm/vpaes-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/aes/vpaes-x86.s" => [ "crypto/aes/asm/vpaes-x86.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/aes/vpaes-x86_64.s" => [ "crypto/aes/asm/vpaes-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/alphacpuid.s" => [ "crypto/alphacpuid.pl", ], "crypto/arm64cpuid.S" => [ "crypto/arm64cpuid.pl", "\$(PERLASM_SCHEME)", ], "crypto/armv4cpuid.S" => [ "crypto/armv4cpuid.pl", "\$(PERLASM_SCHEME)", ], "crypto/bf/bf-586.s" => [ "crypto/bf/asm/bf-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/bn/alpha-mont.S" => [ "crypto/bn/asm/alpha-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/armv4-gf2m.S" => [ "crypto/bn/asm/armv4-gf2m.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/armv4-mont.S" => [ "crypto/bn/asm/armv4-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/armv8-mont.S" => [ "crypto/bn/asm/armv8-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/bn-586.s" => [ "crypto/bn/asm/bn-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/bn/bn-ia64.s" => [ "crypto/bn/asm/ia64.S", ], "crypto/bn/bn-mips.S" => [ "crypto/bn/asm/mips.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/bn-ppc.s" => [ "crypto/bn/asm/ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/co-586.s" => [ "crypto/bn/asm/co-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/bn/ia64-mont.s" => [ "crypto/bn/asm/ia64-mont.pl", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", ], "crypto/bn/mips-mont.S" => [ "crypto/bn/asm/mips-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/parisc-mont.s" => [ "crypto/bn/asm/parisc-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/ppc-mont.s" => [ "crypto/bn/asm/ppc-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/ppc64-mont.s" => [ "crypto/bn/asm/ppc64-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/rsaz-avx2.s" => [ "crypto/bn/asm/rsaz-avx2.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/rsaz-x86_64.s" => [ "crypto/bn/asm/rsaz-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/s390x-gf2m.s" => [ "crypto/bn/asm/s390x-gf2m.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/s390x-mont.S" => [ "crypto/bn/asm/s390x-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/sparct4-mont.S" => [ "crypto/bn/asm/sparct4-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/sparcv9-gf2m.S" => [ "crypto/bn/asm/sparcv9-gf2m.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/sparcv9-mont.S" => [ "crypto/bn/asm/sparcv9-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/sparcv9a-mont.S" => [ "crypto/bn/asm/sparcv9a-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/vis3-mont.S" => [ "crypto/bn/asm/vis3-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/x86-gf2m.s" => [ "crypto/bn/asm/x86-gf2m.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/bn/x86-mont.s" => [ "crypto/bn/asm/x86-mont.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/bn/x86_64-gf2m.s" => [ "crypto/bn/asm/x86_64-gf2m.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/x86_64-mont.s" => [ "crypto/bn/asm/x86_64-mont.pl", "\$(PERLASM_SCHEME)", ], "crypto/bn/x86_64-mont5.s" => [ "crypto/bn/asm/x86_64-mont5.pl", "\$(PERLASM_SCHEME)", ], "crypto/buildinf.h" => [ "util/mkbuildinf.pl", "\"\$(CC)", "\$(LIB_CFLAGS)", "\$(CPPFLAGS_Q)\"", "\"\$(PLATFORM)\"", ], "crypto/camellia/cmll-x86.s" => [ "crypto/camellia/asm/cmll-x86.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/camellia/cmll-x86_64.s" => [ "crypto/camellia/asm/cmll-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/camellia/cmllt4-sparcv9.S" => [ "crypto/camellia/asm/cmllt4-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/cast/cast-586.s" => [ "crypto/cast/asm/cast-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/chacha/chacha-armv4.S" => [ "crypto/chacha/asm/chacha-armv4.pl", "\$(PERLASM_SCHEME)", ], "crypto/chacha/chacha-armv8.S" => [ "crypto/chacha/asm/chacha-armv8.pl", "\$(PERLASM_SCHEME)", ], "crypto/chacha/chacha-ppc.s" => [ "crypto/chacha/asm/chacha-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/chacha/chacha-s390x.S" => [ "crypto/chacha/asm/chacha-s390x.pl", "\$(PERLASM_SCHEME)", ], "crypto/chacha/chacha-x86.s" => [ "crypto/chacha/asm/chacha-x86.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/chacha/chacha-x86_64.s" => [ "crypto/chacha/asm/chacha-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/des/crypt586.s" => [ "crypto/des/asm/crypt586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", ], "crypto/des/des-586.s" => [ "crypto/des/asm/des-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", ], "crypto/des/des_enc-sparc.S" => [ "crypto/des/asm/des_enc.m4", ], "crypto/des/dest4-sparcv9.S" => [ "crypto/des/asm/dest4-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/ec/ecp_nistz256-armv4.S" => [ "crypto/ec/asm/ecp_nistz256-armv4.pl", "\$(PERLASM_SCHEME)", ], "crypto/ec/ecp_nistz256-armv8.S" => [ "crypto/ec/asm/ecp_nistz256-armv8.pl", "\$(PERLASM_SCHEME)", ], "crypto/ec/ecp_nistz256-avx2.s" => [ "crypto/ec/asm/ecp_nistz256-avx2.pl", "\$(PERLASM_SCHEME)", ], "crypto/ec/ecp_nistz256-ppc64.s" => [ "crypto/ec/asm/ecp_nistz256-ppc64.pl", "\$(PERLASM_SCHEME)", ], "crypto/ec/ecp_nistz256-sparcv9.S" => [ "crypto/ec/asm/ecp_nistz256-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/ec/ecp_nistz256-x86.s" => [ "crypto/ec/asm/ecp_nistz256-x86.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/ec/ecp_nistz256-x86_64.s" => [ "crypto/ec/asm/ecp_nistz256-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/ec/x25519-ppc64.s" => [ "crypto/ec/asm/x25519-ppc64.pl", "\$(PERLASM_SCHEME)", ], "crypto/ec/x25519-x86_64.s" => [ "crypto/ec/asm/x25519-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/ia64cpuid.s" => [ "crypto/ia64cpuid.S", ], "crypto/include/internal/bn_conf.h" => [ "crypto/include/internal/bn_conf.h.in", ], "crypto/include/internal/dso_conf.h" => [ "crypto/include/internal/dso_conf.h.in", ], "crypto/md5/md5-586.s" => [ "crypto/md5/asm/md5-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", ], "crypto/md5/md5-sparcv9.S" => [ "crypto/md5/asm/md5-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/md5/md5-x86_64.s" => [ "crypto/md5/asm/md5-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/modes/aesni-gcm-x86_64.s" => [ "crypto/modes/asm/aesni-gcm-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/modes/ghash-alpha.S" => [ "crypto/modes/asm/ghash-alpha.pl", "\$(PERLASM_SCHEME)", ], "crypto/modes/ghash-armv4.S" => [ "crypto/modes/asm/ghash-armv4.pl", "\$(PERLASM_SCHEME)", ], "crypto/modes/ghash-ia64.s" => [ "crypto/modes/asm/ghash-ia64.pl", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", ], "crypto/modes/ghash-parisc.s" => [ "crypto/modes/asm/ghash-parisc.pl", "\$(PERLASM_SCHEME)", ], "crypto/modes/ghash-s390x.S" => [ "crypto/modes/asm/ghash-s390x.pl", "\$(PERLASM_SCHEME)", ], "crypto/modes/ghash-sparcv9.S" => [ "crypto/modes/asm/ghash-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/modes/ghash-x86.s" => [ "crypto/modes/asm/ghash-x86.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/modes/ghash-x86_64.s" => [ "crypto/modes/asm/ghash-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/modes/ghashp8-ppc.s" => [ "crypto/modes/asm/ghashp8-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/modes/ghashv8-armx.S" => [ "crypto/modes/asm/ghashv8-armx.pl", "\$(PERLASM_SCHEME)", ], "crypto/pariscid.s" => [ "crypto/pariscid.pl", "\$(PERLASM_SCHEME)", ], "crypto/poly1305/poly1305-armv4.S" => [ "crypto/poly1305/asm/poly1305-armv4.pl", "\$(PERLASM_SCHEME)", ], "crypto/poly1305/poly1305-armv8.S" => [ "crypto/poly1305/asm/poly1305-armv8.pl", "\$(PERLASM_SCHEME)", ], "crypto/poly1305/poly1305-mips.S" => [ "crypto/poly1305/asm/poly1305-mips.pl", "\$(PERLASM_SCHEME)", ], "crypto/poly1305/poly1305-ppc.s" => [ "crypto/poly1305/asm/poly1305-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/poly1305/poly1305-ppcfp.s" => [ "crypto/poly1305/asm/poly1305-ppcfp.pl", "\$(PERLASM_SCHEME)", ], "crypto/poly1305/poly1305-s390x.S" => [ "crypto/poly1305/asm/poly1305-s390x.pl", "\$(PERLASM_SCHEME)", ], "crypto/poly1305/poly1305-sparcv9.S" => [ "crypto/poly1305/asm/poly1305-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/poly1305/poly1305-x86.s" => [ "crypto/poly1305/asm/poly1305-x86.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/poly1305/poly1305-x86_64.s" => [ "crypto/poly1305/asm/poly1305-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/ppccpuid.s" => [ "crypto/ppccpuid.pl", "\$(PERLASM_SCHEME)", ], "crypto/rc4/rc4-586.s" => [ "crypto/rc4/asm/rc4-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/rc4/rc4-md5-x86_64.s" => [ "crypto/rc4/asm/rc4-md5-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/rc4/rc4-parisc.s" => [ "crypto/rc4/asm/rc4-parisc.pl", "\$(PERLASM_SCHEME)", ], "crypto/rc4/rc4-s390x.s" => [ "crypto/rc4/asm/rc4-s390x.pl", "\$(PERLASM_SCHEME)", ], "crypto/rc4/rc4-x86_64.s" => [ "crypto/rc4/asm/rc4-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/ripemd/rmd-586.s" => [ "crypto/ripemd/asm/rmd-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", ], "crypto/s390xcpuid.S" => [ "crypto/s390xcpuid.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/keccak1600-armv4.S" => [ "crypto/sha/asm/keccak1600-armv4.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/keccak1600-armv8.S" => [ "crypto/sha/asm/keccak1600-armv8.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/keccak1600-ppc64.s" => [ "crypto/sha/asm/keccak1600-ppc64.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/keccak1600-s390x.S" => [ "crypto/sha/asm/keccak1600-s390x.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/keccak1600-x86_64.s" => [ "crypto/sha/asm/keccak1600-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-586.s" => [ "crypto/sha/asm/sha1-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/sha/sha1-alpha.S" => [ "crypto/sha/asm/sha1-alpha.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-armv4-large.S" => [ "crypto/sha/asm/sha1-armv4-large.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-armv8.S" => [ "crypto/sha/asm/sha1-armv8.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-ia64.s" => [ "crypto/sha/asm/sha1-ia64.pl", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", ], "crypto/sha/sha1-mb-x86_64.s" => [ "crypto/sha/asm/sha1-mb-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-mips.S" => [ "crypto/sha/asm/sha1-mips.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-parisc.s" => [ "crypto/sha/asm/sha1-parisc.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-ppc.s" => [ "crypto/sha/asm/sha1-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-s390x.S" => [ "crypto/sha/asm/sha1-s390x.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-sparcv9.S" => [ "crypto/sha/asm/sha1-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha1-x86_64.s" => [ "crypto/sha/asm/sha1-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256-586.s" => [ "crypto/sha/asm/sha256-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/sha/sha256-armv4.S" => [ "crypto/sha/asm/sha256-armv4.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256-armv8.S" => [ "crypto/sha/asm/sha512-armv8.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256-ia64.s" => [ "crypto/sha/asm/sha512-ia64.pl", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", ], "crypto/sha/sha256-mb-x86_64.s" => [ "crypto/sha/asm/sha256-mb-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256-mips.S" => [ "crypto/sha/asm/sha512-mips.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256-parisc.s" => [ "crypto/sha/asm/sha512-parisc.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256-ppc.s" => [ "crypto/sha/asm/sha512-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256-s390x.S" => [ "crypto/sha/asm/sha512-s390x.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256-sparcv9.S" => [ "crypto/sha/asm/sha512-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256-x86_64.s" => [ "crypto/sha/asm/sha512-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha256p8-ppc.s" => [ "crypto/sha/asm/sha512p8-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha512-586.s" => [ "crypto/sha/asm/sha512-586.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/sha/sha512-armv4.S" => [ "crypto/sha/asm/sha512-armv4.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha512-armv8.S" => [ "crypto/sha/asm/sha512-armv8.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha512-ia64.s" => [ "crypto/sha/asm/sha512-ia64.pl", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", ], "crypto/sha/sha512-mips.S" => [ "crypto/sha/asm/sha512-mips.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha512-parisc.s" => [ "crypto/sha/asm/sha512-parisc.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha512-ppc.s" => [ "crypto/sha/asm/sha512-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha512-s390x.S" => [ "crypto/sha/asm/sha512-s390x.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha512-sparcv9.S" => [ "crypto/sha/asm/sha512-sparcv9.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha512-x86_64.s" => [ "crypto/sha/asm/sha512-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/sha/sha512p8-ppc.s" => [ "crypto/sha/asm/sha512p8-ppc.pl", "\$(PERLASM_SCHEME)", ], "crypto/uplink-ia64.s" => [ "ms/uplink-ia64.pl", "\$(PERLASM_SCHEME)", ], "crypto/uplink-x86.s" => [ "ms/uplink-x86.pl", "\$(PERLASM_SCHEME)", ], "crypto/uplink-x86_64.s" => [ "ms/uplink-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/whrlpool/wp-mmx.s" => [ "crypto/whrlpool/asm/wp-mmx.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "crypto/whrlpool/wp-x86_64.s" => [ "crypto/whrlpool/asm/wp-x86_64.pl", "\$(PERLASM_SCHEME)", ], "crypto/x86_64cpuid.s" => [ "crypto/x86_64cpuid.pl", "\$(PERLASM_SCHEME)", ], "crypto/x86cpuid.s" => [ "crypto/x86cpuid.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "engines/e_padlock-x86.s" => [ "engines/asm/e_padlock-x86.pl", "\$(PERLASM_SCHEME)", "\$(LIB_CFLAGS)", "\$(LIB_CPPFLAGS)", "\$(PROCESSOR)", ], "engines/e_padlock-x86_64.s" => [ "engines/asm/e_padlock-x86_64.pl", "\$(PERLASM_SCHEME)", ], "include/openssl/opensslconf.h" => [ "include/openssl/opensslconf.h.in", ], "libcrypto.def" => [ "util/mkdef.pl", "crypto", "32", ], "libcrypto.rc" => [ "util/mkrc.pl", "libcrypto", ], "libssl.def" => [ "util/mkdef.pl", "ssl", "32", ], "libssl.rc" => [ "util/mkrc.pl", "libssl", ], "test/buildtest_aes.c" => [ "test/generate_buildtest.pl", "aes", ], "test/buildtest_asn1.c" => [ "test/generate_buildtest.pl", "asn1", ], "test/buildtest_asn1t.c" => [ "test/generate_buildtest.pl", "asn1t", ], "test/buildtest_async.c" => [ "test/generate_buildtest.pl", "async", ], "test/buildtest_bio.c" => [ "test/generate_buildtest.pl", "bio", ], "test/buildtest_blowfish.c" => [ "test/generate_buildtest.pl", "blowfish", ], "test/buildtest_bn.c" => [ "test/generate_buildtest.pl", "bn", ], "test/buildtest_buffer.c" => [ "test/generate_buildtest.pl", "buffer", ], "test/buildtest_camellia.c" => [ "test/generate_buildtest.pl", "camellia", ], "test/buildtest_cast.c" => [ "test/generate_buildtest.pl", "cast", ], "test/buildtest_cmac.c" => [ "test/generate_buildtest.pl", "cmac", ], "test/buildtest_cms.c" => [ "test/generate_buildtest.pl", "cms", ], "test/buildtest_conf.c" => [ "test/generate_buildtest.pl", "conf", ], "test/buildtest_conf_api.c" => [ "test/generate_buildtest.pl", "conf_api", ], "test/buildtest_crypto.c" => [ "test/generate_buildtest.pl", "crypto", ], "test/buildtest_ct.c" => [ "test/generate_buildtest.pl", "ct", ], "test/buildtest_des.c" => [ "test/generate_buildtest.pl", "des", ], "test/buildtest_dh.c" => [ "test/generate_buildtest.pl", "dh", ], "test/buildtest_dsa.c" => [ "test/generate_buildtest.pl", "dsa", ], "test/buildtest_dtls1.c" => [ "test/generate_buildtest.pl", "dtls1", ], "test/buildtest_e_os2.c" => [ "test/generate_buildtest.pl", "e_os2", ], "test/buildtest_ebcdic.c" => [ "test/generate_buildtest.pl", "ebcdic", ], "test/buildtest_ec.c" => [ "test/generate_buildtest.pl", "ec", ], "test/buildtest_ecdh.c" => [ "test/generate_buildtest.pl", "ecdh", ], "test/buildtest_ecdsa.c" => [ "test/generate_buildtest.pl", "ecdsa", ], "test/buildtest_engine.c" => [ "test/generate_buildtest.pl", "engine", ], "test/buildtest_evp.c" => [ "test/generate_buildtest.pl", "evp", ], "test/buildtest_hmac.c" => [ "test/generate_buildtest.pl", "hmac", ], "test/buildtest_idea.c" => [ "test/generate_buildtest.pl", "idea", ], "test/buildtest_kdf.c" => [ "test/generate_buildtest.pl", "kdf", ], "test/buildtest_lhash.c" => [ "test/generate_buildtest.pl", "lhash", ], "test/buildtest_md4.c" => [ "test/generate_buildtest.pl", "md4", ], "test/buildtest_md5.c" => [ "test/generate_buildtest.pl", "md5", ], "test/buildtest_mdc2.c" => [ "test/generate_buildtest.pl", "mdc2", ], "test/buildtest_modes.c" => [ "test/generate_buildtest.pl", "modes", ], "test/buildtest_obj_mac.c" => [ "test/generate_buildtest.pl", "obj_mac", ], "test/buildtest_objects.c" => [ "test/generate_buildtest.pl", "objects", ], "test/buildtest_ocsp.c" => [ "test/generate_buildtest.pl", "ocsp", ], "test/buildtest_opensslv.c" => [ "test/generate_buildtest.pl", "opensslv", ], "test/buildtest_ossl_typ.c" => [ "test/generate_buildtest.pl", "ossl_typ", ], "test/buildtest_pem.c" => [ "test/generate_buildtest.pl", "pem", ], "test/buildtest_pem2.c" => [ "test/generate_buildtest.pl", "pem2", ], "test/buildtest_pkcs12.c" => [ "test/generate_buildtest.pl", "pkcs12", ], "test/buildtest_pkcs7.c" => [ "test/generate_buildtest.pl", "pkcs7", ], "test/buildtest_rand.c" => [ "test/generate_buildtest.pl", "rand", ], "test/buildtest_rand_drbg.c" => [ "test/generate_buildtest.pl", "rand_drbg", ], "test/buildtest_rc2.c" => [ "test/generate_buildtest.pl", "rc2", ], "test/buildtest_rc4.c" => [ "test/generate_buildtest.pl", "rc4", ], "test/buildtest_ripemd.c" => [ "test/generate_buildtest.pl", "ripemd", ], "test/buildtest_rsa.c" => [ "test/generate_buildtest.pl", "rsa", ], "test/buildtest_safestack.c" => [ "test/generate_buildtest.pl", "safestack", ], "test/buildtest_seed.c" => [ "test/generate_buildtest.pl", "seed", ], "test/buildtest_sha.c" => [ "test/generate_buildtest.pl", "sha", ], "test/buildtest_srp.c" => [ "test/generate_buildtest.pl", "srp", ], "test/buildtest_srtp.c" => [ "test/generate_buildtest.pl", "srtp", ], "test/buildtest_ssl.c" => [ "test/generate_buildtest.pl", "ssl", ], "test/buildtest_ssl2.c" => [ "test/generate_buildtest.pl", "ssl2", ], "test/buildtest_stack.c" => [ "test/generate_buildtest.pl", "stack", ], "test/buildtest_store.c" => [ "test/generate_buildtest.pl", "store", ], "test/buildtest_symhacks.c" => [ "test/generate_buildtest.pl", "symhacks", ], "test/buildtest_tls1.c" => [ "test/generate_buildtest.pl", "tls1", ], "test/buildtest_ts.c" => [ "test/generate_buildtest.pl", "ts", ], "test/buildtest_txt_db.c" => [ "test/generate_buildtest.pl", "txt_db", ], "test/buildtest_ui.c" => [ "test/generate_buildtest.pl", "ui", ], "test/buildtest_whrlpool.c" => [ "test/generate_buildtest.pl", "whrlpool", ], "test/buildtest_x509.c" => [ "test/generate_buildtest.pl", "x509", ], "test/buildtest_x509_vfy.c" => [ "test/generate_buildtest.pl", "x509_vfy", ], "test/buildtest_x509v3.c" => [ "test/generate_buildtest.pl", "x509v3", ], }, "includes" => { "apps/app_rand.o" => [ ".", "include", ], "apps/apps.o" => [ ".", "include", ], "apps/asn1pars.o" => [ ".", "include", "apps", ], "apps/bf_prefix.o" => [ ".", "include", ], "apps/ca.o" => [ ".", "include", "apps", ], "apps/ciphers.o" => [ ".", "include", "apps", ], "apps/cms.o" => [ ".", "include", "apps", ], "apps/crl.o" => [ ".", "include", "apps", ], "apps/crl2p7.o" => [ ".", "include", "apps", ], "apps/dgst.o" => [ ".", "include", "apps", ], "apps/dhparam.o" => [ ".", "include", "apps", ], "apps/dsa.o" => [ ".", "include", "apps", ], "apps/dsaparam.o" => [ ".", "include", "apps", ], "apps/ec.o" => [ ".", "include", "apps", ], "apps/ecparam.o" => [ ".", "include", "apps", ], "apps/enc.o" => [ ".", "include", "apps", ], "apps/engine.o" => [ ".", "include", "apps", ], "apps/errstr.o" => [ ".", "include", "apps", ], "apps/gendsa.o" => [ ".", "include", "apps", ], "apps/genpkey.o" => [ ".", "include", "apps", ], "apps/genrsa.o" => [ ".", "include", "apps", ], "apps/nseq.o" => [ ".", "include", "apps", ], "apps/ocsp.o" => [ ".", "include", "apps", ], "apps/openssl.o" => [ ".", "include", "apps", ], "apps/opt.o" => [ ".", "include", ], "apps/passwd.o" => [ ".", "include", "apps", ], "apps/pkcs12.o" => [ ".", "include", "apps", ], "apps/pkcs7.o" => [ ".", "include", "apps", ], "apps/pkcs8.o" => [ ".", "include", "apps", ], "apps/pkey.o" => [ ".", "include", "apps", ], "apps/pkeyparam.o" => [ ".", "include", "apps", ], "apps/pkeyutl.o" => [ ".", "include", "apps", ], "apps/prime.o" => [ ".", "include", "apps", ], "apps/progs.h" => [ ".", ], "apps/rand.o" => [ ".", "include", "apps", ], "apps/rehash.o" => [ ".", "include", "apps", ], "apps/req.o" => [ ".", "include", "apps", ], "apps/rsa.o" => [ ".", "include", "apps", ], "apps/rsautl.o" => [ ".", "include", "apps", ], "apps/s_cb.o" => [ ".", "include", ], "apps/s_client.o" => [ ".", "include", "apps", ], "apps/s_server.o" => [ ".", "include", "apps", ], "apps/s_socket.o" => [ ".", "include", ], "apps/s_time.o" => [ ".", "include", "apps", ], "apps/sess_id.o" => [ ".", "include", "apps", ], "apps/smime.o" => [ ".", "include", "apps", ], "apps/speed.o" => [ ".", "include", "apps", ], "apps/spkac.o" => [ ".", "include", "apps", ], "apps/srp.o" => [ ".", "include", "apps", ], "apps/storeutl.o" => [ ".", "include", "apps", ], "apps/ts.o" => [ ".", "include", "apps", ], "apps/verify.o" => [ ".", "include", "apps", ], "apps/version.o" => [ ".", "include", "apps", ], "apps/win32_init.o" => [ ".", "include", ], "apps/x509.o" => [ ".", "include", "apps", ], "crypto/aes/aes-586.o" => [ ".", "crypto/include", "include", ], "crypto/aes/aes-armv4.o" => [ "crypto", ], "crypto/aes/aes-mips.o" => [ "crypto", ], "crypto/aes/aes-s390x.o" => [ "crypto", ], "crypto/aes/aes-sparcv9.o" => [ "crypto", ], "crypto/aes/aes_cfb.o" => [ ".", "crypto/include", "include", ], "crypto/aes/aes_ecb.o" => [ ".", "crypto/include", "include", ], "crypto/aes/aes_ige.o" => [ ".", "crypto/include", "include", ], "crypto/aes/aes_misc.o" => [ ".", "crypto/include", "include", ], "crypto/aes/aes_ofb.o" => [ ".", "crypto/include", "include", ], "crypto/aes/aes_wrap.o" => [ ".", "crypto/include", "include", ], "crypto/aes/aesfx-sparcv9.o" => [ "crypto", ], "crypto/aes/aesni-x86.o" => [ ".", "crypto/include", "include", ], "crypto/aes/aest4-sparcv9.o" => [ "crypto", ], "crypto/aes/aesv8-armx.o" => [ "crypto", ], "crypto/aes/bsaes-armv7.o" => [ "crypto", ], "crypto/aes/vpaes-x86.o" => [ ".", "crypto/include", "include", ], "crypto/aria/aria.o" => [ ".", "crypto/include", "include", ], "crypto/arm64cpuid.o" => [ "crypto", ], "crypto/armv4cpuid.o" => [ "crypto", ], "crypto/asn1/a_bitstr.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_d2i_fp.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_digest.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_dup.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_gentm.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_i2d_fp.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_int.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_mbstr.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_object.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_octet.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_print.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_sign.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_strex.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_strnid.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_time.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_type.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_utctm.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_utf8.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/a_verify.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/ameth_lib.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/asn1_err.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/asn1_gen.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/asn1_item_list.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/asn1_lib.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/asn1_par.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/asn_mime.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/asn_moid.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/asn_mstbl.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/asn_pack.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/bio_asn1.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/bio_ndef.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/d2i_pr.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/d2i_pu.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/evp_asn1.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/f_int.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/f_string.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/i2d_pr.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/i2d_pu.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/n_pkey.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/nsseq.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/p5_pbe.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/p5_pbev2.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/p5_scrypt.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/p8_pkey.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/t_bitst.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/t_pkey.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/t_spki.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/tasn_dec.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/tasn_enc.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/tasn_fre.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/tasn_new.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/tasn_prn.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/tasn_scn.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/tasn_typ.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/tasn_utl.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/x_algor.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/x_bignum.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/x_info.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/x_int64.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/x_long.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/x_pkey.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/x_sig.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/x_spki.o" => [ ".", "crypto/include", "include", ], "crypto/asn1/x_val.o" => [ ".", "crypto/include", "include", ], "crypto/async/arch/async_null.o" => [ ".", "crypto/include", "include", ], "crypto/async/arch/async_posix.o" => [ ".", "crypto/include", "include", ], "crypto/async/arch/async_win.o" => [ ".", "crypto/include", "include", ], "crypto/async/async.o" => [ ".", "crypto/include", "include", ], "crypto/async/async_err.o" => [ ".", "crypto/include", "include", ], "crypto/async/async_wait.o" => [ ".", "crypto/include", "include", ], "crypto/bf/bf-586.o" => [ ".", "crypto/include", "include", ], "crypto/bf/bf_cfb64.o" => [ ".", "crypto/include", "include", ], "crypto/bf/bf_ecb.o" => [ ".", "crypto/include", "include", ], "crypto/bf/bf_ofb64.o" => [ ".", "crypto/include", "include", ], "crypto/bf/bf_skey.o" => [ ".", "crypto/include", "include", ], "crypto/bio/b_addr.o" => [ ".", "crypto/include", "include", ], "crypto/bio/b_dump.o" => [ ".", "crypto/include", "include", ], "crypto/bio/b_print.o" => [ ".", "crypto/include", "include", ], "crypto/bio/b_sock.o" => [ ".", "crypto/include", "include", ], "crypto/bio/b_sock2.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bf_buff.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bf_lbuf.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bf_nbio.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bf_null.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bio_cb.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bio_err.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bio_lib.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bio_meth.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_acpt.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_bio.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_conn.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_dgram.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_fd.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_file.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_log.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_mem.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_null.o" => [ ".", "crypto/include", "include", ], "crypto/bio/bss_sock.o" => [ ".", "crypto/include", "include", ], "crypto/blake2/blake2b.o" => [ ".", "crypto/include", "include", ], "crypto/blake2/blake2s.o" => [ ".", "crypto/include", "include", ], "crypto/blake2/m_blake2b.o" => [ ".", "crypto/include", "include", ], "crypto/blake2/m_blake2s.o" => [ ".", "crypto/include", "include", ], "crypto/bn/armv4-gf2m.o" => [ "crypto", ], "crypto/bn/armv4-mont.o" => [ "crypto", ], "crypto/bn/bn-586.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn-mips.o" => [ "crypto", ], "crypto/bn/bn_add.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_blind.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_const.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_ctx.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_depr.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_dh.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_div.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_err.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_exp.o" => [ ".", "crypto/include", "include", "crypto", ], "crypto/bn/bn_exp2.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_gcd.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_gf2m.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_intern.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_kron.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_lib.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_mod.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_mont.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_mpi.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_mul.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_nist.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_prime.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_print.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_rand.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_recp.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_shift.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_sqr.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_sqrt.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_srp.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_word.o" => [ ".", "crypto/include", "include", ], "crypto/bn/bn_x931p.o" => [ ".", "crypto/include", "include", ], "crypto/bn/co-586.o" => [ ".", "crypto/include", "include", ], "crypto/bn/mips-mont.o" => [ "crypto", ], "crypto/bn/sparct4-mont.o" => [ "crypto", ], "crypto/bn/sparcv9-gf2m.o" => [ "crypto", ], "crypto/bn/sparcv9-mont.o" => [ "crypto", ], "crypto/bn/sparcv9a-mont.o" => [ "crypto", ], "crypto/bn/vis3-mont.o" => [ "crypto", ], "crypto/bn/x86-gf2m.o" => [ ".", "crypto/include", "include", ], "crypto/bn/x86-mont.o" => [ ".", "crypto/include", "include", ], "crypto/buffer/buf_err.o" => [ ".", "crypto/include", "include", ], "crypto/buffer/buffer.o" => [ ".", "crypto/include", "include", ], "crypto/buildinf.h" => [ ".", ], "crypto/camellia/cmll-x86.o" => [ ".", "crypto/include", "include", ], "crypto/camellia/cmll_cfb.o" => [ ".", "crypto/include", "include", ], "crypto/camellia/cmll_ctr.o" => [ ".", "crypto/include", "include", ], "crypto/camellia/cmll_ecb.o" => [ ".", "crypto/include", "include", ], "crypto/camellia/cmll_ofb.o" => [ ".", "crypto/include", "include", ], "crypto/camellia/cmllt4-sparcv9.o" => [ "crypto", ], "crypto/cast/c_cfb64.o" => [ ".", "crypto/include", "include", ], "crypto/cast/c_ecb.o" => [ ".", "crypto/include", "include", ], "crypto/cast/c_enc.o" => [ ".", "crypto/include", "include", ], "crypto/cast/c_ofb64.o" => [ ".", "crypto/include", "include", ], "crypto/cast/c_skey.o" => [ ".", "crypto/include", "include", ], "crypto/chacha/chacha-armv4.o" => [ "crypto", ], "crypto/chacha/chacha-armv8.o" => [ "crypto", ], "crypto/chacha/chacha-s390x.o" => [ "crypto", ], "crypto/chacha/chacha-x86.o" => [ ".", "crypto/include", "include", ], "crypto/cmac/cm_ameth.o" => [ ".", "crypto/include", "include", ], "crypto/cmac/cm_pmeth.o" => [ ".", "crypto/include", "include", ], "crypto/cmac/cmac.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_asn1.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_att.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_cd.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_dd.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_enc.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_env.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_err.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_ess.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_io.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_kari.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_lib.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_pwri.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_sd.o" => [ ".", "crypto/include", "include", ], "crypto/cms/cms_smime.o" => [ ".", "crypto/include", "include", ], "crypto/conf/conf_api.o" => [ ".", "crypto/include", "include", ], "crypto/conf/conf_def.o" => [ ".", "crypto/include", "include", ], "crypto/conf/conf_err.o" => [ ".", "crypto/include", "include", ], "crypto/conf/conf_lib.o" => [ ".", "crypto/include", "include", ], "crypto/conf/conf_mall.o" => [ ".", "crypto/include", "include", ], "crypto/conf/conf_mod.o" => [ ".", "crypto/include", "include", ], "crypto/conf/conf_sap.o" => [ ".", "crypto/include", "include", ], "crypto/conf/conf_ssl.o" => [ ".", "crypto/include", "include", ], "crypto/cpt_err.o" => [ ".", "crypto/include", "include", ], "crypto/cryptlib.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_b64.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_err.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_log.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_oct.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_policy.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_prn.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_sct.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_sct_ctx.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_vfy.o" => [ ".", "crypto/include", "include", ], "crypto/ct/ct_x509v3.o" => [ ".", "crypto/include", "include", ], "crypto/ctype.o" => [ ".", "crypto/include", "include", ], "crypto/cversion.o" => [ ".", "crypto/include", "include", "crypto", ], "crypto/des/cbc_cksm.o" => [ ".", "crypto/include", "include", ], "crypto/des/cbc_enc.o" => [ ".", "crypto/include", "include", ], "crypto/des/cfb64ede.o" => [ ".", "crypto/include", "include", ], "crypto/des/cfb64enc.o" => [ ".", "crypto/include", "include", ], "crypto/des/cfb_enc.o" => [ ".", "crypto/include", "include", ], "crypto/des/crypt586.o" => [ ".", "crypto/include", "include", ], "crypto/des/des-586.o" => [ ".", "crypto/include", "include", ], "crypto/des/dest4-sparcv9.o" => [ "crypto", ], "crypto/des/ecb3_enc.o" => [ ".", "crypto/include", "include", ], "crypto/des/ecb_enc.o" => [ ".", "crypto/include", "include", ], "crypto/des/fcrypt.o" => [ ".", "crypto/include", "include", ], "crypto/des/ofb64ede.o" => [ ".", "crypto/include", "include", ], "crypto/des/ofb64enc.o" => [ ".", "crypto/include", "include", ], "crypto/des/ofb_enc.o" => [ ".", "crypto/include", "include", ], "crypto/des/pcbc_enc.o" => [ ".", "crypto/include", "include", ], "crypto/des/qud_cksm.o" => [ ".", "crypto/include", "include", ], "crypto/des/rand_key.o" => [ ".", "crypto/include", "include", ], "crypto/des/set_key.o" => [ ".", "crypto/include", "include", ], "crypto/des/str2key.o" => [ ".", "crypto/include", "include", ], "crypto/des/xcbc_enc.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_ameth.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_asn1.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_check.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_depr.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_err.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_gen.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_kdf.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_key.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_lib.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_meth.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_pmeth.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_prn.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_rfc5114.o" => [ ".", "crypto/include", "include", ], "crypto/dh/dh_rfc7919.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_ameth.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_asn1.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_depr.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_err.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_gen.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_key.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_lib.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_meth.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_ossl.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_pmeth.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_prn.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_sign.o" => [ ".", "crypto/include", "include", ], "crypto/dsa/dsa_vrf.o" => [ ".", "crypto/include", "include", ], "crypto/dso/dso_dl.o" => [ ".", "crypto/include", "include", ], "crypto/dso/dso_dlfcn.o" => [ ".", "crypto/include", "include", ], "crypto/dso/dso_err.o" => [ ".", "crypto/include", "include", ], "crypto/dso/dso_lib.o" => [ ".", "crypto/include", "include", ], "crypto/dso/dso_openssl.o" => [ ".", "crypto/include", "include", ], "crypto/dso/dso_vms.o" => [ ".", "crypto/include", "include", ], "crypto/dso/dso_win32.o" => [ ".", "crypto/include", "include", ], "crypto/ebcdic.o" => [ ".", "crypto/include", "include", ], "crypto/ec/curve25519.o" => [ ".", "crypto/include", "include", ], "crypto/ec/curve448/arch_32/f_impl.o" => [ ".", "crypto/include", "include", "crypto/ec/curve448/arch_32", "crypto/ec/curve448", ], "crypto/ec/curve448/curve448.o" => [ ".", "crypto/include", "include", "crypto/ec/curve448/arch_32", "crypto/ec/curve448", ], "crypto/ec/curve448/curve448_tables.o" => [ ".", "crypto/include", "include", "crypto/ec/curve448/arch_32", "crypto/ec/curve448", ], "crypto/ec/curve448/eddsa.o" => [ ".", "crypto/include", "include", "crypto/ec/curve448/arch_32", "crypto/ec/curve448", ], "crypto/ec/curve448/f_generic.o" => [ ".", "crypto/include", "include", "crypto/ec/curve448/arch_32", "crypto/ec/curve448", ], "crypto/ec/curve448/scalar.o" => [ ".", "crypto/include", "include", "crypto/ec/curve448/arch_32", "crypto/ec/curve448", ], "crypto/ec/ec2_oct.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec2_smpl.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_ameth.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_asn1.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_check.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_curve.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_cvt.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_err.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_key.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_kmeth.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_lib.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_mult.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_oct.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_pmeth.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ec_print.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecdh_kdf.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecdh_ossl.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecdsa_ossl.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecdsa_sign.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecdsa_vrf.o" => [ ".", "crypto/include", "include", ], "crypto/ec/eck_prn.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_mont.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_nist.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_nistp224.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_nistp256.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_nistp521.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_nistputil.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_nistz256-armv4.o" => [ "crypto", ], "crypto/ec/ecp_nistz256-armv8.o" => [ "crypto", ], "crypto/ec/ecp_nistz256-sparcv9.o" => [ "crypto", ], "crypto/ec/ecp_nistz256-x86.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_nistz256.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_oct.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecp_smpl.o" => [ ".", "crypto/include", "include", ], "crypto/ec/ecx_meth.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_all.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_cnf.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_ctrl.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_dyn.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_err.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_fat.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_init.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_lib.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_list.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_openssl.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_pkey.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_rdrand.o" => [ ".", "crypto/include", "include", ], "crypto/engine/eng_table.o" => [ ".", "crypto/include", "include", ], "crypto/engine/tb_asnmth.o" => [ ".", "crypto/include", "include", ], "crypto/engine/tb_cipher.o" => [ ".", "crypto/include", "include", ], "crypto/engine/tb_dh.o" => [ ".", "crypto/include", "include", ], "crypto/engine/tb_digest.o" => [ ".", "crypto/include", "include", ], "crypto/engine/tb_dsa.o" => [ ".", "crypto/include", "include", ], "crypto/engine/tb_eckey.o" => [ ".", "crypto/include", "include", ], "crypto/engine/tb_pkmeth.o" => [ ".", "crypto/include", "include", ], "crypto/engine/tb_rand.o" => [ ".", "crypto/include", "include", ], "crypto/engine/tb_rsa.o" => [ ".", "crypto/include", "include", ], "crypto/err/err.o" => [ ".", "crypto/include", "include", ], "crypto/err/err_all.o" => [ ".", "crypto/include", "include", ], "crypto/err/err_prn.o" => [ ".", "crypto/include", "include", ], "crypto/evp/bio_b64.o" => [ ".", "crypto/include", "include", ], "crypto/evp/bio_enc.o" => [ ".", "crypto/include", "include", ], "crypto/evp/bio_md.o" => [ ".", "crypto/include", "include", ], "crypto/evp/bio_ok.o" => [ ".", "crypto/include", "include", ], "crypto/evp/c_allc.o" => [ ".", "crypto/include", "include", ], "crypto/evp/c_alld.o" => [ ".", "crypto/include", "include", ], "crypto/evp/cmeth_lib.o" => [ ".", "crypto/include", "include", ], "crypto/evp/digest.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_aes.o" => [ ".", "crypto/include", "include", "crypto", "crypto/modes", ], "crypto/evp/e_aes_cbc_hmac_sha1.o" => [ ".", "crypto/include", "include", "crypto/modes", ], "crypto/evp/e_aes_cbc_hmac_sha256.o" => [ ".", "crypto/include", "include", "crypto/modes", ], "crypto/evp/e_aria.o" => [ ".", "crypto/include", "include", "crypto", "crypto/modes", ], "crypto/evp/e_bf.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_camellia.o" => [ ".", "crypto/include", "include", "crypto", "crypto/modes", ], "crypto/evp/e_cast.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_chacha20_poly1305.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_des.o" => [ ".", "crypto/include", "include", "crypto", ], "crypto/evp/e_des3.o" => [ ".", "crypto/include", "include", "crypto", ], "crypto/evp/e_idea.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_null.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_old.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_rc2.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_rc4.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_rc4_hmac_md5.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_rc5.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_seed.o" => [ ".", "crypto/include", "include", ], "crypto/evp/e_sm4.o" => [ ".", "crypto/include", "include", "crypto", "crypto/modes", ], "crypto/evp/e_xcbc_d.o" => [ ".", "crypto/include", "include", ], "crypto/evp/encode.o" => [ ".", "crypto/include", "include", ], "crypto/evp/evp_cnf.o" => [ ".", "crypto/include", "include", ], "crypto/evp/evp_enc.o" => [ ".", "crypto/include", "include", ], "crypto/evp/evp_err.o" => [ ".", "crypto/include", "include", ], "crypto/evp/evp_key.o" => [ ".", "crypto/include", "include", ], "crypto/evp/evp_lib.o" => [ ".", "crypto/include", "include", ], "crypto/evp/evp_pbe.o" => [ ".", "crypto/include", "include", ], "crypto/evp/evp_pkey.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_md2.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_md4.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_md5.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_md5_sha1.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_mdc2.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_null.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_ripemd.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_sha1.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_sha3.o" => [ ".", "crypto/include", "include", "crypto", ], "crypto/evp/m_sigver.o" => [ ".", "crypto/include", "include", ], "crypto/evp/m_wp.o" => [ ".", "crypto/include", "include", ], "crypto/evp/names.o" => [ ".", "crypto/include", "include", ], "crypto/evp/p5_crpt.o" => [ ".", "crypto/include", "include", ], "crypto/evp/p5_crpt2.o" => [ ".", "crypto/include", "include", ], "crypto/evp/p_dec.o" => [ ".", "crypto/include", "include", ], "crypto/evp/p_enc.o" => [ ".", "crypto/include", "include", ], "crypto/evp/p_lib.o" => [ ".", "crypto/include", "include", ], "crypto/evp/p_open.o" => [ ".", "crypto/include", "include", ], "crypto/evp/p_seal.o" => [ ".", "crypto/include", "include", ], "crypto/evp/p_sign.o" => [ ".", "crypto/include", "include", ], "crypto/evp/p_verify.o" => [ ".", "crypto/include", "include", ], "crypto/evp/pbe_scrypt.o" => [ ".", "crypto/include", "include", ], "crypto/evp/pmeth_fn.o" => [ ".", "crypto/include", "include", ], "crypto/evp/pmeth_gn.o" => [ ".", "crypto/include", "include", ], "crypto/evp/pmeth_lib.o" => [ ".", "crypto/include", "include", ], "crypto/ex_data.o" => [ ".", "crypto/include", "include", ], "crypto/getenv.o" => [ ".", "crypto/include", "include", ], "crypto/hmac/hm_ameth.o" => [ ".", "crypto/include", "include", ], "crypto/hmac/hm_pmeth.o" => [ ".", "crypto/include", "include", ], "crypto/hmac/hmac.o" => [ ".", "crypto/include", "include", ], "crypto/idea/i_cbc.o" => [ ".", "crypto/include", "include", ], "crypto/idea/i_cfb64.o" => [ ".", "crypto/include", "include", ], "crypto/idea/i_ecb.o" => [ ".", "crypto/include", "include", ], "crypto/idea/i_ofb64.o" => [ ".", "crypto/include", "include", ], "crypto/idea/i_skey.o" => [ ".", "crypto/include", "include", ], "crypto/include/internal/bn_conf.h" => [ ".", ], "crypto/include/internal/dso_conf.h" => [ ".", ], "crypto/init.o" => [ ".", "crypto/include", "include", ], "crypto/kdf/hkdf.o" => [ ".", "crypto/include", "include", ], "crypto/kdf/kdf_err.o" => [ ".", "crypto/include", "include", ], "crypto/kdf/scrypt.o" => [ ".", "crypto/include", "include", ], "crypto/kdf/tls1_prf.o" => [ ".", "crypto/include", "include", ], "crypto/lhash/lh_stats.o" => [ ".", "crypto/include", "include", ], "crypto/lhash/lhash.o" => [ ".", "crypto/include", "include", ], "crypto/md4/md4_dgst.o" => [ ".", "crypto/include", "include", ], "crypto/md4/md4_one.o" => [ ".", "crypto/include", "include", ], "crypto/md5/md5-586.o" => [ ".", "crypto/include", "include", ], "crypto/md5/md5-sparcv9.o" => [ "crypto", ], "crypto/md5/md5_dgst.o" => [ ".", "crypto/include", "include", ], "crypto/md5/md5_one.o" => [ ".", "crypto/include", "include", ], "crypto/mdc2/mdc2_one.o" => [ ".", "crypto/include", "include", ], "crypto/mdc2/mdc2dgst.o" => [ ".", "crypto/include", "include", ], "crypto/mem.o" => [ ".", "crypto/include", "include", ], "crypto/mem_dbg.o" => [ ".", "crypto/include", "include", ], "crypto/mem_sec.o" => [ ".", "crypto/include", "include", ], "crypto/modes/cbc128.o" => [ ".", "crypto/include", "include", ], "crypto/modes/ccm128.o" => [ ".", "crypto/include", "include", ], "crypto/modes/cfb128.o" => [ ".", "crypto/include", "include", ], "crypto/modes/ctr128.o" => [ ".", "crypto/include", "include", ], "crypto/modes/cts128.o" => [ ".", "crypto/include", "include", ], "crypto/modes/gcm128.o" => [ ".", "crypto/include", "include", "crypto", ], "crypto/modes/ghash-armv4.o" => [ "crypto", ], "crypto/modes/ghash-s390x.o" => [ "crypto", ], "crypto/modes/ghash-sparcv9.o" => [ "crypto", ], "crypto/modes/ghash-x86.o" => [ ".", "crypto/include", "include", ], "crypto/modes/ghashv8-armx.o" => [ "crypto", ], "crypto/modes/ocb128.o" => [ ".", "crypto/include", "include", ], "crypto/modes/ofb128.o" => [ ".", "crypto/include", "include", ], "crypto/modes/wrap128.o" => [ ".", "crypto/include", "include", ], "crypto/modes/xts128.o" => [ ".", "crypto/include", "include", ], "crypto/o_dir.o" => [ ".", "crypto/include", "include", ], "crypto/o_fips.o" => [ ".", "crypto/include", "include", ], "crypto/o_fopen.o" => [ ".", "crypto/include", "include", ], "crypto/o_init.o" => [ ".", "crypto/include", "include", ], "crypto/o_str.o" => [ ".", "crypto/include", "include", ], "crypto/o_time.o" => [ ".", "crypto/include", "include", ], "crypto/objects/o_names.o" => [ ".", "crypto/include", "include", ], "crypto/objects/obj_dat.o" => [ ".", "crypto/include", "include", ], "crypto/objects/obj_err.o" => [ ".", "crypto/include", "include", ], "crypto/objects/obj_lib.o" => [ ".", "crypto/include", "include", ], "crypto/objects/obj_xref.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/ocsp_asn.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/ocsp_cl.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/ocsp_err.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/ocsp_ext.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/ocsp_ht.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/ocsp_lib.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/ocsp_prn.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/ocsp_srv.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/ocsp_vfy.o" => [ ".", "crypto/include", "include", ], "crypto/ocsp/v3_ocsp.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_all.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_err.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_info.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_lib.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_oth.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_pk8.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_pkey.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_sign.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_x509.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pem_xaux.o" => [ ".", "crypto/include", "include", ], "crypto/pem/pvkfmt.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_add.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_asn.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_attr.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_crpt.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_crt.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_decr.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_init.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_key.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_kiss.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_mutl.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_npas.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_p8d.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_p8e.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_sbag.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/p12_utl.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs12/pk12err.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs7/bio_pk7.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs7/pk7_asn1.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs7/pk7_attr.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs7/pk7_doit.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs7/pk7_lib.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs7/pk7_mime.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs7/pk7_smime.o" => [ ".", "crypto/include", "include", ], "crypto/pkcs7/pkcs7err.o" => [ ".", "crypto/include", "include", ], "crypto/poly1305/poly1305-armv4.o" => [ "crypto", ], "crypto/poly1305/poly1305-armv8.o" => [ "crypto", ], "crypto/poly1305/poly1305-mips.o" => [ "crypto", ], "crypto/poly1305/poly1305-s390x.o" => [ "crypto", ], "crypto/poly1305/poly1305-sparcv9.o" => [ "crypto", ], "crypto/poly1305/poly1305-x86.o" => [ ".", "crypto/include", "include", ], "crypto/poly1305/poly1305.o" => [ ".", "crypto/include", "include", ], "crypto/poly1305/poly1305_ameth.o" => [ ".", "crypto/include", "include", ], "crypto/poly1305/poly1305_pmeth.o" => [ ".", "crypto/include", "include", ], "crypto/rand/drbg_ctr.o" => [ ".", "crypto/include", "include", ], "crypto/rand/drbg_lib.o" => [ ".", "crypto/include", "include", ], "crypto/rand/rand_egd.o" => [ ".", "crypto/include", "include", ], "crypto/rand/rand_err.o" => [ ".", "crypto/include", "include", ], "crypto/rand/rand_lib.o" => [ ".", "crypto/include", "include", ], "crypto/rand/rand_unix.o" => [ ".", "crypto/include", "include", ], "crypto/rand/rand_vms.o" => [ ".", "crypto/include", "include", ], "crypto/rand/rand_win.o" => [ ".", "crypto/include", "include", ], "crypto/rand/randfile.o" => [ ".", "crypto/include", "include", ], "crypto/rc2/rc2_cbc.o" => [ ".", "crypto/include", "include", ], "crypto/rc2/rc2_ecb.o" => [ ".", "crypto/include", "include", ], "crypto/rc2/rc2_skey.o" => [ ".", "crypto/include", "include", ], "crypto/rc2/rc2cfb64.o" => [ ".", "crypto/include", "include", ], "crypto/rc2/rc2ofb64.o" => [ ".", "crypto/include", "include", ], "crypto/rc4/rc4-586.o" => [ ".", "crypto/include", "include", ], "crypto/ripemd/rmd-586.o" => [ ".", "crypto/include", "include", ], "crypto/ripemd/rmd_dgst.o" => [ ".", "crypto/include", "include", ], "crypto/ripemd/rmd_one.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_ameth.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_asn1.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_chk.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_crpt.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_depr.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_err.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_gen.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_lib.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_meth.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_mp.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_none.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_oaep.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_ossl.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_pk1.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_pmeth.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_prn.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_pss.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_saos.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_sign.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_ssl.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_x931.o" => [ ".", "crypto/include", "include", ], "crypto/rsa/rsa_x931g.o" => [ ".", "crypto/include", "include", ], "crypto/s390xcpuid.o" => [ "crypto", ], "crypto/seed/seed.o" => [ ".", "crypto/include", "include", ], "crypto/seed/seed_cbc.o" => [ ".", "crypto/include", "include", ], "crypto/seed/seed_cfb.o" => [ ".", "crypto/include", "include", ], "crypto/seed/seed_ecb.o" => [ ".", "crypto/include", "include", ], "crypto/seed/seed_ofb.o" => [ ".", "crypto/include", "include", ], "crypto/sha/keccak1600-armv4.o" => [ "crypto", ], "crypto/sha/keccak1600.o" => [ ".", "crypto/include", "include", ], "crypto/sha/sha1-586.o" => [ ".", "crypto/include", "include", ], "crypto/sha/sha1-armv4-large.o" => [ "crypto", ], "crypto/sha/sha1-armv8.o" => [ "crypto", ], "crypto/sha/sha1-mips.o" => [ "crypto", ], "crypto/sha/sha1-s390x.o" => [ "crypto", ], "crypto/sha/sha1-sparcv9.o" => [ "crypto", ], "crypto/sha/sha1_one.o" => [ ".", "crypto/include", "include", ], "crypto/sha/sha1dgst.o" => [ ".", "crypto/include", "include", ], "crypto/sha/sha256-586.o" => [ ".", "crypto/include", "include", ], "crypto/sha/sha256-armv4.o" => [ "crypto", ], "crypto/sha/sha256-armv8.o" => [ "crypto", ], "crypto/sha/sha256-mips.o" => [ "crypto", ], "crypto/sha/sha256-s390x.o" => [ "crypto", ], "crypto/sha/sha256-sparcv9.o" => [ "crypto", ], "crypto/sha/sha256.o" => [ ".", "crypto/include", "include", ], "crypto/sha/sha512-586.o" => [ ".", "crypto/include", "include", ], "crypto/sha/sha512-armv4.o" => [ "crypto", ], "crypto/sha/sha512-armv8.o" => [ "crypto", ], "crypto/sha/sha512-mips.o" => [ "crypto", ], "crypto/sha/sha512-s390x.o" => [ "crypto", ], "crypto/sha/sha512-sparcv9.o" => [ "crypto", ], "crypto/sha/sha512.o" => [ ".", "crypto/include", "include", ], "crypto/siphash/siphash.o" => [ ".", "crypto/include", "include", ], "crypto/siphash/siphash_ameth.o" => [ ".", "crypto/include", "include", ], "crypto/siphash/siphash_pmeth.o" => [ ".", "crypto/include", "include", ], "crypto/sm2/sm2_crypt.o" => [ ".", "crypto/include", "include", ], "crypto/sm2/sm2_err.o" => [ ".", "crypto/include", "include", ], "crypto/sm2/sm2_pmeth.o" => [ ".", "crypto/include", "include", ], "crypto/sm2/sm2_sign.o" => [ ".", "crypto/include", "include", ], "crypto/sm3/m_sm3.o" => [ ".", "crypto/include", "include", ], "crypto/sm3/sm3.o" => [ ".", "crypto/include", "include", ], "crypto/sm4/sm4.o" => [ ".", "crypto/include", "include", ], "crypto/srp/srp_lib.o" => [ ".", "crypto/include", "include", ], "crypto/srp/srp_vfy.o" => [ ".", "crypto/include", "include", ], "crypto/stack/stack.o" => [ ".", "crypto/include", "include", ], "crypto/store/loader_file.o" => [ ".", "crypto/include", "include", ], "crypto/store/store_err.o" => [ ".", "crypto/include", "include", ], "crypto/store/store_init.o" => [ ".", "crypto/include", "include", ], "crypto/store/store_lib.o" => [ ".", "crypto/include", "include", ], "crypto/store/store_register.o" => [ ".", "crypto/include", "include", ], "crypto/store/store_strings.o" => [ ".", "crypto/include", "include", ], "crypto/threads_none.o" => [ ".", "crypto/include", "include", ], "crypto/threads_pthread.o" => [ ".", "crypto/include", "include", ], "crypto/threads_win.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_asn1.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_conf.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_err.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_lib.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_req_print.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_req_utils.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_rsp_print.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_rsp_sign.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_rsp_utils.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_rsp_verify.o" => [ ".", "crypto/include", "include", ], "crypto/ts/ts_verify_ctx.o" => [ ".", "crypto/include", "include", ], "crypto/txt_db/txt_db.o" => [ ".", "crypto/include", "include", ], "crypto/ui/ui_err.o" => [ ".", "crypto/include", "include", ], "crypto/ui/ui_lib.o" => [ ".", "crypto/include", "include", ], "crypto/ui/ui_null.o" => [ ".", "crypto/include", "include", ], "crypto/ui/ui_openssl.o" => [ ".", "crypto/include", "include", ], "crypto/ui/ui_util.o" => [ ".", "crypto/include", "include", ], "crypto/uid.o" => [ ".", "crypto/include", "include", ], "crypto/whrlpool/wp-mmx.o" => [ ".", "crypto/include", "include", ], "crypto/whrlpool/wp_block.o" => [ ".", "crypto/include", "include", ], "crypto/whrlpool/wp_dgst.o" => [ ".", "crypto/include", "include", ], "crypto/x509/by_dir.o" => [ ".", "crypto/include", "include", ], "crypto/x509/by_file.o" => [ ".", "crypto/include", "include", ], "crypto/x509/t_crl.o" => [ ".", "crypto/include", "include", ], "crypto/x509/t_req.o" => [ ".", "crypto/include", "include", ], "crypto/x509/t_x509.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_att.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_cmp.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_d2.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_def.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_err.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_ext.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_lu.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_meth.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_obj.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_r2x.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_req.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_set.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_trs.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_txt.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_v3.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_vfy.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509_vpm.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509cset.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509name.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509rset.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509spki.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x509type.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x_all.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x_attrib.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x_crl.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x_exten.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x_name.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x_pubkey.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x_req.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x_x509.o" => [ ".", "crypto/include", "include", ], "crypto/x509/x_x509a.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/pcy_cache.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/pcy_data.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/pcy_lib.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/pcy_map.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/pcy_node.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/pcy_tree.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_addr.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_admis.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_akey.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_akeya.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_alt.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_asid.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_bcons.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_bitst.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_conf.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_cpols.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_crld.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_enum.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_extku.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_genn.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_ia5.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_info.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_int.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_lib.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_ncons.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_pci.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_pcia.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_pcons.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_pku.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_pmaps.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_prn.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_purp.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_skey.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_sxnet.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_tlsf.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3_utl.o" => [ ".", "crypto/include", "include", ], "crypto/x509v3/v3err.o" => [ ".", "crypto/include", "include", ], "crypto/x86cpuid.o" => [ ".", "crypto/include", "include", ], "engines/e_capi.o" => [ ".", "crypto/include", "include", ], "engines/e_padlock-x86.o" => [ ".", "crypto/include", "include", ], "engines/e_padlock.o" => [ ".", "crypto/include", "include", ], "fuzz/asn1.o" => [ "include", ], "fuzz/asn1parse.o" => [ "include", ], "fuzz/bignum.o" => [ "include", ], "fuzz/bndiv.o" => [ "include", ], "fuzz/client.o" => [ "include", ], "fuzz/cms.o" => [ "include", ], "fuzz/conf.o" => [ "include", ], "fuzz/crl.o" => [ "include", ], "fuzz/ct.o" => [ "include", ], "fuzz/server.o" => [ "include", ], "fuzz/test-corpus.o" => [ "include", ], "fuzz/x509.o" => [ "include", ], "include/openssl/opensslconf.h" => [ ".", ], "ssl/bio_ssl.o" => [ ".", "include", ], "ssl/d1_lib.o" => [ ".", "include", ], "ssl/d1_msg.o" => [ ".", "include", ], "ssl/d1_srtp.o" => [ ".", "include", ], "ssl/methods.o" => [ ".", "include", ], "ssl/packet.o" => [ ".", "include", ], "ssl/pqueue.o" => [ ".", "include", ], "ssl/record/dtls1_bitmap.o" => [ ".", "include", ], "ssl/record/rec_layer_d1.o" => [ ".", "include", ], "ssl/record/rec_layer_s3.o" => [ ".", "include", ], "ssl/record/ssl3_buffer.o" => [ ".", "include", ], "ssl/record/ssl3_record.o" => [ ".", "include", ], "ssl/record/ssl3_record_tls13.o" => [ ".", "include", ], "ssl/s3_cbc.o" => [ ".", "include", ], "ssl/s3_enc.o" => [ ".", "include", ], "ssl/s3_lib.o" => [ ".", "include", ], "ssl/s3_msg.o" => [ ".", "include", ], "ssl/ssl_asn1.o" => [ ".", "include", ], "ssl/ssl_cert.o" => [ ".", "include", ], "ssl/ssl_ciph.o" => [ ".", "include", ], "ssl/ssl_conf.o" => [ ".", "include", ], "ssl/ssl_err.o" => [ ".", "include", ], "ssl/ssl_init.o" => [ ".", "include", ], "ssl/ssl_lib.o" => [ ".", "include", ], "ssl/ssl_mcnf.o" => [ ".", "include", ], "ssl/ssl_rsa.o" => [ ".", "include", ], "ssl/ssl_sess.o" => [ ".", "include", ], "ssl/ssl_stat.o" => [ ".", "include", ], "ssl/ssl_txt.o" => [ ".", "include", ], "ssl/ssl_utst.o" => [ ".", "include", ], "ssl/statem/extensions.o" => [ ".", "include", ], "ssl/statem/extensions_clnt.o" => [ ".", "include", ], "ssl/statem/extensions_cust.o" => [ ".", "include", ], "ssl/statem/extensions_srvr.o" => [ ".", "include", ], "ssl/statem/statem.o" => [ ".", "include", ], "ssl/statem/statem_clnt.o" => [ ".", "include", ], "ssl/statem/statem_dtls.o" => [ ".", "include", ], "ssl/statem/statem_lib.o" => [ ".", "include", ], "ssl/statem/statem_srvr.o" => [ ".", "include", ], "ssl/t1_enc.o" => [ ".", "include", ], "ssl/t1_lib.o" => [ ".", "include", ], "ssl/t1_trce.o" => [ ".", "include", ], "ssl/tls13_enc.o" => [ ".", "include", ], "ssl/tls_srp.o" => [ ".", "include", ], "test/aborttest.o" => [ "include", ], "test/afalgtest.o" => [ "include", ], "test/asn1_decode_test.o" => [ "include", ], "test/asn1_encode_test.o" => [ "include", ], "test/asn1_internal_test.o" => [ ".", "include", "crypto/include", ], "test/asn1_string_table_test.o" => [ "include", ], "test/asn1_time_test.o" => [ "include", ], "test/asynciotest.o" => [ "include", ], "test/asynctest.o" => [ "include", ], "test/bad_dtls_test.o" => [ "include", ], "test/bftest.o" => [ "include", ], "test/bio_callback_test.o" => [ "include", ], "test/bio_enc_test.o" => [ "include", ], "test/bio_memleak_test.o" => [ "include", ], "test/bioprinttest.o" => [ "include", ], "test/bntest.o" => [ "include", ], "test/buildtest_aes.o" => [ "include", ], "test/buildtest_asn1.o" => [ "include", ], "test/buildtest_asn1t.o" => [ "include", ], "test/buildtest_async.o" => [ "include", ], "test/buildtest_bio.o" => [ "include", ], "test/buildtest_blowfish.o" => [ "include", ], "test/buildtest_bn.o" => [ "include", ], "test/buildtest_buffer.o" => [ "include", ], "test/buildtest_camellia.o" => [ "include", ], "test/buildtest_cast.o" => [ "include", ], "test/buildtest_cmac.o" => [ "include", ], "test/buildtest_cms.o" => [ "include", ], "test/buildtest_conf.o" => [ "include", ], "test/buildtest_conf_api.o" => [ "include", ], "test/buildtest_crypto.o" => [ "include", ], "test/buildtest_ct.o" => [ "include", ], "test/buildtest_des.o" => [ "include", ], "test/buildtest_dh.o" => [ "include", ], "test/buildtest_dsa.o" => [ "include", ], "test/buildtest_dtls1.o" => [ "include", ], "test/buildtest_e_os2.o" => [ "include", ], "test/buildtest_ebcdic.o" => [ "include", ], "test/buildtest_ec.o" => [ "include", ], "test/buildtest_ecdh.o" => [ "include", ], "test/buildtest_ecdsa.o" => [ "include", ], "test/buildtest_engine.o" => [ "include", ], "test/buildtest_evp.o" => [ "include", ], "test/buildtest_hmac.o" => [ "include", ], "test/buildtest_idea.o" => [ "include", ], "test/buildtest_kdf.o" => [ "include", ], "test/buildtest_lhash.o" => [ "include", ], "test/buildtest_md4.o" => [ "include", ], "test/buildtest_md5.o" => [ "include", ], "test/buildtest_mdc2.o" => [ "include", ], "test/buildtest_modes.o" => [ "include", ], "test/buildtest_obj_mac.o" => [ "include", ], "test/buildtest_objects.o" => [ "include", ], "test/buildtest_ocsp.o" => [ "include", ], "test/buildtest_opensslv.o" => [ "include", ], "test/buildtest_ossl_typ.o" => [ "include", ], "test/buildtest_pem.o" => [ "include", ], "test/buildtest_pem2.o" => [ "include", ], "test/buildtest_pkcs12.o" => [ "include", ], "test/buildtest_pkcs7.o" => [ "include", ], "test/buildtest_rand.o" => [ "include", ], "test/buildtest_rand_drbg.o" => [ "include", ], "test/buildtest_rc2.o" => [ "include", ], "test/buildtest_rc4.o" => [ "include", ], "test/buildtest_ripemd.o" => [ "include", ], "test/buildtest_rsa.o" => [ "include", ], "test/buildtest_safestack.o" => [ "include", ], "test/buildtest_seed.o" => [ "include", ], "test/buildtest_sha.o" => [ "include", ], "test/buildtest_srp.o" => [ "include", ], "test/buildtest_srtp.o" => [ "include", ], "test/buildtest_ssl.o" => [ "include", ], "test/buildtest_ssl2.o" => [ "include", ], "test/buildtest_stack.o" => [ "include", ], "test/buildtest_store.o" => [ "include", ], "test/buildtest_symhacks.o" => [ "include", ], "test/buildtest_tls1.o" => [ "include", ], "test/buildtest_ts.o" => [ "include", ], "test/buildtest_txt_db.o" => [ "include", ], "test/buildtest_ui.o" => [ "include", ], "test/buildtest_whrlpool.o" => [ "include", ], "test/buildtest_x509.o" => [ "include", ], "test/buildtest_x509_vfy.o" => [ "include", ], "test/buildtest_x509v3.o" => [ "include", ], "test/casttest.o" => [ "include", ], "test/chacha_internal_test.o" => [ ".", "include", "crypto/include", ], "test/cipher_overhead_test.o" => [ ".", "include", ], "test/cipherbytes_test.o" => [ "include", ], "test/cipherlist_test.o" => [ "include", ], "test/ciphername_test.o" => [ "include", ], "test/clienthellotest.o" => [ "include", ], "test/cmsapitest.o" => [ "include", ], "test/conf_include_test.o" => [ "include", ], "test/constant_time_test.o" => [ "include", ], "test/crltest.o" => [ "include", ], "test/ct_test.o" => [ "include", ], "test/ctype_internal_test.o" => [ ".", "crypto/include", "include", ], "test/curve448_internal_test.o" => [ ".", "include", "crypto/ec/curve448", ], "test/d2i_test.o" => [ "include", ], "test/danetest.o" => [ "include", ], "test/destest.o" => [ "include", ], "test/dhtest.o" => [ "include", ], "test/drbg_cavs_data.o" => [ "include", "test", ".", ], "test/drbg_cavs_test.o" => [ "include", "test", ".", ], "test/drbgtest.o" => [ "include", ], "test/dsa_no_digest_size_test.o" => [ "include", ], "test/dsatest.o" => [ "include", ], "test/dtls_mtu_test.o" => [ ".", "include", ], "test/dtlstest.o" => [ "include", ], "test/dtlsv1listentest.o" => [ "include", ], "test/ec_internal_test.o" => [ "include", "crypto/ec", "crypto/include", ], "test/ecdsatest.o" => [ "include", ], "test/ecstresstest.o" => [ "include", ], "test/ectest.o" => [ "include", ], "test/enginetest.o" => [ "include", ], "test/errtest.o" => [ "include", ], "test/evp_extra_test.o" => [ "include", "crypto/include", ], "test/evp_test.o" => [ "include", ], "test/exdatatest.o" => [ "include", ], "test/exptest.o" => [ "include", ], "test/fatalerrtest.o" => [ "include", ], "test/gmdifftest.o" => [ "include", ], "test/gosttest.o" => [ "include", ".", ], "test/handshake_helper.o" => [ ".", "include", ], "test/hmactest.o" => [ "include", ], "test/ideatest.o" => [ "include", ], "test/igetest.o" => [ "include", ], "test/lhash_test.o" => [ "include", ], "test/md2test.o" => [ "include", ], "test/mdc2_internal_test.o" => [ ".", "include", ], "test/mdc2test.o" => [ "include", ], "test/memleaktest.o" => [ "include", ], "test/modes_internal_test.o" => [ ".", "include", ], "test/ocspapitest.o" => [ "include", ], "test/packettest.o" => [ "include", ], "test/pbelutest.o" => [ "include", ], "test/pemtest.o" => [ "include", ], "test/pkey_meth_kdf_test.o" => [ "include", ], "test/pkey_meth_test.o" => [ "include", ], "test/poly1305_internal_test.o" => [ ".", "include", "crypto/include", ], "test/rc2test.o" => [ "include", ], "test/rc4test.o" => [ "include", ], "test/rc5test.o" => [ "include", ], "test/rdrand_sanitytest.o" => [ "include", ], "test/recordlentest.o" => [ "include", ], "test/rsa_complex.o" => [ "include", ], "test/rsa_mp_test.o" => [ "include", ], "test/rsa_test.o" => [ "include", ], "test/sanitytest.o" => [ "include", ], "test/secmemtest.o" => [ "include", ], "test/servername_test.o" => [ "include", ], "test/siphash_internal_test.o" => [ ".", "include", "crypto/include", ], "test/sm2_internal_test.o" => [ "include", "crypto/include", ], "test/sm4_internal_test.o" => [ ".", "include", "crypto/include", ], "test/srptest.o" => [ "include", ], "test/ssl_cert_table_internal_test.o" => [ ".", "include", ], "test/ssl_test.o" => [ "include", ], "test/ssl_test_ctx.o" => [ "include", ], "test/ssl_test_ctx_test.o" => [ "include", ], "test/sslapitest.o" => [ "include", ".", ], "test/sslbuffertest.o" => [ "include", ], "test/sslcorrupttest.o" => [ "include", ], "test/ssltest_old.o" => [ ".", "include", ], "test/ssltestlib.o" => [ ".", "include", ], "test/stack_test.o" => [ "include", ], "test/sysdefaulttest.o" => [ "include", ], "test/test_test.o" => [ "include", ], "test/testutil/basic_output.o" => [ "include", ], "test/testutil/cb.o" => [ "include", ], "test/testutil/driver.o" => [ "include", ], "test/testutil/format_output.o" => [ "include", ], "test/testutil/init.o" => [ "include", ], "test/testutil/main.o" => [ "include", ], "test/testutil/output_helpers.o" => [ "include", ], "test/testutil/stanza.o" => [ "include", ], "test/testutil/tap_bio.o" => [ "include", ], "test/testutil/test_cleanup.o" => [ "include", ], "test/testutil/tests.o" => [ "include", ], "test/threadstest.o" => [ "include", ], "test/time_offset_test.o" => [ "include", ], "test/tls13ccstest.o" => [ "include", ], "test/tls13encryptiontest.o" => [ ".", "include", ], "test/uitest.o" => [ ".", "include", "apps", ], "test/v3ext.o" => [ "include", ], "test/v3nametest.o" => [ "include", ], "test/verify_extra_test.o" => [ "include", ], "test/versions.o" => [ "include", ], "test/wpackettest.o" => [ "include", ], "test/x509_check_cert_pkey_test.o" => [ "include", ], "test/x509_dup_cert_test.o" => [ "include", ], "test/x509_internal_test.o" => [ ".", "include", ], "test/x509_time_test.o" => [ "include", ], "test/x509aux.o" => [ "include", ], }, "install" => { "libraries" => [ "libcrypto", "libssl", ], "programs" => [ "apps/openssl", ], "scripts" => [ "apps/CA.pl", "apps/tsget.pl", "tools/c_rehash.pl", ], }, "ldadd" => { }, "libraries" => [ "apps/libapps.a", "libcrypto", "libssl", "test/libtestutil.a", ], "overrides" => [ ], "programs" => [ "apps/openssl", "fuzz/asn1-test", "fuzz/asn1parse-test", "fuzz/bignum-test", "fuzz/bndiv-test", "fuzz/client-test", "fuzz/cms-test", "fuzz/conf-test", "fuzz/crl-test", "fuzz/ct-test", "fuzz/server-test", "fuzz/x509-test", "test/aborttest", "test/afalgtest", "test/asn1_decode_test", "test/asn1_encode_test", "test/asn1_internal_test", "test/asn1_string_table_test", "test/asn1_time_test", "test/asynciotest", "test/asynctest", "test/bad_dtls_test", "test/bftest", "test/bio_callback_test", "test/bio_enc_test", "test/bio_memleak_test", "test/bioprinttest", "test/bntest", "test/buildtest_c_aes", "test/buildtest_c_asn1", "test/buildtest_c_asn1t", "test/buildtest_c_async", "test/buildtest_c_bio", "test/buildtest_c_blowfish", "test/buildtest_c_bn", "test/buildtest_c_buffer", "test/buildtest_c_camellia", "test/buildtest_c_cast", "test/buildtest_c_cmac", "test/buildtest_c_cms", "test/buildtest_c_conf", "test/buildtest_c_conf_api", "test/buildtest_c_crypto", "test/buildtest_c_ct", "test/buildtest_c_des", "test/buildtest_c_dh", "test/buildtest_c_dsa", "test/buildtest_c_dtls1", "test/buildtest_c_e_os2", "test/buildtest_c_ebcdic", "test/buildtest_c_ec", "test/buildtest_c_ecdh", "test/buildtest_c_ecdsa", "test/buildtest_c_engine", "test/buildtest_c_evp", "test/buildtest_c_hmac", "test/buildtest_c_idea", "test/buildtest_c_kdf", "test/buildtest_c_lhash", "test/buildtest_c_md4", "test/buildtest_c_md5", "test/buildtest_c_mdc2", "test/buildtest_c_modes", "test/buildtest_c_obj_mac", "test/buildtest_c_objects", "test/buildtest_c_ocsp", "test/buildtest_c_opensslv", "test/buildtest_c_ossl_typ", "test/buildtest_c_pem", "test/buildtest_c_pem2", "test/buildtest_c_pkcs12", "test/buildtest_c_pkcs7", "test/buildtest_c_rand", "test/buildtest_c_rand_drbg", "test/buildtest_c_rc2", "test/buildtest_c_rc4", "test/buildtest_c_ripemd", "test/buildtest_c_rsa", "test/buildtest_c_safestack", "test/buildtest_c_seed", "test/buildtest_c_sha", "test/buildtest_c_srp", "test/buildtest_c_srtp", "test/buildtest_c_ssl", "test/buildtest_c_ssl2", "test/buildtest_c_stack", "test/buildtest_c_store", "test/buildtest_c_symhacks", "test/buildtest_c_tls1", "test/buildtest_c_ts", "test/buildtest_c_txt_db", "test/buildtest_c_ui", "test/buildtest_c_whrlpool", "test/buildtest_c_x509", "test/buildtest_c_x509_vfy", "test/buildtest_c_x509v3", "test/casttest", "test/chacha_internal_test", "test/cipher_overhead_test", "test/cipherbytes_test", "test/cipherlist_test", "test/ciphername_test", "test/clienthellotest", "test/cmsapitest", "test/conf_include_test", "test/constant_time_test", "test/crltest", "test/ct_test", "test/ctype_internal_test", "test/curve448_internal_test", "test/d2i_test", "test/danetest", "test/destest", "test/dhtest", "test/drbg_cavs_test", "test/drbgtest", "test/dsa_no_digest_size_test", "test/dsatest", "test/dtls_mtu_test", "test/dtlstest", "test/dtlsv1listentest", "test/ec_internal_test", "test/ecdsatest", "test/ecstresstest", "test/ectest", "test/enginetest", "test/errtest", "test/evp_extra_test", "test/evp_test", "test/exdatatest", "test/exptest", "test/fatalerrtest", "test/gmdifftest", "test/gosttest", "test/hmactest", "test/ideatest", "test/igetest", "test/lhash_test", "test/md2test", "test/mdc2_internal_test", "test/mdc2test", "test/memleaktest", "test/modes_internal_test", "test/ocspapitest", "test/packettest", "test/pbelutest", "test/pemtest", "test/pkey_meth_kdf_test", "test/pkey_meth_test", "test/poly1305_internal_test", "test/rc2test", "test/rc4test", "test/rc5test", "test/rdrand_sanitytest", "test/recordlentest", "test/rsa_complex", "test/rsa_mp_test", "test/rsa_test", "test/sanitytest", "test/secmemtest", "test/servername_test", "test/siphash_internal_test", "test/sm2_internal_test", "test/sm4_internal_test", "test/srptest", "test/ssl_cert_table_internal_test", "test/ssl_test", "test/ssl_test_ctx_test", "test/sslapitest", "test/sslbuffertest", "test/sslcorrupttest", "test/ssltest_old", "test/stack_test", "test/sysdefaulttest", "test/test_test", "test/threadstest", "test/time_offset_test", "test/tls13ccstest", "test/tls13encryptiontest", "test/uitest", "test/v3ext", "test/v3nametest", "test/verify_extra_test", "test/versions", "test/wpackettest", "test/x509_check_cert_pkey_test", "test/x509_dup_cert_test", "test/x509_internal_test", "test/x509_time_test", "test/x509aux", ], "rawlines" => [ ], "rename" => { }, "scripts" => [ "apps/CA.pl", "apps/tsget.pl", "tools/c_rehash.pl", ], "shared_sources" => { }, "sources" => { "apps/CA.pl" => [ "apps/CA.pl.in", ], "apps/app_rand.o" => [ "apps/app_rand.c", ], "apps/apps.o" => [ "apps/apps.c", ], "apps/asn1pars.o" => [ "apps/asn1pars.c", ], "apps/bf_prefix.o" => [ "apps/bf_prefix.c", ], "apps/ca.o" => [ "apps/ca.c", ], "apps/ciphers.o" => [ "apps/ciphers.c", ], "apps/cms.o" => [ "apps/cms.c", ], "apps/crl.o" => [ "apps/crl.c", ], "apps/crl2p7.o" => [ "apps/crl2p7.c", ], "apps/dgst.o" => [ "apps/dgst.c", ], "apps/dhparam.o" => [ "apps/dhparam.c", ], "apps/dsa.o" => [ "apps/dsa.c", ], "apps/dsaparam.o" => [ "apps/dsaparam.c", ], "apps/ec.o" => [ "apps/ec.c", ], "apps/ecparam.o" => [ "apps/ecparam.c", ], "apps/enc.o" => [ "apps/enc.c", ], "apps/engine.o" => [ "apps/engine.c", ], "apps/errstr.o" => [ "apps/errstr.c", ], "apps/gendsa.o" => [ "apps/gendsa.c", ], "apps/genpkey.o" => [ "apps/genpkey.c", ], "apps/genrsa.o" => [ "apps/genrsa.c", ], "apps/libapps.a" => [ "apps/app_rand.o", "apps/apps.o", "apps/bf_prefix.o", "apps/opt.o", "apps/s_cb.o", "apps/s_socket.o", "apps/win32_init.o", ], "apps/nseq.o" => [ "apps/nseq.c", ], "apps/ocsp.o" => [ "apps/ocsp.c", ], "apps/openssl" => [ "apps/asn1pars.o", "apps/ca.o", "apps/ciphers.o", "apps/cms.o", "apps/crl.o", "apps/crl2p7.o", "apps/dgst.o", "apps/dhparam.o", "apps/dsa.o", "apps/dsaparam.o", "apps/ec.o", "apps/ecparam.o", "apps/enc.o", "apps/engine.o", "apps/errstr.o", "apps/gendsa.o", "apps/genpkey.o", "apps/genrsa.o", "apps/nseq.o", "apps/ocsp.o", "apps/openssl.o", "apps/openssl.res", "apps/passwd.o", "apps/pkcs12.o", "apps/pkcs7.o", "apps/pkcs8.o", "apps/pkey.o", "apps/pkeyparam.o", "apps/pkeyutl.o", "apps/prime.o", "apps/rand.o", "apps/rehash.o", "apps/req.o", "apps/rsa.o", "apps/rsautl.o", "apps/s_client.o", "apps/s_server.o", "apps/s_time.o", "apps/sess_id.o", "apps/smime.o", "apps/speed.o", "apps/spkac.o", "apps/srp.o", "apps/storeutl.o", "apps/ts.o", "apps/verify.o", "apps/version.o", "apps/x509.o", ], "apps/openssl.o" => [ "apps/openssl.c", ], "apps/openssl.res" => [ "apps/openssl.rc", ], "apps/opt.o" => [ "apps/opt.c", ], "apps/passwd.o" => [ "apps/passwd.c", ], "apps/pkcs12.o" => [ "apps/pkcs12.c", ], "apps/pkcs7.o" => [ "apps/pkcs7.c", ], "apps/pkcs8.o" => [ "apps/pkcs8.c", ], "apps/pkey.o" => [ "apps/pkey.c", ], "apps/pkeyparam.o" => [ "apps/pkeyparam.c", ], "apps/pkeyutl.o" => [ "apps/pkeyutl.c", ], "apps/prime.o" => [ "apps/prime.c", ], "apps/rand.o" => [ "apps/rand.c", ], "apps/rehash.o" => [ "apps/rehash.c", ], "apps/req.o" => [ "apps/req.c", ], "apps/rsa.o" => [ "apps/rsa.c", ], "apps/rsautl.o" => [ "apps/rsautl.c", ], "apps/s_cb.o" => [ "apps/s_cb.c", ], "apps/s_client.o" => [ "apps/s_client.c", ], "apps/s_server.o" => [ "apps/s_server.c", ], "apps/s_socket.o" => [ "apps/s_socket.c", ], "apps/s_time.o" => [ "apps/s_time.c", ], "apps/sess_id.o" => [ "apps/sess_id.c", ], "apps/smime.o" => [ "apps/smime.c", ], "apps/speed.o" => [ "apps/speed.c", ], "apps/spkac.o" => [ "apps/spkac.c", ], "apps/srp.o" => [ "apps/srp.c", ], "apps/storeutl.o" => [ "apps/storeutl.c", ], "apps/ts.o" => [ "apps/ts.c", ], "apps/tsget.pl" => [ "apps/tsget.in", ], "apps/verify.o" => [ "apps/verify.c", ], "apps/version.o" => [ "apps/version.c", ], "apps/win32_init.o" => [ "apps/win32_init.c", ], "apps/x509.o" => [ "apps/x509.c", ], "crypto/aes/aes-586.o" => [ "crypto/aes/aes-586.s", ], "crypto/aes/aes_cfb.o" => [ "crypto/aes/aes_cfb.c", ], "crypto/aes/aes_ecb.o" => [ "crypto/aes/aes_ecb.c", ], "crypto/aes/aes_ige.o" => [ "crypto/aes/aes_ige.c", ], "crypto/aes/aes_misc.o" => [ "crypto/aes/aes_misc.c", ], "crypto/aes/aes_ofb.o" => [ "crypto/aes/aes_ofb.c", ], "crypto/aes/aes_wrap.o" => [ "crypto/aes/aes_wrap.c", ], "crypto/aes/aesni-x86.o" => [ "crypto/aes/aesni-x86.s", ], "crypto/aes/vpaes-x86.o" => [ "crypto/aes/vpaes-x86.s", ], "crypto/aria/aria.o" => [ "crypto/aria/aria.c", ], "crypto/asn1/a_bitstr.o" => [ "crypto/asn1/a_bitstr.c", ], "crypto/asn1/a_d2i_fp.o" => [ "crypto/asn1/a_d2i_fp.c", ], "crypto/asn1/a_digest.o" => [ "crypto/asn1/a_digest.c", ], "crypto/asn1/a_dup.o" => [ "crypto/asn1/a_dup.c", ], "crypto/asn1/a_gentm.o" => [ "crypto/asn1/a_gentm.c", ], "crypto/asn1/a_i2d_fp.o" => [ "crypto/asn1/a_i2d_fp.c", ], "crypto/asn1/a_int.o" => [ "crypto/asn1/a_int.c", ], "crypto/asn1/a_mbstr.o" => [ "crypto/asn1/a_mbstr.c", ], "crypto/asn1/a_object.o" => [ "crypto/asn1/a_object.c", ], "crypto/asn1/a_octet.o" => [ "crypto/asn1/a_octet.c", ], "crypto/asn1/a_print.o" => [ "crypto/asn1/a_print.c", ], "crypto/asn1/a_sign.o" => [ "crypto/asn1/a_sign.c", ], "crypto/asn1/a_strex.o" => [ "crypto/asn1/a_strex.c", ], "crypto/asn1/a_strnid.o" => [ "crypto/asn1/a_strnid.c", ], "crypto/asn1/a_time.o" => [ "crypto/asn1/a_time.c", ], "crypto/asn1/a_type.o" => [ "crypto/asn1/a_type.c", ], "crypto/asn1/a_utctm.o" => [ "crypto/asn1/a_utctm.c", ], "crypto/asn1/a_utf8.o" => [ "crypto/asn1/a_utf8.c", ], "crypto/asn1/a_verify.o" => [ "crypto/asn1/a_verify.c", ], "crypto/asn1/ameth_lib.o" => [ "crypto/asn1/ameth_lib.c", ], "crypto/asn1/asn1_err.o" => [ "crypto/asn1/asn1_err.c", ], "crypto/asn1/asn1_gen.o" => [ "crypto/asn1/asn1_gen.c", ], "crypto/asn1/asn1_item_list.o" => [ "crypto/asn1/asn1_item_list.c", ], "crypto/asn1/asn1_lib.o" => [ "crypto/asn1/asn1_lib.c", ], "crypto/asn1/asn1_par.o" => [ "crypto/asn1/asn1_par.c", ], "crypto/asn1/asn_mime.o" => [ "crypto/asn1/asn_mime.c", ], "crypto/asn1/asn_moid.o" => [ "crypto/asn1/asn_moid.c", ], "crypto/asn1/asn_mstbl.o" => [ "crypto/asn1/asn_mstbl.c", ], "crypto/asn1/asn_pack.o" => [ "crypto/asn1/asn_pack.c", ], "crypto/asn1/bio_asn1.o" => [ "crypto/asn1/bio_asn1.c", ], "crypto/asn1/bio_ndef.o" => [ "crypto/asn1/bio_ndef.c", ], "crypto/asn1/d2i_pr.o" => [ "crypto/asn1/d2i_pr.c", ], "crypto/asn1/d2i_pu.o" => [ "crypto/asn1/d2i_pu.c", ], "crypto/asn1/evp_asn1.o" => [ "crypto/asn1/evp_asn1.c", ], "crypto/asn1/f_int.o" => [ "crypto/asn1/f_int.c", ], "crypto/asn1/f_string.o" => [ "crypto/asn1/f_string.c", ], "crypto/asn1/i2d_pr.o" => [ "crypto/asn1/i2d_pr.c", ], "crypto/asn1/i2d_pu.o" => [ "crypto/asn1/i2d_pu.c", ], "crypto/asn1/n_pkey.o" => [ "crypto/asn1/n_pkey.c", ], "crypto/asn1/nsseq.o" => [ "crypto/asn1/nsseq.c", ], "crypto/asn1/p5_pbe.o" => [ "crypto/asn1/p5_pbe.c", ], "crypto/asn1/p5_pbev2.o" => [ "crypto/asn1/p5_pbev2.c", ], "crypto/asn1/p5_scrypt.o" => [ "crypto/asn1/p5_scrypt.c", ], "crypto/asn1/p8_pkey.o" => [ "crypto/asn1/p8_pkey.c", ], "crypto/asn1/t_bitst.o" => [ "crypto/asn1/t_bitst.c", ], "crypto/asn1/t_pkey.o" => [ "crypto/asn1/t_pkey.c", ], "crypto/asn1/t_spki.o" => [ "crypto/asn1/t_spki.c", ], "crypto/asn1/tasn_dec.o" => [ "crypto/asn1/tasn_dec.c", ], "crypto/asn1/tasn_enc.o" => [ "crypto/asn1/tasn_enc.c", ], "crypto/asn1/tasn_fre.o" => [ "crypto/asn1/tasn_fre.c", ], "crypto/asn1/tasn_new.o" => [ "crypto/asn1/tasn_new.c", ], "crypto/asn1/tasn_prn.o" => [ "crypto/asn1/tasn_prn.c", ], "crypto/asn1/tasn_scn.o" => [ "crypto/asn1/tasn_scn.c", ], "crypto/asn1/tasn_typ.o" => [ "crypto/asn1/tasn_typ.c", ], "crypto/asn1/tasn_utl.o" => [ "crypto/asn1/tasn_utl.c", ], "crypto/asn1/x_algor.o" => [ "crypto/asn1/x_algor.c", ], "crypto/asn1/x_bignum.o" => [ "crypto/asn1/x_bignum.c", ], "crypto/asn1/x_info.o" => [ "crypto/asn1/x_info.c", ], "crypto/asn1/x_int64.o" => [ "crypto/asn1/x_int64.c", ], "crypto/asn1/x_long.o" => [ "crypto/asn1/x_long.c", ], "crypto/asn1/x_pkey.o" => [ "crypto/asn1/x_pkey.c", ], "crypto/asn1/x_sig.o" => [ "crypto/asn1/x_sig.c", ], "crypto/asn1/x_spki.o" => [ "crypto/asn1/x_spki.c", ], "crypto/asn1/x_val.o" => [ "crypto/asn1/x_val.c", ], "crypto/async/arch/async_null.o" => [ "crypto/async/arch/async_null.c", ], "crypto/async/arch/async_posix.o" => [ "crypto/async/arch/async_posix.c", ], "crypto/async/arch/async_win.o" => [ "crypto/async/arch/async_win.c", ], "crypto/async/async.o" => [ "crypto/async/async.c", ], "crypto/async/async_err.o" => [ "crypto/async/async_err.c", ], "crypto/async/async_wait.o" => [ "crypto/async/async_wait.c", ], "crypto/bf/bf-586.o" => [ "crypto/bf/bf-586.s", ], "crypto/bf/bf_cfb64.o" => [ "crypto/bf/bf_cfb64.c", ], "crypto/bf/bf_ecb.o" => [ "crypto/bf/bf_ecb.c", ], "crypto/bf/bf_ofb64.o" => [ "crypto/bf/bf_ofb64.c", ], "crypto/bf/bf_skey.o" => [ "crypto/bf/bf_skey.c", ], "crypto/bio/b_addr.o" => [ "crypto/bio/b_addr.c", ], "crypto/bio/b_dump.o" => [ "crypto/bio/b_dump.c", ], "crypto/bio/b_print.o" => [ "crypto/bio/b_print.c", ], "crypto/bio/b_sock.o" => [ "crypto/bio/b_sock.c", ], "crypto/bio/b_sock2.o" => [ "crypto/bio/b_sock2.c", ], "crypto/bio/bf_buff.o" => [ "crypto/bio/bf_buff.c", ], "crypto/bio/bf_lbuf.o" => [ "crypto/bio/bf_lbuf.c", ], "crypto/bio/bf_nbio.o" => [ "crypto/bio/bf_nbio.c", ], "crypto/bio/bf_null.o" => [ "crypto/bio/bf_null.c", ], "crypto/bio/bio_cb.o" => [ "crypto/bio/bio_cb.c", ], "crypto/bio/bio_err.o" => [ "crypto/bio/bio_err.c", ], "crypto/bio/bio_lib.o" => [ "crypto/bio/bio_lib.c", ], "crypto/bio/bio_meth.o" => [ "crypto/bio/bio_meth.c", ], "crypto/bio/bss_acpt.o" => [ "crypto/bio/bss_acpt.c", ], "crypto/bio/bss_bio.o" => [ "crypto/bio/bss_bio.c", ], "crypto/bio/bss_conn.o" => [ "crypto/bio/bss_conn.c", ], "crypto/bio/bss_dgram.o" => [ "crypto/bio/bss_dgram.c", ], "crypto/bio/bss_fd.o" => [ "crypto/bio/bss_fd.c", ], "crypto/bio/bss_file.o" => [ "crypto/bio/bss_file.c", ], "crypto/bio/bss_log.o" => [ "crypto/bio/bss_log.c", ], "crypto/bio/bss_mem.o" => [ "crypto/bio/bss_mem.c", ], "crypto/bio/bss_null.o" => [ "crypto/bio/bss_null.c", ], "crypto/bio/bss_sock.o" => [ "crypto/bio/bss_sock.c", ], "crypto/blake2/blake2b.o" => [ "crypto/blake2/blake2b.c", ], "crypto/blake2/blake2s.o" => [ "crypto/blake2/blake2s.c", ], "crypto/blake2/m_blake2b.o" => [ "crypto/blake2/m_blake2b.c", ], "crypto/blake2/m_blake2s.o" => [ "crypto/blake2/m_blake2s.c", ], "crypto/bn/bn-586.o" => [ "crypto/bn/bn-586.s", ], "crypto/bn/bn_add.o" => [ "crypto/bn/bn_add.c", ], "crypto/bn/bn_blind.o" => [ "crypto/bn/bn_blind.c", ], "crypto/bn/bn_const.o" => [ "crypto/bn/bn_const.c", ], "crypto/bn/bn_ctx.o" => [ "crypto/bn/bn_ctx.c", ], "crypto/bn/bn_depr.o" => [ "crypto/bn/bn_depr.c", ], "crypto/bn/bn_dh.o" => [ "crypto/bn/bn_dh.c", ], "crypto/bn/bn_div.o" => [ "crypto/bn/bn_div.c", ], "crypto/bn/bn_err.o" => [ "crypto/bn/bn_err.c", ], "crypto/bn/bn_exp.o" => [ "crypto/bn/bn_exp.c", ], "crypto/bn/bn_exp2.o" => [ "crypto/bn/bn_exp2.c", ], "crypto/bn/bn_gcd.o" => [ "crypto/bn/bn_gcd.c", ], "crypto/bn/bn_gf2m.o" => [ "crypto/bn/bn_gf2m.c", ], "crypto/bn/bn_intern.o" => [ "crypto/bn/bn_intern.c", ], "crypto/bn/bn_kron.o" => [ "crypto/bn/bn_kron.c", ], "crypto/bn/bn_lib.o" => [ "crypto/bn/bn_lib.c", ], "crypto/bn/bn_mod.o" => [ "crypto/bn/bn_mod.c", ], "crypto/bn/bn_mont.o" => [ "crypto/bn/bn_mont.c", ], "crypto/bn/bn_mpi.o" => [ "crypto/bn/bn_mpi.c", ], "crypto/bn/bn_mul.o" => [ "crypto/bn/bn_mul.c", ], "crypto/bn/bn_nist.o" => [ "crypto/bn/bn_nist.c", ], "crypto/bn/bn_prime.o" => [ "crypto/bn/bn_prime.c", ], "crypto/bn/bn_print.o" => [ "crypto/bn/bn_print.c", ], "crypto/bn/bn_rand.o" => [ "crypto/bn/bn_rand.c", ], "crypto/bn/bn_recp.o" => [ "crypto/bn/bn_recp.c", ], "crypto/bn/bn_shift.o" => [ "crypto/bn/bn_shift.c", ], "crypto/bn/bn_sqr.o" => [ "crypto/bn/bn_sqr.c", ], "crypto/bn/bn_sqrt.o" => [ "crypto/bn/bn_sqrt.c", ], "crypto/bn/bn_srp.o" => [ "crypto/bn/bn_srp.c", ], "crypto/bn/bn_word.o" => [ "crypto/bn/bn_word.c", ], "crypto/bn/bn_x931p.o" => [ "crypto/bn/bn_x931p.c", ], "crypto/bn/co-586.o" => [ "crypto/bn/co-586.s", ], "crypto/bn/x86-gf2m.o" => [ "crypto/bn/x86-gf2m.s", ], "crypto/bn/x86-mont.o" => [ "crypto/bn/x86-mont.s", ], "crypto/buffer/buf_err.o" => [ "crypto/buffer/buf_err.c", ], "crypto/buffer/buffer.o" => [ "crypto/buffer/buffer.c", ], "crypto/camellia/cmll-x86.o" => [ "crypto/camellia/cmll-x86.s", ], "crypto/camellia/cmll_cfb.o" => [ "crypto/camellia/cmll_cfb.c", ], "crypto/camellia/cmll_ctr.o" => [ "crypto/camellia/cmll_ctr.c", ], "crypto/camellia/cmll_ecb.o" => [ "crypto/camellia/cmll_ecb.c", ], "crypto/camellia/cmll_ofb.o" => [ "crypto/camellia/cmll_ofb.c", ], "crypto/cast/c_cfb64.o" => [ "crypto/cast/c_cfb64.c", ], "crypto/cast/c_ecb.o" => [ "crypto/cast/c_ecb.c", ], "crypto/cast/c_enc.o" => [ "crypto/cast/c_enc.c", ], "crypto/cast/c_ofb64.o" => [ "crypto/cast/c_ofb64.c", ], "crypto/cast/c_skey.o" => [ "crypto/cast/c_skey.c", ], "crypto/chacha/chacha-x86.o" => [ "crypto/chacha/chacha-x86.s", ], "crypto/cmac/cm_ameth.o" => [ "crypto/cmac/cm_ameth.c", ], "crypto/cmac/cm_pmeth.o" => [ "crypto/cmac/cm_pmeth.c", ], "crypto/cmac/cmac.o" => [ "crypto/cmac/cmac.c", ], "crypto/cms/cms_asn1.o" => [ "crypto/cms/cms_asn1.c", ], "crypto/cms/cms_att.o" => [ "crypto/cms/cms_att.c", ], "crypto/cms/cms_cd.o" => [ "crypto/cms/cms_cd.c", ], "crypto/cms/cms_dd.o" => [ "crypto/cms/cms_dd.c", ], "crypto/cms/cms_enc.o" => [ "crypto/cms/cms_enc.c", ], "crypto/cms/cms_env.o" => [ "crypto/cms/cms_env.c", ], "crypto/cms/cms_err.o" => [ "crypto/cms/cms_err.c", ], "crypto/cms/cms_ess.o" => [ "crypto/cms/cms_ess.c", ], "crypto/cms/cms_io.o" => [ "crypto/cms/cms_io.c", ], "crypto/cms/cms_kari.o" => [ "crypto/cms/cms_kari.c", ], "crypto/cms/cms_lib.o" => [ "crypto/cms/cms_lib.c", ], "crypto/cms/cms_pwri.o" => [ "crypto/cms/cms_pwri.c", ], "crypto/cms/cms_sd.o" => [ "crypto/cms/cms_sd.c", ], "crypto/cms/cms_smime.o" => [ "crypto/cms/cms_smime.c", ], "crypto/conf/conf_api.o" => [ "crypto/conf/conf_api.c", ], "crypto/conf/conf_def.o" => [ "crypto/conf/conf_def.c", ], "crypto/conf/conf_err.o" => [ "crypto/conf/conf_err.c", ], "crypto/conf/conf_lib.o" => [ "crypto/conf/conf_lib.c", ], "crypto/conf/conf_mall.o" => [ "crypto/conf/conf_mall.c", ], "crypto/conf/conf_mod.o" => [ "crypto/conf/conf_mod.c", ], "crypto/conf/conf_sap.o" => [ "crypto/conf/conf_sap.c", ], "crypto/conf/conf_ssl.o" => [ "crypto/conf/conf_ssl.c", ], "crypto/cpt_err.o" => [ "crypto/cpt_err.c", ], "crypto/cryptlib.o" => [ "crypto/cryptlib.c", ], "crypto/ct/ct_b64.o" => [ "crypto/ct/ct_b64.c", ], "crypto/ct/ct_err.o" => [ "crypto/ct/ct_err.c", ], "crypto/ct/ct_log.o" => [ "crypto/ct/ct_log.c", ], "crypto/ct/ct_oct.o" => [ "crypto/ct/ct_oct.c", ], "crypto/ct/ct_policy.o" => [ "crypto/ct/ct_policy.c", ], "crypto/ct/ct_prn.o" => [ "crypto/ct/ct_prn.c", ], "crypto/ct/ct_sct.o" => [ "crypto/ct/ct_sct.c", ], "crypto/ct/ct_sct_ctx.o" => [ "crypto/ct/ct_sct_ctx.c", ], "crypto/ct/ct_vfy.o" => [ "crypto/ct/ct_vfy.c", ], "crypto/ct/ct_x509v3.o" => [ "crypto/ct/ct_x509v3.c", ], "crypto/ctype.o" => [ "crypto/ctype.c", ], "crypto/cversion.o" => [ "crypto/cversion.c", ], "crypto/des/cbc_cksm.o" => [ "crypto/des/cbc_cksm.c", ], "crypto/des/cbc_enc.o" => [ "crypto/des/cbc_enc.c", ], "crypto/des/cfb64ede.o" => [ "crypto/des/cfb64ede.c", ], "crypto/des/cfb64enc.o" => [ "crypto/des/cfb64enc.c", ], "crypto/des/cfb_enc.o" => [ "crypto/des/cfb_enc.c", ], "crypto/des/crypt586.o" => [ "crypto/des/crypt586.s", ], "crypto/des/des-586.o" => [ "crypto/des/des-586.s", ], "crypto/des/ecb3_enc.o" => [ "crypto/des/ecb3_enc.c", ], "crypto/des/ecb_enc.o" => [ "crypto/des/ecb_enc.c", ], "crypto/des/fcrypt.o" => [ "crypto/des/fcrypt.c", ], "crypto/des/ofb64ede.o" => [ "crypto/des/ofb64ede.c", ], "crypto/des/ofb64enc.o" => [ "crypto/des/ofb64enc.c", ], "crypto/des/ofb_enc.o" => [ "crypto/des/ofb_enc.c", ], "crypto/des/pcbc_enc.o" => [ "crypto/des/pcbc_enc.c", ], "crypto/des/qud_cksm.o" => [ "crypto/des/qud_cksm.c", ], "crypto/des/rand_key.o" => [ "crypto/des/rand_key.c", ], "crypto/des/set_key.o" => [ "crypto/des/set_key.c", ], "crypto/des/str2key.o" => [ "crypto/des/str2key.c", ], "crypto/des/xcbc_enc.o" => [ "crypto/des/xcbc_enc.c", ], "crypto/dh/dh_ameth.o" => [ "crypto/dh/dh_ameth.c", ], "crypto/dh/dh_asn1.o" => [ "crypto/dh/dh_asn1.c", ], "crypto/dh/dh_check.o" => [ "crypto/dh/dh_check.c", ], "crypto/dh/dh_depr.o" => [ "crypto/dh/dh_depr.c", ], "crypto/dh/dh_err.o" => [ "crypto/dh/dh_err.c", ], "crypto/dh/dh_gen.o" => [ "crypto/dh/dh_gen.c", ], "crypto/dh/dh_kdf.o" => [ "crypto/dh/dh_kdf.c", ], "crypto/dh/dh_key.o" => [ "crypto/dh/dh_key.c", ], "crypto/dh/dh_lib.o" => [ "crypto/dh/dh_lib.c", ], "crypto/dh/dh_meth.o" => [ "crypto/dh/dh_meth.c", ], "crypto/dh/dh_pmeth.o" => [ "crypto/dh/dh_pmeth.c", ], "crypto/dh/dh_prn.o" => [ "crypto/dh/dh_prn.c", ], "crypto/dh/dh_rfc5114.o" => [ "crypto/dh/dh_rfc5114.c", ], "crypto/dh/dh_rfc7919.o" => [ "crypto/dh/dh_rfc7919.c", ], "crypto/dsa/dsa_ameth.o" => [ "crypto/dsa/dsa_ameth.c", ], "crypto/dsa/dsa_asn1.o" => [ "crypto/dsa/dsa_asn1.c", ], "crypto/dsa/dsa_depr.o" => [ "crypto/dsa/dsa_depr.c", ], "crypto/dsa/dsa_err.o" => [ "crypto/dsa/dsa_err.c", ], "crypto/dsa/dsa_gen.o" => [ "crypto/dsa/dsa_gen.c", ], "crypto/dsa/dsa_key.o" => [ "crypto/dsa/dsa_key.c", ], "crypto/dsa/dsa_lib.o" => [ "crypto/dsa/dsa_lib.c", ], "crypto/dsa/dsa_meth.o" => [ "crypto/dsa/dsa_meth.c", ], "crypto/dsa/dsa_ossl.o" => [ "crypto/dsa/dsa_ossl.c", ], "crypto/dsa/dsa_pmeth.o" => [ "crypto/dsa/dsa_pmeth.c", ], "crypto/dsa/dsa_prn.o" => [ "crypto/dsa/dsa_prn.c", ], "crypto/dsa/dsa_sign.o" => [ "crypto/dsa/dsa_sign.c", ], "crypto/dsa/dsa_vrf.o" => [ "crypto/dsa/dsa_vrf.c", ], "crypto/dso/dso_dl.o" => [ "crypto/dso/dso_dl.c", ], "crypto/dso/dso_dlfcn.o" => [ "crypto/dso/dso_dlfcn.c", ], "crypto/dso/dso_err.o" => [ "crypto/dso/dso_err.c", ], "crypto/dso/dso_lib.o" => [ "crypto/dso/dso_lib.c", ], "crypto/dso/dso_openssl.o" => [ "crypto/dso/dso_openssl.c", ], "crypto/dso/dso_vms.o" => [ "crypto/dso/dso_vms.c", ], "crypto/dso/dso_win32.o" => [ "crypto/dso/dso_win32.c", ], "crypto/ebcdic.o" => [ "crypto/ebcdic.c", ], "crypto/ec/curve25519.o" => [ "crypto/ec/curve25519.c", ], "crypto/ec/curve448/arch_32/f_impl.o" => [ "crypto/ec/curve448/arch_32/f_impl.c", ], "crypto/ec/curve448/curve448.o" => [ "crypto/ec/curve448/curve448.c", ], "crypto/ec/curve448/curve448_tables.o" => [ "crypto/ec/curve448/curve448_tables.c", ], "crypto/ec/curve448/eddsa.o" => [ "crypto/ec/curve448/eddsa.c", ], "crypto/ec/curve448/f_generic.o" => [ "crypto/ec/curve448/f_generic.c", ], "crypto/ec/curve448/scalar.o" => [ "crypto/ec/curve448/scalar.c", ], "crypto/ec/ec2_oct.o" => [ "crypto/ec/ec2_oct.c", ], "crypto/ec/ec2_smpl.o" => [ "crypto/ec/ec2_smpl.c", ], "crypto/ec/ec_ameth.o" => [ "crypto/ec/ec_ameth.c", ], "crypto/ec/ec_asn1.o" => [ "crypto/ec/ec_asn1.c", ], "crypto/ec/ec_check.o" => [ "crypto/ec/ec_check.c", ], "crypto/ec/ec_curve.o" => [ "crypto/ec/ec_curve.c", ], "crypto/ec/ec_cvt.o" => [ "crypto/ec/ec_cvt.c", ], "crypto/ec/ec_err.o" => [ "crypto/ec/ec_err.c", ], "crypto/ec/ec_key.o" => [ "crypto/ec/ec_key.c", ], "crypto/ec/ec_kmeth.o" => [ "crypto/ec/ec_kmeth.c", ], "crypto/ec/ec_lib.o" => [ "crypto/ec/ec_lib.c", ], "crypto/ec/ec_mult.o" => [ "crypto/ec/ec_mult.c", ], "crypto/ec/ec_oct.o" => [ "crypto/ec/ec_oct.c", ], "crypto/ec/ec_pmeth.o" => [ "crypto/ec/ec_pmeth.c", ], "crypto/ec/ec_print.o" => [ "crypto/ec/ec_print.c", ], "crypto/ec/ecdh_kdf.o" => [ "crypto/ec/ecdh_kdf.c", ], "crypto/ec/ecdh_ossl.o" => [ "crypto/ec/ecdh_ossl.c", ], "crypto/ec/ecdsa_ossl.o" => [ "crypto/ec/ecdsa_ossl.c", ], "crypto/ec/ecdsa_sign.o" => [ "crypto/ec/ecdsa_sign.c", ], "crypto/ec/ecdsa_vrf.o" => [ "crypto/ec/ecdsa_vrf.c", ], "crypto/ec/eck_prn.o" => [ "crypto/ec/eck_prn.c", ], "crypto/ec/ecp_mont.o" => [ "crypto/ec/ecp_mont.c", ], "crypto/ec/ecp_nist.o" => [ "crypto/ec/ecp_nist.c", ], "crypto/ec/ecp_nistp224.o" => [ "crypto/ec/ecp_nistp224.c", ], "crypto/ec/ecp_nistp256.o" => [ "crypto/ec/ecp_nistp256.c", ], "crypto/ec/ecp_nistp521.o" => [ "crypto/ec/ecp_nistp521.c", ], "crypto/ec/ecp_nistputil.o" => [ "crypto/ec/ecp_nistputil.c", ], "crypto/ec/ecp_nistz256-x86.o" => [ "crypto/ec/ecp_nistz256-x86.s", ], "crypto/ec/ecp_nistz256.o" => [ "crypto/ec/ecp_nistz256.c", ], "crypto/ec/ecp_oct.o" => [ "crypto/ec/ecp_oct.c", ], "crypto/ec/ecp_smpl.o" => [ "crypto/ec/ecp_smpl.c", ], "crypto/ec/ecx_meth.o" => [ "crypto/ec/ecx_meth.c", ], "crypto/engine/eng_all.o" => [ "crypto/engine/eng_all.c", ], "crypto/engine/eng_cnf.o" => [ "crypto/engine/eng_cnf.c", ], "crypto/engine/eng_ctrl.o" => [ "crypto/engine/eng_ctrl.c", ], "crypto/engine/eng_dyn.o" => [ "crypto/engine/eng_dyn.c", ], "crypto/engine/eng_err.o" => [ "crypto/engine/eng_err.c", ], "crypto/engine/eng_fat.o" => [ "crypto/engine/eng_fat.c", ], "crypto/engine/eng_init.o" => [ "crypto/engine/eng_init.c", ], "crypto/engine/eng_lib.o" => [ "crypto/engine/eng_lib.c", ], "crypto/engine/eng_list.o" => [ "crypto/engine/eng_list.c", ], "crypto/engine/eng_openssl.o" => [ "crypto/engine/eng_openssl.c", ], "crypto/engine/eng_pkey.o" => [ "crypto/engine/eng_pkey.c", ], "crypto/engine/eng_rdrand.o" => [ "crypto/engine/eng_rdrand.c", ], "crypto/engine/eng_table.o" => [ "crypto/engine/eng_table.c", ], "crypto/engine/tb_asnmth.o" => [ "crypto/engine/tb_asnmth.c", ], "crypto/engine/tb_cipher.o" => [ "crypto/engine/tb_cipher.c", ], "crypto/engine/tb_dh.o" => [ "crypto/engine/tb_dh.c", ], "crypto/engine/tb_digest.o" => [ "crypto/engine/tb_digest.c", ], "crypto/engine/tb_dsa.o" => [ "crypto/engine/tb_dsa.c", ], "crypto/engine/tb_eckey.o" => [ "crypto/engine/tb_eckey.c", ], "crypto/engine/tb_pkmeth.o" => [ "crypto/engine/tb_pkmeth.c", ], "crypto/engine/tb_rand.o" => [ "crypto/engine/tb_rand.c", ], "crypto/engine/tb_rsa.o" => [ "crypto/engine/tb_rsa.c", ], "crypto/err/err.o" => [ "crypto/err/err.c", ], "crypto/err/err_all.o" => [ "crypto/err/err_all.c", ], "crypto/err/err_prn.o" => [ "crypto/err/err_prn.c", ], "crypto/evp/bio_b64.o" => [ "crypto/evp/bio_b64.c", ], "crypto/evp/bio_enc.o" => [ "crypto/evp/bio_enc.c", ], "crypto/evp/bio_md.o" => [ "crypto/evp/bio_md.c", ], "crypto/evp/bio_ok.o" => [ "crypto/evp/bio_ok.c", ], "crypto/evp/c_allc.o" => [ "crypto/evp/c_allc.c", ], "crypto/evp/c_alld.o" => [ "crypto/evp/c_alld.c", ], "crypto/evp/cmeth_lib.o" => [ "crypto/evp/cmeth_lib.c", ], "crypto/evp/digest.o" => [ "crypto/evp/digest.c", ], "crypto/evp/e_aes.o" => [ "crypto/evp/e_aes.c", ], "crypto/evp/e_aes_cbc_hmac_sha1.o" => [ "crypto/evp/e_aes_cbc_hmac_sha1.c", ], "crypto/evp/e_aes_cbc_hmac_sha256.o" => [ "crypto/evp/e_aes_cbc_hmac_sha256.c", ], "crypto/evp/e_aria.o" => [ "crypto/evp/e_aria.c", ], "crypto/evp/e_bf.o" => [ "crypto/evp/e_bf.c", ], "crypto/evp/e_camellia.o" => [ "crypto/evp/e_camellia.c", ], "crypto/evp/e_cast.o" => [ "crypto/evp/e_cast.c", ], "crypto/evp/e_chacha20_poly1305.o" => [ "crypto/evp/e_chacha20_poly1305.c", ], "crypto/evp/e_des.o" => [ "crypto/evp/e_des.c", ], "crypto/evp/e_des3.o" => [ "crypto/evp/e_des3.c", ], "crypto/evp/e_idea.o" => [ "crypto/evp/e_idea.c", ], "crypto/evp/e_null.o" => [ "crypto/evp/e_null.c", ], "crypto/evp/e_old.o" => [ "crypto/evp/e_old.c", ], "crypto/evp/e_rc2.o" => [ "crypto/evp/e_rc2.c", ], "crypto/evp/e_rc4.o" => [ "crypto/evp/e_rc4.c", ], "crypto/evp/e_rc4_hmac_md5.o" => [ "crypto/evp/e_rc4_hmac_md5.c", ], "crypto/evp/e_rc5.o" => [ "crypto/evp/e_rc5.c", ], "crypto/evp/e_seed.o" => [ "crypto/evp/e_seed.c", ], "crypto/evp/e_sm4.o" => [ "crypto/evp/e_sm4.c", ], "crypto/evp/e_xcbc_d.o" => [ "crypto/evp/e_xcbc_d.c", ], "crypto/evp/encode.o" => [ "crypto/evp/encode.c", ], "crypto/evp/evp_cnf.o" => [ "crypto/evp/evp_cnf.c", ], "crypto/evp/evp_enc.o" => [ "crypto/evp/evp_enc.c", ], "crypto/evp/evp_err.o" => [ "crypto/evp/evp_err.c", ], "crypto/evp/evp_key.o" => [ "crypto/evp/evp_key.c", ], "crypto/evp/evp_lib.o" => [ "crypto/evp/evp_lib.c", ], "crypto/evp/evp_pbe.o" => [ "crypto/evp/evp_pbe.c", ], "crypto/evp/evp_pkey.o" => [ "crypto/evp/evp_pkey.c", ], "crypto/evp/m_md2.o" => [ "crypto/evp/m_md2.c", ], "crypto/evp/m_md4.o" => [ "crypto/evp/m_md4.c", ], "crypto/evp/m_md5.o" => [ "crypto/evp/m_md5.c", ], "crypto/evp/m_md5_sha1.o" => [ "crypto/evp/m_md5_sha1.c", ], "crypto/evp/m_mdc2.o" => [ "crypto/evp/m_mdc2.c", ], "crypto/evp/m_null.o" => [ "crypto/evp/m_null.c", ], "crypto/evp/m_ripemd.o" => [ "crypto/evp/m_ripemd.c", ], "crypto/evp/m_sha1.o" => [ "crypto/evp/m_sha1.c", ], "crypto/evp/m_sha3.o" => [ "crypto/evp/m_sha3.c", ], "crypto/evp/m_sigver.o" => [ "crypto/evp/m_sigver.c", ], "crypto/evp/m_wp.o" => [ "crypto/evp/m_wp.c", ], "crypto/evp/names.o" => [ "crypto/evp/names.c", ], "crypto/evp/p5_crpt.o" => [ "crypto/evp/p5_crpt.c", ], "crypto/evp/p5_crpt2.o" => [ "crypto/evp/p5_crpt2.c", ], "crypto/evp/p_dec.o" => [ "crypto/evp/p_dec.c", ], "crypto/evp/p_enc.o" => [ "crypto/evp/p_enc.c", ], "crypto/evp/p_lib.o" => [ "crypto/evp/p_lib.c", ], "crypto/evp/p_open.o" => [ "crypto/evp/p_open.c", ], "crypto/evp/p_seal.o" => [ "crypto/evp/p_seal.c", ], "crypto/evp/p_sign.o" => [ "crypto/evp/p_sign.c", ], "crypto/evp/p_verify.o" => [ "crypto/evp/p_verify.c", ], "crypto/evp/pbe_scrypt.o" => [ "crypto/evp/pbe_scrypt.c", ], "crypto/evp/pmeth_fn.o" => [ "crypto/evp/pmeth_fn.c", ], "crypto/evp/pmeth_gn.o" => [ "crypto/evp/pmeth_gn.c", ], "crypto/evp/pmeth_lib.o" => [ "crypto/evp/pmeth_lib.c", ], "crypto/ex_data.o" => [ "crypto/ex_data.c", ], "crypto/getenv.o" => [ "crypto/getenv.c", ], "crypto/hmac/hm_ameth.o" => [ "crypto/hmac/hm_ameth.c", ], "crypto/hmac/hm_pmeth.o" => [ "crypto/hmac/hm_pmeth.c", ], "crypto/hmac/hmac.o" => [ "crypto/hmac/hmac.c", ], "crypto/idea/i_cbc.o" => [ "crypto/idea/i_cbc.c", ], "crypto/idea/i_cfb64.o" => [ "crypto/idea/i_cfb64.c", ], "crypto/idea/i_ecb.o" => [ "crypto/idea/i_ecb.c", ], "crypto/idea/i_ofb64.o" => [ "crypto/idea/i_ofb64.c", ], "crypto/idea/i_skey.o" => [ "crypto/idea/i_skey.c", ], "crypto/init.o" => [ "crypto/init.c", ], "crypto/kdf/hkdf.o" => [ "crypto/kdf/hkdf.c", ], "crypto/kdf/kdf_err.o" => [ "crypto/kdf/kdf_err.c", ], "crypto/kdf/scrypt.o" => [ "crypto/kdf/scrypt.c", ], "crypto/kdf/tls1_prf.o" => [ "crypto/kdf/tls1_prf.c", ], "crypto/lhash/lh_stats.o" => [ "crypto/lhash/lh_stats.c", ], "crypto/lhash/lhash.o" => [ "crypto/lhash/lhash.c", ], "crypto/md4/md4_dgst.o" => [ "crypto/md4/md4_dgst.c", ], "crypto/md4/md4_one.o" => [ "crypto/md4/md4_one.c", ], "crypto/md5/md5-586.o" => [ "crypto/md5/md5-586.s", ], "crypto/md5/md5_dgst.o" => [ "crypto/md5/md5_dgst.c", ], "crypto/md5/md5_one.o" => [ "crypto/md5/md5_one.c", ], "crypto/mdc2/mdc2_one.o" => [ "crypto/mdc2/mdc2_one.c", ], "crypto/mdc2/mdc2dgst.o" => [ "crypto/mdc2/mdc2dgst.c", ], "crypto/mem.o" => [ "crypto/mem.c", ], "crypto/mem_dbg.o" => [ "crypto/mem_dbg.c", ], "crypto/mem_sec.o" => [ "crypto/mem_sec.c", ], "crypto/modes/cbc128.o" => [ "crypto/modes/cbc128.c", ], "crypto/modes/ccm128.o" => [ "crypto/modes/ccm128.c", ], "crypto/modes/cfb128.o" => [ "crypto/modes/cfb128.c", ], "crypto/modes/ctr128.o" => [ "crypto/modes/ctr128.c", ], "crypto/modes/cts128.o" => [ "crypto/modes/cts128.c", ], "crypto/modes/gcm128.o" => [ "crypto/modes/gcm128.c", ], "crypto/modes/ghash-x86.o" => [ "crypto/modes/ghash-x86.s", ], "crypto/modes/ocb128.o" => [ "crypto/modes/ocb128.c", ], "crypto/modes/ofb128.o" => [ "crypto/modes/ofb128.c", ], "crypto/modes/wrap128.o" => [ "crypto/modes/wrap128.c", ], "crypto/modes/xts128.o" => [ "crypto/modes/xts128.c", ], "crypto/o_dir.o" => [ "crypto/o_dir.c", ], "crypto/o_fips.o" => [ "crypto/o_fips.c", ], "crypto/o_fopen.o" => [ "crypto/o_fopen.c", ], "crypto/o_init.o" => [ "crypto/o_init.c", ], "crypto/o_str.o" => [ "crypto/o_str.c", ], "crypto/o_time.o" => [ "crypto/o_time.c", ], "crypto/objects/o_names.o" => [ "crypto/objects/o_names.c", ], "crypto/objects/obj_dat.o" => [ "crypto/objects/obj_dat.c", ], "crypto/objects/obj_err.o" => [ "crypto/objects/obj_err.c", ], "crypto/objects/obj_lib.o" => [ "crypto/objects/obj_lib.c", ], "crypto/objects/obj_xref.o" => [ "crypto/objects/obj_xref.c", ], "crypto/ocsp/ocsp_asn.o" => [ "crypto/ocsp/ocsp_asn.c", ], "crypto/ocsp/ocsp_cl.o" => [ "crypto/ocsp/ocsp_cl.c", ], "crypto/ocsp/ocsp_err.o" => [ "crypto/ocsp/ocsp_err.c", ], "crypto/ocsp/ocsp_ext.o" => [ "crypto/ocsp/ocsp_ext.c", ], "crypto/ocsp/ocsp_ht.o" => [ "crypto/ocsp/ocsp_ht.c", ], "crypto/ocsp/ocsp_lib.o" => [ "crypto/ocsp/ocsp_lib.c", ], "crypto/ocsp/ocsp_prn.o" => [ "crypto/ocsp/ocsp_prn.c", ], "crypto/ocsp/ocsp_srv.o" => [ "crypto/ocsp/ocsp_srv.c", ], "crypto/ocsp/ocsp_vfy.o" => [ "crypto/ocsp/ocsp_vfy.c", ], "crypto/ocsp/v3_ocsp.o" => [ "crypto/ocsp/v3_ocsp.c", ], "crypto/pem/pem_all.o" => [ "crypto/pem/pem_all.c", ], "crypto/pem/pem_err.o" => [ "crypto/pem/pem_err.c", ], "crypto/pem/pem_info.o" => [ "crypto/pem/pem_info.c", ], "crypto/pem/pem_lib.o" => [ "crypto/pem/pem_lib.c", ], "crypto/pem/pem_oth.o" => [ "crypto/pem/pem_oth.c", ], "crypto/pem/pem_pk8.o" => [ "crypto/pem/pem_pk8.c", ], "crypto/pem/pem_pkey.o" => [ "crypto/pem/pem_pkey.c", ], "crypto/pem/pem_sign.o" => [ "crypto/pem/pem_sign.c", ], "crypto/pem/pem_x509.o" => [ "crypto/pem/pem_x509.c", ], "crypto/pem/pem_xaux.o" => [ "crypto/pem/pem_xaux.c", ], "crypto/pem/pvkfmt.o" => [ "crypto/pem/pvkfmt.c", ], "crypto/pkcs12/p12_add.o" => [ "crypto/pkcs12/p12_add.c", ], "crypto/pkcs12/p12_asn.o" => [ "crypto/pkcs12/p12_asn.c", ], "crypto/pkcs12/p12_attr.o" => [ "crypto/pkcs12/p12_attr.c", ], "crypto/pkcs12/p12_crpt.o" => [ "crypto/pkcs12/p12_crpt.c", ], "crypto/pkcs12/p12_crt.o" => [ "crypto/pkcs12/p12_crt.c", ], "crypto/pkcs12/p12_decr.o" => [ "crypto/pkcs12/p12_decr.c", ], "crypto/pkcs12/p12_init.o" => [ "crypto/pkcs12/p12_init.c", ], "crypto/pkcs12/p12_key.o" => [ "crypto/pkcs12/p12_key.c", ], "crypto/pkcs12/p12_kiss.o" => [ "crypto/pkcs12/p12_kiss.c", ], "crypto/pkcs12/p12_mutl.o" => [ "crypto/pkcs12/p12_mutl.c", ], "crypto/pkcs12/p12_npas.o" => [ "crypto/pkcs12/p12_npas.c", ], "crypto/pkcs12/p12_p8d.o" => [ "crypto/pkcs12/p12_p8d.c", ], "crypto/pkcs12/p12_p8e.o" => [ "crypto/pkcs12/p12_p8e.c", ], "crypto/pkcs12/p12_sbag.o" => [ "crypto/pkcs12/p12_sbag.c", ], "crypto/pkcs12/p12_utl.o" => [ "crypto/pkcs12/p12_utl.c", ], "crypto/pkcs12/pk12err.o" => [ "crypto/pkcs12/pk12err.c", ], "crypto/pkcs7/bio_pk7.o" => [ "crypto/pkcs7/bio_pk7.c", ], "crypto/pkcs7/pk7_asn1.o" => [ "crypto/pkcs7/pk7_asn1.c", ], "crypto/pkcs7/pk7_attr.o" => [ "crypto/pkcs7/pk7_attr.c", ], "crypto/pkcs7/pk7_doit.o" => [ "crypto/pkcs7/pk7_doit.c", ], "crypto/pkcs7/pk7_lib.o" => [ "crypto/pkcs7/pk7_lib.c", ], "crypto/pkcs7/pk7_mime.o" => [ "crypto/pkcs7/pk7_mime.c", ], "crypto/pkcs7/pk7_smime.o" => [ "crypto/pkcs7/pk7_smime.c", ], "crypto/pkcs7/pkcs7err.o" => [ "crypto/pkcs7/pkcs7err.c", ], "crypto/poly1305/poly1305-x86.o" => [ "crypto/poly1305/poly1305-x86.s", ], "crypto/poly1305/poly1305.o" => [ "crypto/poly1305/poly1305.c", ], "crypto/poly1305/poly1305_ameth.o" => [ "crypto/poly1305/poly1305_ameth.c", ], "crypto/poly1305/poly1305_pmeth.o" => [ "crypto/poly1305/poly1305_pmeth.c", ], "crypto/rand/drbg_ctr.o" => [ "crypto/rand/drbg_ctr.c", ], "crypto/rand/drbg_lib.o" => [ "crypto/rand/drbg_lib.c", ], "crypto/rand/rand_egd.o" => [ "crypto/rand/rand_egd.c", ], "crypto/rand/rand_err.o" => [ "crypto/rand/rand_err.c", ], "crypto/rand/rand_lib.o" => [ "crypto/rand/rand_lib.c", ], "crypto/rand/rand_unix.o" => [ "crypto/rand/rand_unix.c", ], "crypto/rand/rand_vms.o" => [ "crypto/rand/rand_vms.c", ], "crypto/rand/rand_win.o" => [ "crypto/rand/rand_win.c", ], "crypto/rand/randfile.o" => [ "crypto/rand/randfile.c", ], "crypto/rc2/rc2_cbc.o" => [ "crypto/rc2/rc2_cbc.c", ], "crypto/rc2/rc2_ecb.o" => [ "crypto/rc2/rc2_ecb.c", ], "crypto/rc2/rc2_skey.o" => [ "crypto/rc2/rc2_skey.c", ], "crypto/rc2/rc2cfb64.o" => [ "crypto/rc2/rc2cfb64.c", ], "crypto/rc2/rc2ofb64.o" => [ "crypto/rc2/rc2ofb64.c", ], "crypto/rc4/rc4-586.o" => [ "crypto/rc4/rc4-586.s", ], "crypto/ripemd/rmd-586.o" => [ "crypto/ripemd/rmd-586.s", ], "crypto/ripemd/rmd_dgst.o" => [ "crypto/ripemd/rmd_dgst.c", ], "crypto/ripemd/rmd_one.o" => [ "crypto/ripemd/rmd_one.c", ], "crypto/rsa/rsa_ameth.o" => [ "crypto/rsa/rsa_ameth.c", ], "crypto/rsa/rsa_asn1.o" => [ "crypto/rsa/rsa_asn1.c", ], "crypto/rsa/rsa_chk.o" => [ "crypto/rsa/rsa_chk.c", ], "crypto/rsa/rsa_crpt.o" => [ "crypto/rsa/rsa_crpt.c", ], "crypto/rsa/rsa_depr.o" => [ "crypto/rsa/rsa_depr.c", ], "crypto/rsa/rsa_err.o" => [ "crypto/rsa/rsa_err.c", ], "crypto/rsa/rsa_gen.o" => [ "crypto/rsa/rsa_gen.c", ], "crypto/rsa/rsa_lib.o" => [ "crypto/rsa/rsa_lib.c", ], "crypto/rsa/rsa_meth.o" => [ "crypto/rsa/rsa_meth.c", ], "crypto/rsa/rsa_mp.o" => [ "crypto/rsa/rsa_mp.c", ], "crypto/rsa/rsa_none.o" => [ "crypto/rsa/rsa_none.c", ], "crypto/rsa/rsa_oaep.o" => [ "crypto/rsa/rsa_oaep.c", ], "crypto/rsa/rsa_ossl.o" => [ "crypto/rsa/rsa_ossl.c", ], "crypto/rsa/rsa_pk1.o" => [ "crypto/rsa/rsa_pk1.c", ], "crypto/rsa/rsa_pmeth.o" => [ "crypto/rsa/rsa_pmeth.c", ], "crypto/rsa/rsa_prn.o" => [ "crypto/rsa/rsa_prn.c", ], "crypto/rsa/rsa_pss.o" => [ "crypto/rsa/rsa_pss.c", ], "crypto/rsa/rsa_saos.o" => [ "crypto/rsa/rsa_saos.c", ], "crypto/rsa/rsa_sign.o" => [ "crypto/rsa/rsa_sign.c", ], "crypto/rsa/rsa_ssl.o" => [ "crypto/rsa/rsa_ssl.c", ], "crypto/rsa/rsa_x931.o" => [ "crypto/rsa/rsa_x931.c", ], "crypto/rsa/rsa_x931g.o" => [ "crypto/rsa/rsa_x931g.c", ], "crypto/seed/seed.o" => [ "crypto/seed/seed.c", ], "crypto/seed/seed_cbc.o" => [ "crypto/seed/seed_cbc.c", ], "crypto/seed/seed_cfb.o" => [ "crypto/seed/seed_cfb.c", ], "crypto/seed/seed_ecb.o" => [ "crypto/seed/seed_ecb.c", ], "crypto/seed/seed_ofb.o" => [ "crypto/seed/seed_ofb.c", ], "crypto/sha/keccak1600.o" => [ "crypto/sha/keccak1600.c", ], "crypto/sha/sha1-586.o" => [ "crypto/sha/sha1-586.s", ], "crypto/sha/sha1_one.o" => [ "crypto/sha/sha1_one.c", ], "crypto/sha/sha1dgst.o" => [ "crypto/sha/sha1dgst.c", ], "crypto/sha/sha256-586.o" => [ "crypto/sha/sha256-586.s", ], "crypto/sha/sha256.o" => [ "crypto/sha/sha256.c", ], "crypto/sha/sha512-586.o" => [ "crypto/sha/sha512-586.s", ], "crypto/sha/sha512.o" => [ "crypto/sha/sha512.c", ], "crypto/siphash/siphash.o" => [ "crypto/siphash/siphash.c", ], "crypto/siphash/siphash_ameth.o" => [ "crypto/siphash/siphash_ameth.c", ], "crypto/siphash/siphash_pmeth.o" => [ "crypto/siphash/siphash_pmeth.c", ], "crypto/sm2/sm2_crypt.o" => [ "crypto/sm2/sm2_crypt.c", ], "crypto/sm2/sm2_err.o" => [ "crypto/sm2/sm2_err.c", ], "crypto/sm2/sm2_pmeth.o" => [ "crypto/sm2/sm2_pmeth.c", ], "crypto/sm2/sm2_sign.o" => [ "crypto/sm2/sm2_sign.c", ], "crypto/sm3/m_sm3.o" => [ "crypto/sm3/m_sm3.c", ], "crypto/sm3/sm3.o" => [ "crypto/sm3/sm3.c", ], "crypto/sm4/sm4.o" => [ "crypto/sm4/sm4.c", ], "crypto/srp/srp_lib.o" => [ "crypto/srp/srp_lib.c", ], "crypto/srp/srp_vfy.o" => [ "crypto/srp/srp_vfy.c", ], "crypto/stack/stack.o" => [ "crypto/stack/stack.c", ], "crypto/store/loader_file.o" => [ "crypto/store/loader_file.c", ], "crypto/store/store_err.o" => [ "crypto/store/store_err.c", ], "crypto/store/store_init.o" => [ "crypto/store/store_init.c", ], "crypto/store/store_lib.o" => [ "crypto/store/store_lib.c", ], "crypto/store/store_register.o" => [ "crypto/store/store_register.c", ], "crypto/store/store_strings.o" => [ "crypto/store/store_strings.c", ], "crypto/threads_none.o" => [ "crypto/threads_none.c", ], "crypto/threads_pthread.o" => [ "crypto/threads_pthread.c", ], "crypto/threads_win.o" => [ "crypto/threads_win.c", ], "crypto/ts/ts_asn1.o" => [ "crypto/ts/ts_asn1.c", ], "crypto/ts/ts_conf.o" => [ "crypto/ts/ts_conf.c", ], "crypto/ts/ts_err.o" => [ "crypto/ts/ts_err.c", ], "crypto/ts/ts_lib.o" => [ "crypto/ts/ts_lib.c", ], "crypto/ts/ts_req_print.o" => [ "crypto/ts/ts_req_print.c", ], "crypto/ts/ts_req_utils.o" => [ "crypto/ts/ts_req_utils.c", ], "crypto/ts/ts_rsp_print.o" => [ "crypto/ts/ts_rsp_print.c", ], "crypto/ts/ts_rsp_sign.o" => [ "crypto/ts/ts_rsp_sign.c", ], "crypto/ts/ts_rsp_utils.o" => [ "crypto/ts/ts_rsp_utils.c", ], "crypto/ts/ts_rsp_verify.o" => [ "crypto/ts/ts_rsp_verify.c", ], "crypto/ts/ts_verify_ctx.o" => [ "crypto/ts/ts_verify_ctx.c", ], "crypto/txt_db/txt_db.o" => [ "crypto/txt_db/txt_db.c", ], "crypto/ui/ui_err.o" => [ "crypto/ui/ui_err.c", ], "crypto/ui/ui_lib.o" => [ "crypto/ui/ui_lib.c", ], "crypto/ui/ui_null.o" => [ "crypto/ui/ui_null.c", ], "crypto/ui/ui_openssl.o" => [ "crypto/ui/ui_openssl.c", ], "crypto/ui/ui_util.o" => [ "crypto/ui/ui_util.c", ], "crypto/uid.o" => [ "crypto/uid.c", ], "crypto/whrlpool/wp-mmx.o" => [ "crypto/whrlpool/wp-mmx.s", ], "crypto/whrlpool/wp_block.o" => [ "crypto/whrlpool/wp_block.c", ], "crypto/whrlpool/wp_dgst.o" => [ "crypto/whrlpool/wp_dgst.c", ], "crypto/x509/by_dir.o" => [ "crypto/x509/by_dir.c", ], "crypto/x509/by_file.o" => [ "crypto/x509/by_file.c", ], "crypto/x509/t_crl.o" => [ "crypto/x509/t_crl.c", ], "crypto/x509/t_req.o" => [ "crypto/x509/t_req.c", ], "crypto/x509/t_x509.o" => [ "crypto/x509/t_x509.c", ], "crypto/x509/x509_att.o" => [ "crypto/x509/x509_att.c", ], "crypto/x509/x509_cmp.o" => [ "crypto/x509/x509_cmp.c", ], "crypto/x509/x509_d2.o" => [ "crypto/x509/x509_d2.c", ], "crypto/x509/x509_def.o" => [ "crypto/x509/x509_def.c", ], "crypto/x509/x509_err.o" => [ "crypto/x509/x509_err.c", ], "crypto/x509/x509_ext.o" => [ "crypto/x509/x509_ext.c", ], "crypto/x509/x509_lu.o" => [ "crypto/x509/x509_lu.c", ], "crypto/x509/x509_meth.o" => [ "crypto/x509/x509_meth.c", ], "crypto/x509/x509_obj.o" => [ "crypto/x509/x509_obj.c", ], "crypto/x509/x509_r2x.o" => [ "crypto/x509/x509_r2x.c", ], "crypto/x509/x509_req.o" => [ "crypto/x509/x509_req.c", ], "crypto/x509/x509_set.o" => [ "crypto/x509/x509_set.c", ], "crypto/x509/x509_trs.o" => [ "crypto/x509/x509_trs.c", ], "crypto/x509/x509_txt.o" => [ "crypto/x509/x509_txt.c", ], "crypto/x509/x509_v3.o" => [ "crypto/x509/x509_v3.c", ], "crypto/x509/x509_vfy.o" => [ "crypto/x509/x509_vfy.c", ], "crypto/x509/x509_vpm.o" => [ "crypto/x509/x509_vpm.c", ], "crypto/x509/x509cset.o" => [ "crypto/x509/x509cset.c", ], "crypto/x509/x509name.o" => [ "crypto/x509/x509name.c", ], "crypto/x509/x509rset.o" => [ "crypto/x509/x509rset.c", ], "crypto/x509/x509spki.o" => [ "crypto/x509/x509spki.c", ], "crypto/x509/x509type.o" => [ "crypto/x509/x509type.c", ], "crypto/x509/x_all.o" => [ "crypto/x509/x_all.c", ], "crypto/x509/x_attrib.o" => [ "crypto/x509/x_attrib.c", ], "crypto/x509/x_crl.o" => [ "crypto/x509/x_crl.c", ], "crypto/x509/x_exten.o" => [ "crypto/x509/x_exten.c", ], "crypto/x509/x_name.o" => [ "crypto/x509/x_name.c", ], "crypto/x509/x_pubkey.o" => [ "crypto/x509/x_pubkey.c", ], "crypto/x509/x_req.o" => [ "crypto/x509/x_req.c", ], "crypto/x509/x_x509.o" => [ "crypto/x509/x_x509.c", ], "crypto/x509/x_x509a.o" => [ "crypto/x509/x_x509a.c", ], "crypto/x509v3/pcy_cache.o" => [ "crypto/x509v3/pcy_cache.c", ], "crypto/x509v3/pcy_data.o" => [ "crypto/x509v3/pcy_data.c", ], "crypto/x509v3/pcy_lib.o" => [ "crypto/x509v3/pcy_lib.c", ], "crypto/x509v3/pcy_map.o" => [ "crypto/x509v3/pcy_map.c", ], "crypto/x509v3/pcy_node.o" => [ "crypto/x509v3/pcy_node.c", ], "crypto/x509v3/pcy_tree.o" => [ "crypto/x509v3/pcy_tree.c", ], "crypto/x509v3/v3_addr.o" => [ "crypto/x509v3/v3_addr.c", ], "crypto/x509v3/v3_admis.o" => [ "crypto/x509v3/v3_admis.c", ], "crypto/x509v3/v3_akey.o" => [ "crypto/x509v3/v3_akey.c", ], "crypto/x509v3/v3_akeya.o" => [ "crypto/x509v3/v3_akeya.c", ], "crypto/x509v3/v3_alt.o" => [ "crypto/x509v3/v3_alt.c", ], "crypto/x509v3/v3_asid.o" => [ "crypto/x509v3/v3_asid.c", ], "crypto/x509v3/v3_bcons.o" => [ "crypto/x509v3/v3_bcons.c", ], "crypto/x509v3/v3_bitst.o" => [ "crypto/x509v3/v3_bitst.c", ], "crypto/x509v3/v3_conf.o" => [ "crypto/x509v3/v3_conf.c", ], "crypto/x509v3/v3_cpols.o" => [ "crypto/x509v3/v3_cpols.c", ], "crypto/x509v3/v3_crld.o" => [ "crypto/x509v3/v3_crld.c", ], "crypto/x509v3/v3_enum.o" => [ "crypto/x509v3/v3_enum.c", ], "crypto/x509v3/v3_extku.o" => [ "crypto/x509v3/v3_extku.c", ], "crypto/x509v3/v3_genn.o" => [ "crypto/x509v3/v3_genn.c", ], "crypto/x509v3/v3_ia5.o" => [ "crypto/x509v3/v3_ia5.c", ], "crypto/x509v3/v3_info.o" => [ "crypto/x509v3/v3_info.c", ], "crypto/x509v3/v3_int.o" => [ "crypto/x509v3/v3_int.c", ], "crypto/x509v3/v3_lib.o" => [ "crypto/x509v3/v3_lib.c", ], "crypto/x509v3/v3_ncons.o" => [ "crypto/x509v3/v3_ncons.c", ], "crypto/x509v3/v3_pci.o" => [ "crypto/x509v3/v3_pci.c", ], "crypto/x509v3/v3_pcia.o" => [ "crypto/x509v3/v3_pcia.c", ], "crypto/x509v3/v3_pcons.o" => [ "crypto/x509v3/v3_pcons.c", ], "crypto/x509v3/v3_pku.o" => [ "crypto/x509v3/v3_pku.c", ], "crypto/x509v3/v3_pmaps.o" => [ "crypto/x509v3/v3_pmaps.c", ], "crypto/x509v3/v3_prn.o" => [ "crypto/x509v3/v3_prn.c", ], "crypto/x509v3/v3_purp.o" => [ "crypto/x509v3/v3_purp.c", ], "crypto/x509v3/v3_skey.o" => [ "crypto/x509v3/v3_skey.c", ], "crypto/x509v3/v3_sxnet.o" => [ "crypto/x509v3/v3_sxnet.c", ], "crypto/x509v3/v3_tlsf.o" => [ "crypto/x509v3/v3_tlsf.c", ], "crypto/x509v3/v3_utl.o" => [ "crypto/x509v3/v3_utl.c", ], "crypto/x509v3/v3err.o" => [ "crypto/x509v3/v3err.c", ], "crypto/x86cpuid.o" => [ "crypto/x86cpuid.s", ], "engines/e_capi.o" => [ "engines/e_capi.c", ], "engines/e_padlock-x86.o" => [ "engines/e_padlock-x86.s", ], "engines/e_padlock.o" => [ "engines/e_padlock.c", ], "fuzz/asn1-test" => [ "fuzz/asn1.o", "fuzz/test-corpus.o", ], "fuzz/asn1.o" => [ "fuzz/asn1.c", ], "fuzz/asn1parse-test" => [ "fuzz/asn1parse.o", "fuzz/test-corpus.o", ], "fuzz/asn1parse.o" => [ "fuzz/asn1parse.c", ], "fuzz/bignum-test" => [ "fuzz/bignum.o", "fuzz/test-corpus.o", ], "fuzz/bignum.o" => [ "fuzz/bignum.c", ], "fuzz/bndiv-test" => [ "fuzz/bndiv.o", "fuzz/test-corpus.o", ], "fuzz/bndiv.o" => [ "fuzz/bndiv.c", ], "fuzz/client-test" => [ "fuzz/client.o", "fuzz/test-corpus.o", ], "fuzz/client.o" => [ "fuzz/client.c", ], "fuzz/cms-test" => [ "fuzz/cms.o", "fuzz/test-corpus.o", ], "fuzz/cms.o" => [ "fuzz/cms.c", ], "fuzz/conf-test" => [ "fuzz/conf.o", "fuzz/test-corpus.o", ], "fuzz/conf.o" => [ "fuzz/conf.c", ], "fuzz/crl-test" => [ "fuzz/crl.o", "fuzz/test-corpus.o", ], "fuzz/crl.o" => [ "fuzz/crl.c", ], "fuzz/ct-test" => [ "fuzz/ct.o", "fuzz/test-corpus.o", ], "fuzz/ct.o" => [ "fuzz/ct.c", ], "fuzz/server-test" => [ "fuzz/server.o", "fuzz/test-corpus.o", ], "fuzz/server.o" => [ "fuzz/server.c", ], "fuzz/test-corpus.o" => [ "fuzz/test-corpus.c", ], "fuzz/x509-test" => [ "fuzz/test-corpus.o", "fuzz/x509.o", ], "fuzz/x509.o" => [ "fuzz/x509.c", ], "libcrypto" => [ "crypto/aes/aes-586.o", "crypto/aes/aes_cfb.o", "crypto/aes/aes_ecb.o", "crypto/aes/aes_ige.o", "crypto/aes/aes_misc.o", "crypto/aes/aes_ofb.o", "crypto/aes/aes_wrap.o", "crypto/aes/aesni-x86.o", "crypto/aes/vpaes-x86.o", "crypto/aria/aria.o", "crypto/asn1/a_bitstr.o", "crypto/asn1/a_d2i_fp.o", "crypto/asn1/a_digest.o", "crypto/asn1/a_dup.o", "crypto/asn1/a_gentm.o", "crypto/asn1/a_i2d_fp.o", "crypto/asn1/a_int.o", "crypto/asn1/a_mbstr.o", "crypto/asn1/a_object.o", "crypto/asn1/a_octet.o", "crypto/asn1/a_print.o", "crypto/asn1/a_sign.o", "crypto/asn1/a_strex.o", "crypto/asn1/a_strnid.o", "crypto/asn1/a_time.o", "crypto/asn1/a_type.o", "crypto/asn1/a_utctm.o", "crypto/asn1/a_utf8.o", "crypto/asn1/a_verify.o", "crypto/asn1/ameth_lib.o", "crypto/asn1/asn1_err.o", "crypto/asn1/asn1_gen.o", "crypto/asn1/asn1_item_list.o", "crypto/asn1/asn1_lib.o", "crypto/asn1/asn1_par.o", "crypto/asn1/asn_mime.o", "crypto/asn1/asn_moid.o", "crypto/asn1/asn_mstbl.o", "crypto/asn1/asn_pack.o", "crypto/asn1/bio_asn1.o", "crypto/asn1/bio_ndef.o", "crypto/asn1/d2i_pr.o", "crypto/asn1/d2i_pu.o", "crypto/asn1/evp_asn1.o", "crypto/asn1/f_int.o", "crypto/asn1/f_string.o", "crypto/asn1/i2d_pr.o", "crypto/asn1/i2d_pu.o", "crypto/asn1/n_pkey.o", "crypto/asn1/nsseq.o", "crypto/asn1/p5_pbe.o", "crypto/asn1/p5_pbev2.o", "crypto/asn1/p5_scrypt.o", "crypto/asn1/p8_pkey.o", "crypto/asn1/t_bitst.o", "crypto/asn1/t_pkey.o", "crypto/asn1/t_spki.o", "crypto/asn1/tasn_dec.o", "crypto/asn1/tasn_enc.o", "crypto/asn1/tasn_fre.o", "crypto/asn1/tasn_new.o", "crypto/asn1/tasn_prn.o", "crypto/asn1/tasn_scn.o", "crypto/asn1/tasn_typ.o", "crypto/asn1/tasn_utl.o", "crypto/asn1/x_algor.o", "crypto/asn1/x_bignum.o", "crypto/asn1/x_info.o", "crypto/asn1/x_int64.o", "crypto/asn1/x_long.o", "crypto/asn1/x_pkey.o", "crypto/asn1/x_sig.o", "crypto/asn1/x_spki.o", "crypto/asn1/x_val.o", "crypto/async/arch/async_null.o", "crypto/async/arch/async_posix.o", "crypto/async/arch/async_win.o", "crypto/async/async.o", "crypto/async/async_err.o", "crypto/async/async_wait.o", "crypto/bf/bf-586.o", "crypto/bf/bf_cfb64.o", "crypto/bf/bf_ecb.o", "crypto/bf/bf_ofb64.o", "crypto/bf/bf_skey.o", "crypto/bio/b_addr.o", "crypto/bio/b_dump.o", "crypto/bio/b_print.o", "crypto/bio/b_sock.o", "crypto/bio/b_sock2.o", "crypto/bio/bf_buff.o", "crypto/bio/bf_lbuf.o", "crypto/bio/bf_nbio.o", "crypto/bio/bf_null.o", "crypto/bio/bio_cb.o", "crypto/bio/bio_err.o", "crypto/bio/bio_lib.o", "crypto/bio/bio_meth.o", "crypto/bio/bss_acpt.o", "crypto/bio/bss_bio.o", "crypto/bio/bss_conn.o", "crypto/bio/bss_dgram.o", "crypto/bio/bss_fd.o", "crypto/bio/bss_file.o", "crypto/bio/bss_log.o", "crypto/bio/bss_mem.o", "crypto/bio/bss_null.o", "crypto/bio/bss_sock.o", "crypto/blake2/blake2b.o", "crypto/blake2/blake2s.o", "crypto/blake2/m_blake2b.o", "crypto/blake2/m_blake2s.o", "crypto/bn/bn-586.o", "crypto/bn/bn_add.o", "crypto/bn/bn_blind.o", "crypto/bn/bn_const.o", "crypto/bn/bn_ctx.o", "crypto/bn/bn_depr.o", "crypto/bn/bn_dh.o", "crypto/bn/bn_div.o", "crypto/bn/bn_err.o", "crypto/bn/bn_exp.o", "crypto/bn/bn_exp2.o", "crypto/bn/bn_gcd.o", "crypto/bn/bn_gf2m.o", "crypto/bn/bn_intern.o", "crypto/bn/bn_kron.o", "crypto/bn/bn_lib.o", "crypto/bn/bn_mod.o", "crypto/bn/bn_mont.o", "crypto/bn/bn_mpi.o", "crypto/bn/bn_mul.o", "crypto/bn/bn_nist.o", "crypto/bn/bn_prime.o", "crypto/bn/bn_print.o", "crypto/bn/bn_rand.o", "crypto/bn/bn_recp.o", "crypto/bn/bn_shift.o", "crypto/bn/bn_sqr.o", "crypto/bn/bn_sqrt.o", "crypto/bn/bn_srp.o", "crypto/bn/bn_word.o", "crypto/bn/bn_x931p.o", "crypto/bn/co-586.o", "crypto/bn/x86-gf2m.o", "crypto/bn/x86-mont.o", "crypto/buffer/buf_err.o", "crypto/buffer/buffer.o", "crypto/camellia/cmll-x86.o", "crypto/camellia/cmll_cfb.o", "crypto/camellia/cmll_ctr.o", "crypto/camellia/cmll_ecb.o", "crypto/camellia/cmll_ofb.o", "crypto/cast/c_cfb64.o", "crypto/cast/c_ecb.o", "crypto/cast/c_enc.o", "crypto/cast/c_ofb64.o", "crypto/cast/c_skey.o", "crypto/chacha/chacha-x86.o", "crypto/cmac/cm_ameth.o", "crypto/cmac/cm_pmeth.o", "crypto/cmac/cmac.o", "crypto/cms/cms_asn1.o", "crypto/cms/cms_att.o", "crypto/cms/cms_cd.o", "crypto/cms/cms_dd.o", "crypto/cms/cms_enc.o", "crypto/cms/cms_env.o", "crypto/cms/cms_err.o", "crypto/cms/cms_ess.o", "crypto/cms/cms_io.o", "crypto/cms/cms_kari.o", "crypto/cms/cms_lib.o", "crypto/cms/cms_pwri.o", "crypto/cms/cms_sd.o", "crypto/cms/cms_smime.o", "crypto/conf/conf_api.o", "crypto/conf/conf_def.o", "crypto/conf/conf_err.o", "crypto/conf/conf_lib.o", "crypto/conf/conf_mall.o", "crypto/conf/conf_mod.o", "crypto/conf/conf_sap.o", "crypto/conf/conf_ssl.o", "crypto/cpt_err.o", "crypto/cryptlib.o", "crypto/ct/ct_b64.o", "crypto/ct/ct_err.o", "crypto/ct/ct_log.o", "crypto/ct/ct_oct.o", "crypto/ct/ct_policy.o", "crypto/ct/ct_prn.o", "crypto/ct/ct_sct.o", "crypto/ct/ct_sct_ctx.o", "crypto/ct/ct_vfy.o", "crypto/ct/ct_x509v3.o", "crypto/ctype.o", "crypto/cversion.o", "crypto/des/cbc_cksm.o", "crypto/des/cbc_enc.o", "crypto/des/cfb64ede.o", "crypto/des/cfb64enc.o", "crypto/des/cfb_enc.o", "crypto/des/crypt586.o", "crypto/des/des-586.o", "crypto/des/ecb3_enc.o", "crypto/des/ecb_enc.o", "crypto/des/fcrypt.o", "crypto/des/ofb64ede.o", "crypto/des/ofb64enc.o", "crypto/des/ofb_enc.o", "crypto/des/pcbc_enc.o", "crypto/des/qud_cksm.o", "crypto/des/rand_key.o", "crypto/des/set_key.o", "crypto/des/str2key.o", "crypto/des/xcbc_enc.o", "crypto/dh/dh_ameth.o", "crypto/dh/dh_asn1.o", "crypto/dh/dh_check.o", "crypto/dh/dh_depr.o", "crypto/dh/dh_err.o", "crypto/dh/dh_gen.o", "crypto/dh/dh_kdf.o", "crypto/dh/dh_key.o", "crypto/dh/dh_lib.o", "crypto/dh/dh_meth.o", "crypto/dh/dh_pmeth.o", "crypto/dh/dh_prn.o", "crypto/dh/dh_rfc5114.o", "crypto/dh/dh_rfc7919.o", "crypto/dsa/dsa_ameth.o", "crypto/dsa/dsa_asn1.o", "crypto/dsa/dsa_depr.o", "crypto/dsa/dsa_err.o", "crypto/dsa/dsa_gen.o", "crypto/dsa/dsa_key.o", "crypto/dsa/dsa_lib.o", "crypto/dsa/dsa_meth.o", "crypto/dsa/dsa_ossl.o", "crypto/dsa/dsa_pmeth.o", "crypto/dsa/dsa_prn.o", "crypto/dsa/dsa_sign.o", "crypto/dsa/dsa_vrf.o", "crypto/dso/dso_dl.o", "crypto/dso/dso_dlfcn.o", "crypto/dso/dso_err.o", "crypto/dso/dso_lib.o", "crypto/dso/dso_openssl.o", "crypto/dso/dso_vms.o", "crypto/dso/dso_win32.o", "crypto/ebcdic.o", "crypto/ec/curve25519.o", "crypto/ec/curve448/arch_32/f_impl.o", "crypto/ec/curve448/curve448.o", "crypto/ec/curve448/curve448_tables.o", "crypto/ec/curve448/eddsa.o", "crypto/ec/curve448/f_generic.o", "crypto/ec/curve448/scalar.o", "crypto/ec/ec2_oct.o", "crypto/ec/ec2_smpl.o", "crypto/ec/ec_ameth.o", "crypto/ec/ec_asn1.o", "crypto/ec/ec_check.o", "crypto/ec/ec_curve.o", "crypto/ec/ec_cvt.o", "crypto/ec/ec_err.o", "crypto/ec/ec_key.o", "crypto/ec/ec_kmeth.o", "crypto/ec/ec_lib.o", "crypto/ec/ec_mult.o", "crypto/ec/ec_oct.o", "crypto/ec/ec_pmeth.o", "crypto/ec/ec_print.o", "crypto/ec/ecdh_kdf.o", "crypto/ec/ecdh_ossl.o", "crypto/ec/ecdsa_ossl.o", "crypto/ec/ecdsa_sign.o", "crypto/ec/ecdsa_vrf.o", "crypto/ec/eck_prn.o", "crypto/ec/ecp_mont.o", "crypto/ec/ecp_nist.o", "crypto/ec/ecp_nistp224.o", "crypto/ec/ecp_nistp256.o", "crypto/ec/ecp_nistp521.o", "crypto/ec/ecp_nistputil.o", "crypto/ec/ecp_nistz256-x86.o", "crypto/ec/ecp_nistz256.o", "crypto/ec/ecp_oct.o", "crypto/ec/ecp_smpl.o", "crypto/ec/ecx_meth.o", "crypto/engine/eng_all.o", "crypto/engine/eng_cnf.o", "crypto/engine/eng_ctrl.o", "crypto/engine/eng_dyn.o", "crypto/engine/eng_err.o", "crypto/engine/eng_fat.o", "crypto/engine/eng_init.o", "crypto/engine/eng_lib.o", "crypto/engine/eng_list.o", "crypto/engine/eng_openssl.o", "crypto/engine/eng_pkey.o", "crypto/engine/eng_rdrand.o", "crypto/engine/eng_table.o", "crypto/engine/tb_asnmth.o", "crypto/engine/tb_cipher.o", "crypto/engine/tb_dh.o", "crypto/engine/tb_digest.o", "crypto/engine/tb_dsa.o", "crypto/engine/tb_eckey.o", "crypto/engine/tb_pkmeth.o", "crypto/engine/tb_rand.o", "crypto/engine/tb_rsa.o", "crypto/err/err.o", "crypto/err/err_all.o", "crypto/err/err_prn.o", "crypto/evp/bio_b64.o", "crypto/evp/bio_enc.o", "crypto/evp/bio_md.o", "crypto/evp/bio_ok.o", "crypto/evp/c_allc.o", "crypto/evp/c_alld.o", "crypto/evp/cmeth_lib.o", "crypto/evp/digest.o", "crypto/evp/e_aes.o", "crypto/evp/e_aes_cbc_hmac_sha1.o", "crypto/evp/e_aes_cbc_hmac_sha256.o", "crypto/evp/e_aria.o", "crypto/evp/e_bf.o", "crypto/evp/e_camellia.o", "crypto/evp/e_cast.o", "crypto/evp/e_chacha20_poly1305.o", "crypto/evp/e_des.o", "crypto/evp/e_des3.o", "crypto/evp/e_idea.o", "crypto/evp/e_null.o", "crypto/evp/e_old.o", "crypto/evp/e_rc2.o", "crypto/evp/e_rc4.o", "crypto/evp/e_rc4_hmac_md5.o", "crypto/evp/e_rc5.o", "crypto/evp/e_seed.o", "crypto/evp/e_sm4.o", "crypto/evp/e_xcbc_d.o", "crypto/evp/encode.o", "crypto/evp/evp_cnf.o", "crypto/evp/evp_enc.o", "crypto/evp/evp_err.o", "crypto/evp/evp_key.o", "crypto/evp/evp_lib.o", "crypto/evp/evp_pbe.o", "crypto/evp/evp_pkey.o", "crypto/evp/m_md2.o", "crypto/evp/m_md4.o", "crypto/evp/m_md5.o", "crypto/evp/m_md5_sha1.o", "crypto/evp/m_mdc2.o", "crypto/evp/m_null.o", "crypto/evp/m_ripemd.o", "crypto/evp/m_sha1.o", "crypto/evp/m_sha3.o", "crypto/evp/m_sigver.o", "crypto/evp/m_wp.o", "crypto/evp/names.o", "crypto/evp/p5_crpt.o", "crypto/evp/p5_crpt2.o", "crypto/evp/p_dec.o", "crypto/evp/p_enc.o", "crypto/evp/p_lib.o", "crypto/evp/p_open.o", "crypto/evp/p_seal.o", "crypto/evp/p_sign.o", "crypto/evp/p_verify.o", "crypto/evp/pbe_scrypt.o", "crypto/evp/pmeth_fn.o", "crypto/evp/pmeth_gn.o", "crypto/evp/pmeth_lib.o", "crypto/ex_data.o", "crypto/getenv.o", "crypto/hmac/hm_ameth.o", "crypto/hmac/hm_pmeth.o", "crypto/hmac/hmac.o", "crypto/idea/i_cbc.o", "crypto/idea/i_cfb64.o", "crypto/idea/i_ecb.o", "crypto/idea/i_ofb64.o", "crypto/idea/i_skey.o", "crypto/init.o", "crypto/kdf/hkdf.o", "crypto/kdf/kdf_err.o", "crypto/kdf/scrypt.o", "crypto/kdf/tls1_prf.o", "crypto/lhash/lh_stats.o", "crypto/lhash/lhash.o", "crypto/md4/md4_dgst.o", "crypto/md4/md4_one.o", "crypto/md5/md5-586.o", "crypto/md5/md5_dgst.o", "crypto/md5/md5_one.o", "crypto/mdc2/mdc2_one.o", "crypto/mdc2/mdc2dgst.o", "crypto/mem.o", "crypto/mem_dbg.o", "crypto/mem_sec.o", "crypto/modes/cbc128.o", "crypto/modes/ccm128.o", "crypto/modes/cfb128.o", "crypto/modes/ctr128.o", "crypto/modes/cts128.o", "crypto/modes/gcm128.o", "crypto/modes/ghash-x86.o", "crypto/modes/ocb128.o", "crypto/modes/ofb128.o", "crypto/modes/wrap128.o", "crypto/modes/xts128.o", "crypto/o_dir.o", "crypto/o_fips.o", "crypto/o_fopen.o", "crypto/o_init.o", "crypto/o_str.o", "crypto/o_time.o", "crypto/objects/o_names.o", "crypto/objects/obj_dat.o", "crypto/objects/obj_err.o", "crypto/objects/obj_lib.o", "crypto/objects/obj_xref.o", "crypto/ocsp/ocsp_asn.o", "crypto/ocsp/ocsp_cl.o", "crypto/ocsp/ocsp_err.o", "crypto/ocsp/ocsp_ext.o", "crypto/ocsp/ocsp_ht.o", "crypto/ocsp/ocsp_lib.o", "crypto/ocsp/ocsp_prn.o", "crypto/ocsp/ocsp_srv.o", "crypto/ocsp/ocsp_vfy.o", "crypto/ocsp/v3_ocsp.o", "crypto/pem/pem_all.o", "crypto/pem/pem_err.o", "crypto/pem/pem_info.o", "crypto/pem/pem_lib.o", "crypto/pem/pem_oth.o", "crypto/pem/pem_pk8.o", "crypto/pem/pem_pkey.o", "crypto/pem/pem_sign.o", "crypto/pem/pem_x509.o", "crypto/pem/pem_xaux.o", "crypto/pem/pvkfmt.o", "crypto/pkcs12/p12_add.o", "crypto/pkcs12/p12_asn.o", "crypto/pkcs12/p12_attr.o", "crypto/pkcs12/p12_crpt.o", "crypto/pkcs12/p12_crt.o", "crypto/pkcs12/p12_decr.o", "crypto/pkcs12/p12_init.o", "crypto/pkcs12/p12_key.o", "crypto/pkcs12/p12_kiss.o", "crypto/pkcs12/p12_mutl.o", "crypto/pkcs12/p12_npas.o", "crypto/pkcs12/p12_p8d.o", "crypto/pkcs12/p12_p8e.o", "crypto/pkcs12/p12_sbag.o", "crypto/pkcs12/p12_utl.o", "crypto/pkcs12/pk12err.o", "crypto/pkcs7/bio_pk7.o", "crypto/pkcs7/pk7_asn1.o", "crypto/pkcs7/pk7_attr.o", "crypto/pkcs7/pk7_doit.o", "crypto/pkcs7/pk7_lib.o", "crypto/pkcs7/pk7_mime.o", "crypto/pkcs7/pk7_smime.o", "crypto/pkcs7/pkcs7err.o", "crypto/poly1305/poly1305-x86.o", "crypto/poly1305/poly1305.o", "crypto/poly1305/poly1305_ameth.o", "crypto/poly1305/poly1305_pmeth.o", "crypto/rand/drbg_ctr.o", "crypto/rand/drbg_lib.o", "crypto/rand/rand_egd.o", "crypto/rand/rand_err.o", "crypto/rand/rand_lib.o", "crypto/rand/rand_unix.o", "crypto/rand/rand_vms.o", "crypto/rand/rand_win.o", "crypto/rand/randfile.o", "crypto/rc2/rc2_cbc.o", "crypto/rc2/rc2_ecb.o", "crypto/rc2/rc2_skey.o", "crypto/rc2/rc2cfb64.o", "crypto/rc2/rc2ofb64.o", "crypto/rc4/rc4-586.o", "crypto/ripemd/rmd-586.o", "crypto/ripemd/rmd_dgst.o", "crypto/ripemd/rmd_one.o", "crypto/rsa/rsa_ameth.o", "crypto/rsa/rsa_asn1.o", "crypto/rsa/rsa_chk.o", "crypto/rsa/rsa_crpt.o", "crypto/rsa/rsa_depr.o", "crypto/rsa/rsa_err.o", "crypto/rsa/rsa_gen.o", "crypto/rsa/rsa_lib.o", "crypto/rsa/rsa_meth.o", "crypto/rsa/rsa_mp.o", "crypto/rsa/rsa_none.o", "crypto/rsa/rsa_oaep.o", "crypto/rsa/rsa_ossl.o", "crypto/rsa/rsa_pk1.o", "crypto/rsa/rsa_pmeth.o", "crypto/rsa/rsa_prn.o", "crypto/rsa/rsa_pss.o", "crypto/rsa/rsa_saos.o", "crypto/rsa/rsa_sign.o", "crypto/rsa/rsa_ssl.o", "crypto/rsa/rsa_x931.o", "crypto/rsa/rsa_x931g.o", "crypto/seed/seed.o", "crypto/seed/seed_cbc.o", "crypto/seed/seed_cfb.o", "crypto/seed/seed_ecb.o", "crypto/seed/seed_ofb.o", "crypto/sha/keccak1600.o", "crypto/sha/sha1-586.o", "crypto/sha/sha1_one.o", "crypto/sha/sha1dgst.o", "crypto/sha/sha256-586.o", "crypto/sha/sha256.o", "crypto/sha/sha512-586.o", "crypto/sha/sha512.o", "crypto/siphash/siphash.o", "crypto/siphash/siphash_ameth.o", "crypto/siphash/siphash_pmeth.o", "crypto/sm2/sm2_crypt.o", "crypto/sm2/sm2_err.o", "crypto/sm2/sm2_pmeth.o", "crypto/sm2/sm2_sign.o", "crypto/sm3/m_sm3.o", "crypto/sm3/sm3.o", "crypto/sm4/sm4.o", "crypto/srp/srp_lib.o", "crypto/srp/srp_vfy.o", "crypto/stack/stack.o", "crypto/store/loader_file.o", "crypto/store/store_err.o", "crypto/store/store_init.o", "crypto/store/store_lib.o", "crypto/store/store_register.o", "crypto/store/store_strings.o", "crypto/threads_none.o", "crypto/threads_pthread.o", "crypto/threads_win.o", "crypto/ts/ts_asn1.o", "crypto/ts/ts_conf.o", "crypto/ts/ts_err.o", "crypto/ts/ts_lib.o", "crypto/ts/ts_req_print.o", "crypto/ts/ts_req_utils.o", "crypto/ts/ts_rsp_print.o", "crypto/ts/ts_rsp_sign.o", "crypto/ts/ts_rsp_utils.o", "crypto/ts/ts_rsp_verify.o", "crypto/ts/ts_verify_ctx.o", "crypto/txt_db/txt_db.o", "crypto/ui/ui_err.o", "crypto/ui/ui_lib.o", "crypto/ui/ui_null.o", "crypto/ui/ui_openssl.o", "crypto/ui/ui_util.o", "crypto/uid.o", "crypto/whrlpool/wp-mmx.o", "crypto/whrlpool/wp_block.o", "crypto/whrlpool/wp_dgst.o", "crypto/x509/by_dir.o", "crypto/x509/by_file.o", "crypto/x509/t_crl.o", "crypto/x509/t_req.o", "crypto/x509/t_x509.o", "crypto/x509/x509_att.o", "crypto/x509/x509_cmp.o", "crypto/x509/x509_d2.o", "crypto/x509/x509_def.o", "crypto/x509/x509_err.o", "crypto/x509/x509_ext.o", "crypto/x509/x509_lu.o", "crypto/x509/x509_meth.o", "crypto/x509/x509_obj.o", "crypto/x509/x509_r2x.o", "crypto/x509/x509_req.o", "crypto/x509/x509_set.o", "crypto/x509/x509_trs.o", "crypto/x509/x509_txt.o", "crypto/x509/x509_v3.o", "crypto/x509/x509_vfy.o", "crypto/x509/x509_vpm.o", "crypto/x509/x509cset.o", "crypto/x509/x509name.o", "crypto/x509/x509rset.o", "crypto/x509/x509spki.o", "crypto/x509/x509type.o", "crypto/x509/x_all.o", "crypto/x509/x_attrib.o", "crypto/x509/x_crl.o", "crypto/x509/x_exten.o", "crypto/x509/x_name.o", "crypto/x509/x_pubkey.o", "crypto/x509/x_req.o", "crypto/x509/x_x509.o", "crypto/x509/x_x509a.o", "crypto/x509v3/pcy_cache.o", "crypto/x509v3/pcy_data.o", "crypto/x509v3/pcy_lib.o", "crypto/x509v3/pcy_map.o", "crypto/x509v3/pcy_node.o", "crypto/x509v3/pcy_tree.o", "crypto/x509v3/v3_addr.o", "crypto/x509v3/v3_admis.o", "crypto/x509v3/v3_akey.o", "crypto/x509v3/v3_akeya.o", "crypto/x509v3/v3_alt.o", "crypto/x509v3/v3_asid.o", "crypto/x509v3/v3_bcons.o", "crypto/x509v3/v3_bitst.o", "crypto/x509v3/v3_conf.o", "crypto/x509v3/v3_cpols.o", "crypto/x509v3/v3_crld.o", "crypto/x509v3/v3_enum.o", "crypto/x509v3/v3_extku.o", "crypto/x509v3/v3_genn.o", "crypto/x509v3/v3_ia5.o", "crypto/x509v3/v3_info.o", "crypto/x509v3/v3_int.o", "crypto/x509v3/v3_lib.o", "crypto/x509v3/v3_ncons.o", "crypto/x509v3/v3_pci.o", "crypto/x509v3/v3_pcia.o", "crypto/x509v3/v3_pcons.o", "crypto/x509v3/v3_pku.o", "crypto/x509v3/v3_pmaps.o", "crypto/x509v3/v3_prn.o", "crypto/x509v3/v3_purp.o", "crypto/x509v3/v3_skey.o", "crypto/x509v3/v3_sxnet.o", "crypto/x509v3/v3_tlsf.o", "crypto/x509v3/v3_utl.o", "crypto/x509v3/v3err.o", "crypto/x86cpuid.o", "engines/e_capi.o", "engines/e_padlock-x86.o", "engines/e_padlock.o", ], "libssl" => [ "ssl/bio_ssl.o", "ssl/d1_lib.o", "ssl/d1_msg.o", "ssl/d1_srtp.o", "ssl/methods.o", "ssl/packet.o", "ssl/pqueue.o", "ssl/record/dtls1_bitmap.o", "ssl/record/rec_layer_d1.o", "ssl/record/rec_layer_s3.o", "ssl/record/ssl3_buffer.o", "ssl/record/ssl3_record.o", "ssl/record/ssl3_record_tls13.o", "ssl/s3_cbc.o", "ssl/s3_enc.o", "ssl/s3_lib.o", "ssl/s3_msg.o", "ssl/ssl_asn1.o", "ssl/ssl_cert.o", "ssl/ssl_ciph.o", "ssl/ssl_conf.o", "ssl/ssl_err.o", "ssl/ssl_init.o", "ssl/ssl_lib.o", "ssl/ssl_mcnf.o", "ssl/ssl_rsa.o", "ssl/ssl_sess.o", "ssl/ssl_stat.o", "ssl/ssl_txt.o", "ssl/ssl_utst.o", "ssl/statem/extensions.o", "ssl/statem/extensions_clnt.o", "ssl/statem/extensions_cust.o", "ssl/statem/extensions_srvr.o", "ssl/statem/statem.o", "ssl/statem/statem_clnt.o", "ssl/statem/statem_dtls.o", "ssl/statem/statem_lib.o", "ssl/statem/statem_srvr.o", "ssl/t1_enc.o", "ssl/t1_lib.o", "ssl/t1_trce.o", "ssl/tls13_enc.o", "ssl/tls_srp.o", ], "ssl/bio_ssl.o" => [ "ssl/bio_ssl.c", ], "ssl/d1_lib.o" => [ "ssl/d1_lib.c", ], "ssl/d1_msg.o" => [ "ssl/d1_msg.c", ], "ssl/d1_srtp.o" => [ "ssl/d1_srtp.c", ], "ssl/methods.o" => [ "ssl/methods.c", ], "ssl/packet.o" => [ "ssl/packet.c", ], "ssl/pqueue.o" => [ "ssl/pqueue.c", ], "ssl/record/dtls1_bitmap.o" => [ "ssl/record/dtls1_bitmap.c", ], "ssl/record/rec_layer_d1.o" => [ "ssl/record/rec_layer_d1.c", ], "ssl/record/rec_layer_s3.o" => [ "ssl/record/rec_layer_s3.c", ], "ssl/record/ssl3_buffer.o" => [ "ssl/record/ssl3_buffer.c", ], "ssl/record/ssl3_record.o" => [ "ssl/record/ssl3_record.c", ], "ssl/record/ssl3_record_tls13.o" => [ "ssl/record/ssl3_record_tls13.c", ], "ssl/s3_cbc.o" => [ "ssl/s3_cbc.c", ], "ssl/s3_enc.o" => [ "ssl/s3_enc.c", ], "ssl/s3_lib.o" => [ "ssl/s3_lib.c", ], "ssl/s3_msg.o" => [ "ssl/s3_msg.c", ], "ssl/ssl_asn1.o" => [ "ssl/ssl_asn1.c", ], "ssl/ssl_cert.o" => [ "ssl/ssl_cert.c", ], "ssl/ssl_ciph.o" => [ "ssl/ssl_ciph.c", ], "ssl/ssl_conf.o" => [ "ssl/ssl_conf.c", ], "ssl/ssl_err.o" => [ "ssl/ssl_err.c", ], "ssl/ssl_init.o" => [ "ssl/ssl_init.c", ], "ssl/ssl_lib.o" => [ "ssl/ssl_lib.c", ], "ssl/ssl_mcnf.o" => [ "ssl/ssl_mcnf.c", ], "ssl/ssl_rsa.o" => [ "ssl/ssl_rsa.c", ], "ssl/ssl_sess.o" => [ "ssl/ssl_sess.c", ], "ssl/ssl_stat.o" => [ "ssl/ssl_stat.c", ], "ssl/ssl_txt.o" => [ "ssl/ssl_txt.c", ], "ssl/ssl_utst.o" => [ "ssl/ssl_utst.c", ], "ssl/statem/extensions.o" => [ "ssl/statem/extensions.c", ], "ssl/statem/extensions_clnt.o" => [ "ssl/statem/extensions_clnt.c", ], "ssl/statem/extensions_cust.o" => [ "ssl/statem/extensions_cust.c", ], "ssl/statem/extensions_srvr.o" => [ "ssl/statem/extensions_srvr.c", ], "ssl/statem/statem.o" => [ "ssl/statem/statem.c", ], "ssl/statem/statem_clnt.o" => [ "ssl/statem/statem_clnt.c", ], "ssl/statem/statem_dtls.o" => [ "ssl/statem/statem_dtls.c", ], "ssl/statem/statem_lib.o" => [ "ssl/statem/statem_lib.c", ], "ssl/statem/statem_srvr.o" => [ "ssl/statem/statem_srvr.c", ], "ssl/t1_enc.o" => [ "ssl/t1_enc.c", ], "ssl/t1_lib.o" => [ "ssl/t1_lib.c", ], "ssl/t1_trce.o" => [ "ssl/t1_trce.c", ], "ssl/tls13_enc.o" => [ "ssl/tls13_enc.c", ], "ssl/tls_srp.o" => [ "ssl/tls_srp.c", ], "test/aborttest" => [ "test/aborttest.o", ], "test/aborttest.o" => [ "test/aborttest.c", ], "test/afalgtest" => [ "test/afalgtest.o", ], "test/afalgtest.o" => [ "test/afalgtest.c", ], "test/asn1_decode_test" => [ "test/asn1_decode_test.o", ], "test/asn1_decode_test.o" => [ "test/asn1_decode_test.c", ], "test/asn1_encode_test" => [ "test/asn1_encode_test.o", ], "test/asn1_encode_test.o" => [ "test/asn1_encode_test.c", ], "test/asn1_internal_test" => [ "test/asn1_internal_test.o", ], "test/asn1_internal_test.o" => [ "test/asn1_internal_test.c", ], "test/asn1_string_table_test" => [ "test/asn1_string_table_test.o", ], "test/asn1_string_table_test.o" => [ "test/asn1_string_table_test.c", ], "test/asn1_time_test" => [ "test/asn1_time_test.o", ], "test/asn1_time_test.o" => [ "test/asn1_time_test.c", ], "test/asynciotest" => [ "test/asynciotest.o", "test/ssltestlib.o", ], "test/asynciotest.o" => [ "test/asynciotest.c", ], "test/asynctest" => [ "test/asynctest.o", ], "test/asynctest.o" => [ "test/asynctest.c", ], "test/bad_dtls_test" => [ "test/bad_dtls_test.o", ], "test/bad_dtls_test.o" => [ "test/bad_dtls_test.c", ], "test/bftest" => [ "test/bftest.o", ], "test/bftest.o" => [ "test/bftest.c", ], "test/bio_callback_test" => [ "test/bio_callback_test.o", ], "test/bio_callback_test.o" => [ "test/bio_callback_test.c", ], "test/bio_enc_test" => [ "test/bio_enc_test.o", ], "test/bio_enc_test.o" => [ "test/bio_enc_test.c", ], "test/bio_memleak_test" => [ "test/bio_memleak_test.o", ], "test/bio_memleak_test.o" => [ "test/bio_memleak_test.c", ], "test/bioprinttest" => [ "test/bioprinttest.o", ], "test/bioprinttest.o" => [ "test/bioprinttest.c", ], "test/bntest" => [ "test/bntest.o", ], "test/bntest.o" => [ "test/bntest.c", ], "test/buildtest_aes.o" => [ "test/buildtest_aes.c", ], "test/buildtest_asn1.o" => [ "test/buildtest_asn1.c", ], "test/buildtest_asn1t.o" => [ "test/buildtest_asn1t.c", ], "test/buildtest_async.o" => [ "test/buildtest_async.c", ], "test/buildtest_bio.o" => [ "test/buildtest_bio.c", ], "test/buildtest_blowfish.o" => [ "test/buildtest_blowfish.c", ], "test/buildtest_bn.o" => [ "test/buildtest_bn.c", ], "test/buildtest_buffer.o" => [ "test/buildtest_buffer.c", ], "test/buildtest_c_aes" => [ "test/buildtest_aes.o", ], "test/buildtest_c_asn1" => [ "test/buildtest_asn1.o", ], "test/buildtest_c_asn1t" => [ "test/buildtest_asn1t.o", ], "test/buildtest_c_async" => [ "test/buildtest_async.o", ], "test/buildtest_c_bio" => [ "test/buildtest_bio.o", ], "test/buildtest_c_blowfish" => [ "test/buildtest_blowfish.o", ], "test/buildtest_c_bn" => [ "test/buildtest_bn.o", ], "test/buildtest_c_buffer" => [ "test/buildtest_buffer.o", ], "test/buildtest_c_camellia" => [ "test/buildtest_camellia.o", ], "test/buildtest_c_cast" => [ "test/buildtest_cast.o", ], "test/buildtest_c_cmac" => [ "test/buildtest_cmac.o", ], "test/buildtest_c_cms" => [ "test/buildtest_cms.o", ], "test/buildtest_c_conf" => [ "test/buildtest_conf.o", ], "test/buildtest_c_conf_api" => [ "test/buildtest_conf_api.o", ], "test/buildtest_c_crypto" => [ "test/buildtest_crypto.o", ], "test/buildtest_c_ct" => [ "test/buildtest_ct.o", ], "test/buildtest_c_des" => [ "test/buildtest_des.o", ], "test/buildtest_c_dh" => [ "test/buildtest_dh.o", ], "test/buildtest_c_dsa" => [ "test/buildtest_dsa.o", ], "test/buildtest_c_dtls1" => [ "test/buildtest_dtls1.o", ], "test/buildtest_c_e_os2" => [ "test/buildtest_e_os2.o", ], "test/buildtest_c_ebcdic" => [ "test/buildtest_ebcdic.o", ], "test/buildtest_c_ec" => [ "test/buildtest_ec.o", ], "test/buildtest_c_ecdh" => [ "test/buildtest_ecdh.o", ], "test/buildtest_c_ecdsa" => [ "test/buildtest_ecdsa.o", ], "test/buildtest_c_engine" => [ "test/buildtest_engine.o", ], "test/buildtest_c_evp" => [ "test/buildtest_evp.o", ], "test/buildtest_c_hmac" => [ "test/buildtest_hmac.o", ], "test/buildtest_c_idea" => [ "test/buildtest_idea.o", ], "test/buildtest_c_kdf" => [ "test/buildtest_kdf.o", ], "test/buildtest_c_lhash" => [ "test/buildtest_lhash.o", ], "test/buildtest_c_md4" => [ "test/buildtest_md4.o", ], "test/buildtest_c_md5" => [ "test/buildtest_md5.o", ], "test/buildtest_c_mdc2" => [ "test/buildtest_mdc2.o", ], "test/buildtest_c_modes" => [ "test/buildtest_modes.o", ], "test/buildtest_c_obj_mac" => [ "test/buildtest_obj_mac.o", ], "test/buildtest_c_objects" => [ "test/buildtest_objects.o", ], "test/buildtest_c_ocsp" => [ "test/buildtest_ocsp.o", ], "test/buildtest_c_opensslv" => [ "test/buildtest_opensslv.o", ], "test/buildtest_c_ossl_typ" => [ "test/buildtest_ossl_typ.o", ], "test/buildtest_c_pem" => [ "test/buildtest_pem.o", ], "test/buildtest_c_pem2" => [ "test/buildtest_pem2.o", ], "test/buildtest_c_pkcs12" => [ "test/buildtest_pkcs12.o", ], "test/buildtest_c_pkcs7" => [ "test/buildtest_pkcs7.o", ], "test/buildtest_c_rand" => [ "test/buildtest_rand.o", ], "test/buildtest_c_rand_drbg" => [ "test/buildtest_rand_drbg.o", ], "test/buildtest_c_rc2" => [ "test/buildtest_rc2.o", ], "test/buildtest_c_rc4" => [ "test/buildtest_rc4.o", ], "test/buildtest_c_ripemd" => [ "test/buildtest_ripemd.o", ], "test/buildtest_c_rsa" => [ "test/buildtest_rsa.o", ], "test/buildtest_c_safestack" => [ "test/buildtest_safestack.o", ], "test/buildtest_c_seed" => [ "test/buildtest_seed.o", ], "test/buildtest_c_sha" => [ "test/buildtest_sha.o", ], "test/buildtest_c_srp" => [ "test/buildtest_srp.o", ], "test/buildtest_c_srtp" => [ "test/buildtest_srtp.o", ], "test/buildtest_c_ssl" => [ "test/buildtest_ssl.o", ], "test/buildtest_c_ssl2" => [ "test/buildtest_ssl2.o", ], "test/buildtest_c_stack" => [ "test/buildtest_stack.o", ], "test/buildtest_c_store" => [ "test/buildtest_store.o", ], "test/buildtest_c_symhacks" => [ "test/buildtest_symhacks.o", ], "test/buildtest_c_tls1" => [ "test/buildtest_tls1.o", ], "test/buildtest_c_ts" => [ "test/buildtest_ts.o", ], "test/buildtest_c_txt_db" => [ "test/buildtest_txt_db.o", ], "test/buildtest_c_ui" => [ "test/buildtest_ui.o", ], "test/buildtest_c_whrlpool" => [ "test/buildtest_whrlpool.o", ], "test/buildtest_c_x509" => [ "test/buildtest_x509.o", ], "test/buildtest_c_x509_vfy" => [ "test/buildtest_x509_vfy.o", ], "test/buildtest_c_x509v3" => [ "test/buildtest_x509v3.o", ], "test/buildtest_camellia.o" => [ "test/buildtest_camellia.c", ], "test/buildtest_cast.o" => [ "test/buildtest_cast.c", ], "test/buildtest_cmac.o" => [ "test/buildtest_cmac.c", ], "test/buildtest_cms.o" => [ "test/buildtest_cms.c", ], "test/buildtest_conf.o" => [ "test/buildtest_conf.c", ], "test/buildtest_conf_api.o" => [ "test/buildtest_conf_api.c", ], "test/buildtest_crypto.o" => [ "test/buildtest_crypto.c", ], "test/buildtest_ct.o" => [ "test/buildtest_ct.c", ], "test/buildtest_des.o" => [ "test/buildtest_des.c", ], "test/buildtest_dh.o" => [ "test/buildtest_dh.c", ], "test/buildtest_dsa.o" => [ "test/buildtest_dsa.c", ], "test/buildtest_dtls1.o" => [ "test/buildtest_dtls1.c", ], "test/buildtest_e_os2.o" => [ "test/buildtest_e_os2.c", ], "test/buildtest_ebcdic.o" => [ "test/buildtest_ebcdic.c", ], "test/buildtest_ec.o" => [ "test/buildtest_ec.c", ], "test/buildtest_ecdh.o" => [ "test/buildtest_ecdh.c", ], "test/buildtest_ecdsa.o" => [ "test/buildtest_ecdsa.c", ], "test/buildtest_engine.o" => [ "test/buildtest_engine.c", ], "test/buildtest_evp.o" => [ "test/buildtest_evp.c", ], "test/buildtest_hmac.o" => [ "test/buildtest_hmac.c", ], "test/buildtest_idea.o" => [ "test/buildtest_idea.c", ], "test/buildtest_kdf.o" => [ "test/buildtest_kdf.c", ], "test/buildtest_lhash.o" => [ "test/buildtest_lhash.c", ], "test/buildtest_md4.o" => [ "test/buildtest_md4.c", ], "test/buildtest_md5.o" => [ "test/buildtest_md5.c", ], "test/buildtest_mdc2.o" => [ "test/buildtest_mdc2.c", ], "test/buildtest_modes.o" => [ "test/buildtest_modes.c", ], "test/buildtest_obj_mac.o" => [ "test/buildtest_obj_mac.c", ], "test/buildtest_objects.o" => [ "test/buildtest_objects.c", ], "test/buildtest_ocsp.o" => [ "test/buildtest_ocsp.c", ], "test/buildtest_opensslv.o" => [ "test/buildtest_opensslv.c", ], "test/buildtest_ossl_typ.o" => [ "test/buildtest_ossl_typ.c", ], "test/buildtest_pem.o" => [ "test/buildtest_pem.c", ], "test/buildtest_pem2.o" => [ "test/buildtest_pem2.c", ], "test/buildtest_pkcs12.o" => [ "test/buildtest_pkcs12.c", ], "test/buildtest_pkcs7.o" => [ "test/buildtest_pkcs7.c", ], "test/buildtest_rand.o" => [ "test/buildtest_rand.c", ], "test/buildtest_rand_drbg.o" => [ "test/buildtest_rand_drbg.c", ], "test/buildtest_rc2.o" => [ "test/buildtest_rc2.c", ], "test/buildtest_rc4.o" => [ "test/buildtest_rc4.c", ], "test/buildtest_ripemd.o" => [ "test/buildtest_ripemd.c", ], "test/buildtest_rsa.o" => [ "test/buildtest_rsa.c", ], "test/buildtest_safestack.o" => [ "test/buildtest_safestack.c", ], "test/buildtest_seed.o" => [ "test/buildtest_seed.c", ], "test/buildtest_sha.o" => [ "test/buildtest_sha.c", ], "test/buildtest_srp.o" => [ "test/buildtest_srp.c", ], "test/buildtest_srtp.o" => [ "test/buildtest_srtp.c", ], "test/buildtest_ssl.o" => [ "test/buildtest_ssl.c", ], "test/buildtest_ssl2.o" => [ "test/buildtest_ssl2.c", ], "test/buildtest_stack.o" => [ "test/buildtest_stack.c", ], "test/buildtest_store.o" => [ "test/buildtest_store.c", ], "test/buildtest_symhacks.o" => [ "test/buildtest_symhacks.c", ], "test/buildtest_tls1.o" => [ "test/buildtest_tls1.c", ], "test/buildtest_ts.o" => [ "test/buildtest_ts.c", ], "test/buildtest_txt_db.o" => [ "test/buildtest_txt_db.c", ], "test/buildtest_ui.o" => [ "test/buildtest_ui.c", ], "test/buildtest_whrlpool.o" => [ "test/buildtest_whrlpool.c", ], "test/buildtest_x509.o" => [ "test/buildtest_x509.c", ], "test/buildtest_x509_vfy.o" => [ "test/buildtest_x509_vfy.c", ], "test/buildtest_x509v3.o" => [ "test/buildtest_x509v3.c", ], "test/casttest" => [ "test/casttest.o", ], "test/casttest.o" => [ "test/casttest.c", ], "test/chacha_internal_test" => [ "test/chacha_internal_test.o", ], "test/chacha_internal_test.o" => [ "test/chacha_internal_test.c", ], "test/cipher_overhead_test" => [ "test/cipher_overhead_test.o", ], "test/cipher_overhead_test.o" => [ "test/cipher_overhead_test.c", ], "test/cipherbytes_test" => [ "test/cipherbytes_test.o", ], "test/cipherbytes_test.o" => [ "test/cipherbytes_test.c", ], "test/cipherlist_test" => [ "test/cipherlist_test.o", ], "test/cipherlist_test.o" => [ "test/cipherlist_test.c", ], "test/ciphername_test" => [ "test/ciphername_test.o", ], "test/ciphername_test.o" => [ "test/ciphername_test.c", ], "test/clienthellotest" => [ "test/clienthellotest.o", ], "test/clienthellotest.o" => [ "test/clienthellotest.c", ], "test/cmsapitest" => [ "test/cmsapitest.o", ], "test/cmsapitest.o" => [ "test/cmsapitest.c", ], "test/conf_include_test" => [ "test/conf_include_test.o", ], "test/conf_include_test.o" => [ "test/conf_include_test.c", ], "test/constant_time_test" => [ "test/constant_time_test.o", ], "test/constant_time_test.o" => [ "test/constant_time_test.c", ], "test/crltest" => [ "test/crltest.o", ], "test/crltest.o" => [ "test/crltest.c", ], "test/ct_test" => [ "test/ct_test.o", ], "test/ct_test.o" => [ "test/ct_test.c", ], "test/ctype_internal_test" => [ "test/ctype_internal_test.o", ], "test/ctype_internal_test.o" => [ "test/ctype_internal_test.c", ], "test/curve448_internal_test" => [ "test/curve448_internal_test.o", ], "test/curve448_internal_test.o" => [ "test/curve448_internal_test.c", ], "test/d2i_test" => [ "test/d2i_test.o", ], "test/d2i_test.o" => [ "test/d2i_test.c", ], "test/danetest" => [ "test/danetest.o", ], "test/danetest.o" => [ "test/danetest.c", ], "test/destest" => [ "test/destest.o", ], "test/destest.o" => [ "test/destest.c", ], "test/dhtest" => [ "test/dhtest.o", ], "test/dhtest.o" => [ "test/dhtest.c", ], "test/drbg_cavs_data.o" => [ "test/drbg_cavs_data.c", ], "test/drbg_cavs_test" => [ "test/drbg_cavs_data.o", "test/drbg_cavs_test.o", ], "test/drbg_cavs_test.o" => [ "test/drbg_cavs_test.c", ], "test/drbgtest" => [ "test/drbgtest.o", ], "test/drbgtest.o" => [ "test/drbgtest.c", ], "test/dsa_no_digest_size_test" => [ "test/dsa_no_digest_size_test.o", ], "test/dsa_no_digest_size_test.o" => [ "test/dsa_no_digest_size_test.c", ], "test/dsatest" => [ "test/dsatest.o", ], "test/dsatest.o" => [ "test/dsatest.c", ], "test/dtls_mtu_test" => [ "test/dtls_mtu_test.o", "test/ssltestlib.o", ], "test/dtls_mtu_test.o" => [ "test/dtls_mtu_test.c", ], "test/dtlstest" => [ "test/dtlstest.o", "test/ssltestlib.o", ], "test/dtlstest.o" => [ "test/dtlstest.c", ], "test/dtlsv1listentest" => [ "test/dtlsv1listentest.o", ], "test/dtlsv1listentest.o" => [ "test/dtlsv1listentest.c", ], "test/ec_internal_test" => [ "test/ec_internal_test.o", ], "test/ec_internal_test.o" => [ "test/ec_internal_test.c", ], "test/ecdsatest" => [ "test/ecdsatest.o", ], "test/ecdsatest.o" => [ "test/ecdsatest.c", ], "test/ecstresstest" => [ "test/ecstresstest.o", ], "test/ecstresstest.o" => [ "test/ecstresstest.c", ], "test/ectest" => [ "test/ectest.o", ], "test/ectest.o" => [ "test/ectest.c", ], "test/enginetest" => [ "test/enginetest.o", ], "test/enginetest.o" => [ "test/enginetest.c", ], "test/errtest" => [ "test/errtest.o", ], "test/errtest.o" => [ "test/errtest.c", ], "test/evp_extra_test" => [ "test/evp_extra_test.o", ], "test/evp_extra_test.o" => [ "test/evp_extra_test.c", ], "test/evp_test" => [ "test/evp_test.o", ], "test/evp_test.o" => [ "test/evp_test.c", ], "test/exdatatest" => [ "test/exdatatest.o", ], "test/exdatatest.o" => [ "test/exdatatest.c", ], "test/exptest" => [ "test/exptest.o", ], "test/exptest.o" => [ "test/exptest.c", ], "test/fatalerrtest" => [ "test/fatalerrtest.o", "test/ssltestlib.o", ], "test/fatalerrtest.o" => [ "test/fatalerrtest.c", ], "test/gmdifftest" => [ "test/gmdifftest.o", ], "test/gmdifftest.o" => [ "test/gmdifftest.c", ], "test/gosttest" => [ "test/gosttest.o", "test/ssltestlib.o", ], "test/gosttest.o" => [ "test/gosttest.c", ], "test/handshake_helper.o" => [ "test/handshake_helper.c", ], "test/hmactest" => [ "test/hmactest.o", ], "test/hmactest.o" => [ "test/hmactest.c", ], "test/ideatest" => [ "test/ideatest.o", ], "test/ideatest.o" => [ "test/ideatest.c", ], "test/igetest" => [ "test/igetest.o", ], "test/igetest.o" => [ "test/igetest.c", ], "test/lhash_test" => [ "test/lhash_test.o", ], "test/lhash_test.o" => [ "test/lhash_test.c", ], "test/libtestutil.a" => [ "test/testutil/basic_output.o", "test/testutil/cb.o", "test/testutil/driver.o", "test/testutil/format_output.o", "test/testutil/init.o", "test/testutil/main.o", "test/testutil/output_helpers.o", "test/testutil/stanza.o", "test/testutil/tap_bio.o", "test/testutil/test_cleanup.o", "test/testutil/tests.o", ], "test/md2test" => [ "test/md2test.o", ], "test/md2test.o" => [ "test/md2test.c", ], "test/mdc2_internal_test" => [ "test/mdc2_internal_test.o", ], "test/mdc2_internal_test.o" => [ "test/mdc2_internal_test.c", ], "test/mdc2test" => [ "test/mdc2test.o", ], "test/mdc2test.o" => [ "test/mdc2test.c", ], "test/memleaktest" => [ "test/memleaktest.o", ], "test/memleaktest.o" => [ "test/memleaktest.c", ], "test/modes_internal_test" => [ "test/modes_internal_test.o", ], "test/modes_internal_test.o" => [ "test/modes_internal_test.c", ], "test/ocspapitest" => [ "test/ocspapitest.o", ], "test/ocspapitest.o" => [ "test/ocspapitest.c", ], "test/packettest" => [ "test/packettest.o", ], "test/packettest.o" => [ "test/packettest.c", ], "test/pbelutest" => [ "test/pbelutest.o", ], "test/pbelutest.o" => [ "test/pbelutest.c", ], "test/pemtest" => [ "test/pemtest.o", ], "test/pemtest.o" => [ "test/pemtest.c", ], "test/pkey_meth_kdf_test" => [ "test/pkey_meth_kdf_test.o", ], "test/pkey_meth_kdf_test.o" => [ "test/pkey_meth_kdf_test.c", ], "test/pkey_meth_test" => [ "test/pkey_meth_test.o", ], "test/pkey_meth_test.o" => [ "test/pkey_meth_test.c", ], "test/poly1305_internal_test" => [ "test/poly1305_internal_test.o", ], "test/poly1305_internal_test.o" => [ "test/poly1305_internal_test.c", ], "test/rc2test" => [ "test/rc2test.o", ], "test/rc2test.o" => [ "test/rc2test.c", ], "test/rc4test" => [ "test/rc4test.o", ], "test/rc4test.o" => [ "test/rc4test.c", ], "test/rc5test" => [ "test/rc5test.o", ], "test/rc5test.o" => [ "test/rc5test.c", ], "test/rdrand_sanitytest" => [ "test/rdrand_sanitytest.o", ], "test/rdrand_sanitytest.o" => [ "test/rdrand_sanitytest.c", ], "test/recordlentest" => [ "test/recordlentest.o", "test/ssltestlib.o", ], "test/recordlentest.o" => [ "test/recordlentest.c", ], "test/rsa_complex" => [ "test/rsa_complex.o", ], "test/rsa_complex.o" => [ "test/rsa_complex.c", ], "test/rsa_mp_test" => [ "test/rsa_mp_test.o", ], "test/rsa_mp_test.o" => [ "test/rsa_mp_test.c", ], "test/rsa_test" => [ "test/rsa_test.o", ], "test/rsa_test.o" => [ "test/rsa_test.c", ], "test/sanitytest" => [ "test/sanitytest.o", ], "test/sanitytest.o" => [ "test/sanitytest.c", ], "test/secmemtest" => [ "test/secmemtest.o", ], "test/secmemtest.o" => [ "test/secmemtest.c", ], "test/servername_test" => [ "test/servername_test.o", "test/ssltestlib.o", ], "test/servername_test.o" => [ "test/servername_test.c", ], "test/siphash_internal_test" => [ "test/siphash_internal_test.o", ], "test/siphash_internal_test.o" => [ "test/siphash_internal_test.c", ], "test/sm2_internal_test" => [ "test/sm2_internal_test.o", ], "test/sm2_internal_test.o" => [ "test/sm2_internal_test.c", ], "test/sm4_internal_test" => [ "test/sm4_internal_test.o", ], "test/sm4_internal_test.o" => [ "test/sm4_internal_test.c", ], "test/srptest" => [ "test/srptest.o", ], "test/srptest.o" => [ "test/srptest.c", ], "test/ssl_cert_table_internal_test" => [ "test/ssl_cert_table_internal_test.o", ], "test/ssl_cert_table_internal_test.o" => [ "test/ssl_cert_table_internal_test.c", ], "test/ssl_test" => [ "test/handshake_helper.o", "test/ssl_test.o", "test/ssl_test_ctx.o", ], "test/ssl_test.o" => [ "test/ssl_test.c", ], "test/ssl_test_ctx.o" => [ "test/ssl_test_ctx.c", ], "test/ssl_test_ctx_test" => [ "test/ssl_test_ctx.o", "test/ssl_test_ctx_test.o", ], "test/ssl_test_ctx_test.o" => [ "test/ssl_test_ctx_test.c", ], "test/sslapitest" => [ "test/sslapitest.o", "test/ssltestlib.o", ], "test/sslapitest.o" => [ "test/sslapitest.c", ], "test/sslbuffertest" => [ "test/sslbuffertest.o", "test/ssltestlib.o", ], "test/sslbuffertest.o" => [ "test/sslbuffertest.c", ], "test/sslcorrupttest" => [ "test/sslcorrupttest.o", "test/ssltestlib.o", ], "test/sslcorrupttest.o" => [ "test/sslcorrupttest.c", ], "test/ssltest_old" => [ "test/ssltest_old.o", ], "test/ssltest_old.o" => [ "test/ssltest_old.c", ], "test/ssltestlib.o" => [ "test/ssltestlib.c", ], "test/stack_test" => [ "test/stack_test.o", ], "test/stack_test.o" => [ "test/stack_test.c", ], "test/sysdefaulttest" => [ "test/sysdefaulttest.o", ], "test/sysdefaulttest.o" => [ "test/sysdefaulttest.c", ], "test/test_test" => [ "test/test_test.o", ], "test/test_test.o" => [ "test/test_test.c", ], "test/testutil/basic_output.o" => [ "test/testutil/basic_output.c", ], "test/testutil/cb.o" => [ "test/testutil/cb.c", ], "test/testutil/driver.o" => [ "test/testutil/driver.c", ], "test/testutil/format_output.o" => [ "test/testutil/format_output.c", ], "test/testutil/init.o" => [ "test/testutil/init.c", ], "test/testutil/main.o" => [ "test/testutil/main.c", ], "test/testutil/output_helpers.o" => [ "test/testutil/output_helpers.c", ], "test/testutil/stanza.o" => [ "test/testutil/stanza.c", ], "test/testutil/tap_bio.o" => [ "test/testutil/tap_bio.c", ], "test/testutil/test_cleanup.o" => [ "test/testutil/test_cleanup.c", ], "test/testutil/tests.o" => [ "test/testutil/tests.c", ], "test/threadstest" => [ "test/threadstest.o", ], "test/threadstest.o" => [ "test/threadstest.c", ], "test/time_offset_test" => [ "test/time_offset_test.o", ], "test/time_offset_test.o" => [ "test/time_offset_test.c", ], "test/tls13ccstest" => [ "test/ssltestlib.o", "test/tls13ccstest.o", ], "test/tls13ccstest.o" => [ "test/tls13ccstest.c", ], "test/tls13encryptiontest" => [ "test/tls13encryptiontest.o", ], "test/tls13encryptiontest.o" => [ "test/tls13encryptiontest.c", ], "test/uitest" => [ "test/uitest.o", ], "test/uitest.o" => [ "test/uitest.c", ], "test/v3ext" => [ "test/v3ext.o", ], "test/v3ext.o" => [ "test/v3ext.c", ], "test/v3nametest" => [ "test/v3nametest.o", ], "test/v3nametest.o" => [ "test/v3nametest.c", ], "test/verify_extra_test" => [ "test/verify_extra_test.o", ], "test/verify_extra_test.o" => [ "test/verify_extra_test.c", ], "test/versions" => [ "test/versions.o", ], "test/versions.o" => [ "test/versions.c", ], "test/wpackettest" => [ "test/wpackettest.o", ], "test/wpackettest.o" => [ "test/wpackettest.c", ], "test/x509_check_cert_pkey_test" => [ "test/x509_check_cert_pkey_test.o", ], "test/x509_check_cert_pkey_test.o" => [ "test/x509_check_cert_pkey_test.c", ], "test/x509_dup_cert_test" => [ "test/x509_dup_cert_test.o", ], "test/x509_dup_cert_test.o" => [ "test/x509_dup_cert_test.c", ], "test/x509_internal_test" => [ "test/x509_internal_test.o", ], "test/x509_internal_test.o" => [ "test/x509_internal_test.c", ], "test/x509_time_test" => [ "test/x509_time_test.o", ], "test/x509_time_test.o" => [ "test/x509_time_test.c", ], "test/x509aux" => [ "test/x509aux.o", ], "test/x509aux.o" => [ "test/x509aux.c", ], "tools/c_rehash.pl" => [ "tools/c_rehash.in", ], }, ); # The following data is only used when this files is use as a script my @makevars = ( 'AR', 'ARFLAGS', 'AS', 'ASFLAGS', 'CC', 'CFLAGS', 'CPP', 'CPPDEFINES', 'CPPFLAGS', 'CPPINCLUDES', 'CROSS_COMPILE', 'CXX', 'CXXFLAGS', 'HASHBANGPERL', 'LD', 'LDFLAGS', 'LDLIBS', 'MT', 'MTFLAGS', 'PERL', 'RANLIB', 'RC', 'RCFLAGS', 'RM', ); my %disabled_info = ( 'afalgeng' => { macro => 'OPENSSL_NO_AFALGENG', }, 'asan' => { macro => 'OPENSSL_NO_ASAN', }, 'comp' => { macro => 'OPENSSL_NO_COMP', skipped => [ 'crypto/comp' ], }, 'crypto-mdebug' => { macro => 'OPENSSL_NO_CRYPTO_MDEBUG', }, 'crypto-mdebug-backtrace' => { macro => 'OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE', }, 'devcryptoeng' => { macro => 'OPENSSL_NO_DEVCRYPTOENG', }, 'ec_nistp_64_gcc_128' => { macro => 'OPENSSL_NO_EC_NISTP_64_GCC_128', }, 'egd' => { macro => 'OPENSSL_NO_EGD', }, 'external-tests' => { macro => 'OPENSSL_NO_EXTERNAL_TESTS', }, 'fuzz-afl' => { macro => 'OPENSSL_NO_FUZZ_AFL', }, 'fuzz-libfuzzer' => { macro => 'OPENSSL_NO_FUZZ_LIBFUZZER', }, 'heartbeats' => { macro => 'OPENSSL_NO_HEARTBEATS', }, 'md2' => { macro => 'OPENSSL_NO_MD2', skipped => [ 'crypto/md2' ], }, 'msan' => { macro => 'OPENSSL_NO_MSAN', }, 'rc5' => { macro => 'OPENSSL_NO_RC5', skipped => [ 'crypto/rc5' ], }, 'sctp' => { macro => 'OPENSSL_NO_SCTP', }, 'ssl3' => { macro => 'OPENSSL_NO_SSL3', }, 'ssl3-method' => { macro => 'OPENSSL_NO_SSL3_METHOD', }, 'ubsan' => { macro => 'OPENSSL_NO_UBSAN', }, 'unit-test' => { macro => 'OPENSSL_NO_UNIT_TEST', }, 'weak-ssl-ciphers' => { macro => 'OPENSSL_NO_WEAK_SSL_CIPHERS', }, ); my @user_crossable = qw( AR AS CC CXX CPP LD MT RANLIB RC ); # If run directly, we can give some answers, and even reconfigure unless (caller) { use Getopt::Long; use File::Spec::Functions; use File::Basename; use Pod::Usage; my $here = dirname($0); my $dump = undef; my $cmdline = undef; my $options = undef; my $target = undef; my $envvars = undef; my $makevars = undef; my $buildparams = undef; my $reconf = undef; my $verbose = undef; my $help = undef; my $man = undef; GetOptions('dump|d' => \$dump, 'command-line|c' => \$cmdline, 'options|o' => \$options, 'target|t' => \$target, 'environment|e' => \$envvars, 'make-variables|m' => \$makevars, 'build-parameters|b' => \$buildparams, 'reconfigure|reconf|r' => \$reconf, 'verbose|v' => \$verbose, 'help' => \$help, 'man' => \$man) or die "Errors in command line arguments\n"; unless ($dump || $cmdline || $options || $target || $envvars || $makevars || $buildparams || $reconf || $verbose || $help || $man) { print STDERR <<"_____"; You must give at least one option. For more information, do '$0 --help' _____ exit(2); } if ($help) { pod2usage(-exitval => 0, -verbose => 1); } if ($man) { pod2usage(-exitval => 0, -verbose => 2); } if ($dump || $cmdline) { print "\nCommand line (with current working directory = $here):\n\n"; print ' ',join(' ', $config{PERL}, catfile($config{sourcedir}, 'Configure'), @{$config{perlargv}}), "\n"; print "\nPerl information:\n\n"; print ' ',$config{perl_cmd},"\n"; print ' ',$config{perl_version},' for ',$config{perl_archname},"\n"; } if ($dump || $options) { my $longest = 0; my $longest2 = 0; foreach my $what (@disablables) { $longest = length($what) if $longest < length($what); $longest2 = length($disabled{$what}) if $disabled{$what} && $longest2 < length($disabled{$what}); } print "\nEnabled features:\n\n"; foreach my $what (@disablables) { print " $what\n" unless $disabled{$what}; } print "\nDisabled features:\n\n"; foreach my $what (@disablables) { if ($disabled{$what}) { print " $what", ' ' x ($longest - length($what) + 1), "[$disabled{$what}]", ' ' x ($longest2 - length($disabled{$what}) + 1); print $disabled_info{$what}->{macro} if $disabled_info{$what}->{macro}; print ' (skip ', join(', ', @{$disabled_info{$what}->{skipped}}), ')' if $disabled_info{$what}->{skipped}; print "\n"; } } } if ($dump || $target) { print "\nConfig target attributes:\n\n"; foreach (sort keys %target) { next if $_ =~ m|^_| || $_ eq 'template'; my $quotify = sub { map { (my $x = $_) =~ s|([\\\$\@"])|\\$1|g; "\"$x\""} @_; }; print ' ', $_, ' => '; if (ref($target{$_}) eq "ARRAY") { print '[ ', join(', ', $quotify->(@{$target{$_}})), " ],\n"; } else { print $quotify->($target{$_}), ",\n" } } } if ($dump || $envvars) { print "\nRecorded environment:\n\n"; foreach (sort keys %{$config{perlenv}}) { print ' ',$_,' = ',($config{perlenv}->{$_} || ''),"\n"; } } if ($dump || $makevars) { print "\nMakevars:\n\n"; foreach my $var (@makevars) { my $prefix = ''; $prefix = $config{CROSS_COMPILE} if grep { $var eq $_ } @user_crossable; $prefix //= ''; print ' ',$var,' ' x (16 - length $var),'= ', (ref $config{$var} eq 'ARRAY' ? join(' ', @{$config{$var}}) : $prefix.$config{$var}), "\n" if defined $config{$var}; } my @buildfile = ($config{builddir}, $config{build_file}); unshift @buildfile, $here unless file_name_is_absolute($config{builddir}); my $buildfile = canonpath(catdir(@buildfile)); print <<"_____"; NOTE: These variables only represent the configuration view. The build file template may have processed these variables further, please have a look at the build file for more exact data: $buildfile _____ } if ($dump || $buildparams) { my @buildfile = ($config{builddir}, $config{build_file}); unshift @buildfile, $here unless file_name_is_absolute($config{builddir}); print "\nbuild file:\n\n"; print " ", canonpath(catfile(@buildfile)),"\n"; print "\nbuild file templates:\n\n"; foreach (@{$config{build_file_templates}}) { my @tmpl = ($_); unshift @tmpl, $here unless file_name_is_absolute($config{sourcedir}); print ' ',canonpath(catfile(@tmpl)),"\n"; } } if ($reconf) { if ($verbose) { print 'Reconfiguring with: ', join(' ',@{$config{perlargv}}), "\n"; foreach (sort keys %{$config{perlenv}}) { print ' ',$_,' = ',($config{perlenv}->{$_} || ""),"\n"; } } chdir $here; exec $^X,catfile($config{sourcedir}, 'Configure'),'reconf'; } } 1; __END__ =head1 NAME configdata.pm - configuration data for OpenSSL builds =head1 SYNOPSIS Interactive: perl configdata.pm [options] As data bank module: use configdata; =head1 DESCRIPTION This module can be used in two modes, interactively and as a module containing all the data recorded by OpenSSL's Configure script. When used interactively, simply run it as any perl script, with at least one option, and you will get the information you ask for. See L</OPTIONS> below. When loaded as a module, you get a few databanks with useful information to perform build related tasks. The databanks are: %config Configured things. %target The OpenSSL config target with all inheritances resolved. %disabled The features that are disabled. @disablables The list of features that can be disabled. %withargs All data given through --with-THING options. %unified_info All information that was computed from the build.info files. =head1 OPTIONS =over 4 =item B<--help> Print a brief help message and exit. =item B<--man> Print the manual page and exit. =item B<--dump> | B<-d> Print all relevant configuration data. This is equivalent to B<--command-line> B<--options> B<--target> B<--environment> B<--make-variables> B<--build-parameters>. =item B<--command-line> | B<-c> Print the current configuration command line. =item B<--options> | B<-o> Print the features, both enabled and disabled, and display defined macro and skipped directories where applicable. =item B<--target> | B<-t> Print the config attributes for this config target. =item B<--environment> | B<-e> Print the environment variables and their values at the time of configuration. =item B<--make-variables> | B<-m> Print the main make variables generated in the current configuration =item B<--build-parameters> | B<-b> Print the build parameters, i.e. build file and build file templates. =item B<--reconfigure> | B<--reconf> | B<-r> Redo the configuration. =item B<--verbose> | B<-v> Verbose output. =back =cut
31.136172
1,736
0.285454
ed449f828c960bea15152cacc305de601548fb54
2,556
t
Perl
t/06-telemetry/01-basic.t
Kaiepi/rakudo
a04c616471527705e44cc795471ba2f28c5fe21c
[ "Artistic-2.0" ]
1
2016-05-09T09:20:40.000Z
2016-05-09T09:20:40.000Z
t/06-telemetry/01-basic.t
Kaiepi/rakudo
a04c616471527705e44cc795471ba2f28c5fe21c
[ "Artistic-2.0" ]
null
null
null
t/06-telemetry/01-basic.t
Kaiepi/rakudo
a04c616471527705e44cc795471ba2f28c5fe21c
[ "Artistic-2.0" ]
null
null
null
use v6; # very basic Telemetry tests # make sure we don't have any overrides BEGIN { %*ENV.DELETE-KEY($_) for < RAKUDO_REPORT_COLUMNS RAKUDO_REPORT_HEADER_REPEAT RAKUDO_REPORT_LEGEND RAKUDO_REPORT_CSV RAKUDO_TELEMETRY_INSTRUMENTS >; } use Test; use Telemetry; plan 41; my $T = T; isa-ok $T, Telemetry, 'did we get a Telemetry object from T'; for <wallclock cpu max-rss> { ok $T{$_}, "did we get a non-zero value for $_ using AT-KEY"; ok $T."$_"(), "did we get a non-zero value for $_ with a method"; } my $T2 = $T.perl.EVAL; isa-ok $T2, Telemetry, 'did we get a Telemetry object from T.perl.EVAL'; is $T2{$_}, $T{$_}, "did $_ roundtrip ok in Telemetry?" for <wallclock cpu max-rss>; my $P = T() - $T; isa-ok $P, Telemetry::Period, 'Did we get a Telemetry::Period'; for <wallclock cpu> { ok $P{$_}, "did we get a non-zero value for $_ using AT-KEY"; ok $P."$_"(), "did we get a non-zero value for $_ using AT-KEY"; } my $P2 = $P.perl.EVAL; isa-ok $P2, Telemetry::Period, 'did we get a Telemetry::Period object from period.perl.EVAL'; is $P2{$_}, $P{$_}, "did $_ roundtrip ok in Telemetry::Period?" for <wallclock cpu max-rss>; my $sampler = $T.sampler; isa-ok $sampler, Telemetry::Sampler, 'did it contain a Sampler'; my @instruments = $sampler.instruments; is +@instruments, 2, 'there are 2 default default instruments'; for (Telemetry::Instrument::Usage, Telemetry::Instrument::ThreadPool).kv -> $index, $class { isa-ok @instruments[$index], $class, "did we get a $class.^name()"; } for <&snap &snapper &periods &report &safe-ctrl-c &T> -> $name { isa-ok ::{$name}, Sub, "was $name exported"; } is snap, Nil, 'did the snap return nothing'; my @periods = periods; is +@periods, 1, 'did periods auto-add an extra snap?'; isa-ok @periods[0], Telemetry::Period, 'is it a Telemetry::Period'; is +periods, 0, 'Did the call to periods remove all of the snaps?'; is snapper, Nil, 'did the snapper return nothing'; sleep 1; snapper(:stop); sleep .1; ok +periods() > 0, 'did the snapper start taking snaps'; sleep .2; ok +periods() == 0, 'did the snapper actually stop'; snapper(2); sleep .5; # give snapper thread some time to start up is +periods(), 1, 'did the snapper start taking snaps'; snapper(:stop); sleep 2; my @report = report.lines; is +@report, 2, 'did we only get the header of the report'; ok @report[0].starts-with('Telemetry Report of Process'), 'line 1 of report'; is @report[1], 'Number of Snapshots: 0', 'line 2 of report'; # vim: ft=perl6 expandtab sw=4
29.045455
77
0.665102
ed5d31c4f3e6b7e5c74ea2694fccce5f2b7991ae
12,351
pl
Perl
source/tmin8.pl
texjporg/ptex-fonts
f035786452950a11cefeebd51f4ada1c89b5c694
[ "BSD-3-Clause" ]
2
2018-02-12T09:35:40.000Z
2018-02-12T09:39:29.000Z
source/tmin8.pl
texjporg/ptex-fonts
f035786452950a11cefeebd51f4ada1c89b5c694
[ "BSD-3-Clause" ]
2
2017-07-01T15:06:04.000Z
2018-01-24T04:27:13.000Z
source/tmin8.pl
texjporg/ptex-fonts
f035786452950a11cefeebd51f4ada1c89b5c694
[ "BSD-3-Clause" ]
null
null
null
(COMMENT tmin10 Propaty List File (Tate kumi) by Hisato Hamano at ascii Co. ) (COMMENT THIS IS A KANJI FORMAT FILE) (DIRECTION TATE) (FAMILY MINCHO) (FACE F MRR) (CODINGSCHEME JIS X0208) (DESIGNSIZE R 8.0) (COMMENT DESIGNSIZE IS IN POINTS) (COMMENT OTHER SIZES ARE MULTIPLES OF DESIGNSIZE) (CHECKSUM O 35147750366) (SEVENBITSAFEFLAG TRUE) (FONTDIMEN (SLANT R 0.0) (SPACE R 0.0) (STRETCH R 0.091641) (SHRINK R 0.0) (XHEIGHT R 0.916443) (QUAD R 0.962216) (EXTRASPACE R 0.229101) (EXTRASTRETCH R 0.183283) (EXTRASHRINK R 0.114551) ) (GLUEKERN (LABEL D 0) (GLUE D 1 R 0.0 R 0.0 R 0.0 ) (GLUE D 2 R 0.0 R 0.0 R 0.0 ) (GLUE D 3 R 0.107391 R 0.0 R 0.107391) (GLUE D 5 R 0.0 R 0.0 R 0.0 ) (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) (GLUE D 7 R 0.240554 R 0.183283 R 0.240554) (GLUE D 8 R 0.0 R 0.0 R 0.0 ) (STOP) (LABEL D 1) (GLUE D 0 R 0.481108 R 0.183283 R 0.481108) (GLUE D 1 R 0.0 R 0.0 R 0.0 ) (GLUE D 2 R 0.0 R 0.0 R 0.0 ) (GLUE D 3 R 0.481108 R 0.183283 R 0.481108) (GLUE D 4 R 0.0 R 0.0 R 0.0 ) (GLUE D 5 R 0.481108 R 0.183283 R 0.481108) (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) (GLUE D 7 R 0.481108 R 0.183283 R 0.481108) (GLUE D 8 R 0.0 R 0.0 R 0.0 ) (STOP) (LABEL D 2) (GLUE D 0 R 0.481108 R 0.183283 R 0.481108) (GLUE D 1 R 0.0 R 0.0 R 0.0 ) (GLUE D 2 R 0.0 R 0.0 R 0.0 ) (GLUE D 3 R 0.481108 R 0.183283 R 0.481108) (GLUE D 4 R 0.0 R 0.0 R 0.0 ) (GLUE D 5 R 0.481108 R 0.183283 R 0.481108) (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) (GLUE D 7 R 0.481108 R 0.183283 R 0.481108) (GLUE D 8 R 0.0 R 0.0 R 0.0 ) (STOP) (LABEL D 3) (GLUE D 0 R 0.107391 R 0.0 R 0.107391) (GLUE D 1 R 0.0 R 0.0 R 0.0 ) (GLUE D 2 R 0.0 R 0.0 R 0.0 ) (GLUE D 3 R 0.107391 R 0.0 R 0.107391) (GLUE D 5 R 0.0 R 0.0 R 0.0 ) (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) (GLUE D 7 R 0.240554 R 0.183283 R 0.240554) (GLUE D 8 R 0.0 R 0.0 R 0.0 ) (STOP) (LABEL D 4) (GLUE D 0 R 0.962216 R 0.0 R 0.481108) (GLUE D 1 R 0.0 R 0.0 R 0.0 ) (GLUE D 2 R 0.0 R 0.0 R 0.0 ) (GLUE D 3 R 0.962216 R 0.0 R 0.481108) (GLUE D 5 R 0.0 R 0.0 R 0.0 ) (GLUE D 6 R 0.962216 R 0.0 R 0.481108) (GLUE D 7 R 0.962216 R 0.0 R 0.481108) (GLUE D 8 R 0.0 R 0.0 R 0.0 ) (STOP) (LABEL D 5) (GLUE D 0 R 0.0 R 0.0 R 0.0 ) (GLUE D 1 R 0.0 R 0.0 R 0.0 ) (GLUE D 2 R 0.0 R 0.0 R 0.0 ) (GLUE D 3 R 0.0 R 0.0 R 0.0 ) (GLUE D 4 R 0.0 R 0.0 R 0.0 ) (GLUE D 5 R 0.0 R 0.0 R 0.0 ) (GLUE D 6 R 0.240554 R 0.183283 R 0.240554) (GLUE D 7 R 0.240554 R 0.183283 R 0.240554) (GLUE D 8 R 0.0 R 0.0 R 0.0 ) (STOP) (LABEL D 6) (GLUE D 0 R 0.0 R 0.0 R 0.0 ) (GLUE D 1 R 0.0 R 0.0 R 0.0 ) (GLUE D 2 R 0.0 R 0.0 R 0.0 ) (GLUE D 3 R 0.0 R 0.0 R 0.0 ) (GLUE D 4 R 0.0 R 0.0 R 0.0 ) (GLUE D 5 R 0.0 R 0.0 R 0.0 ) (GLUE D 6 R 0.0 R 0.0 R 0.0 ) (GLUE D 7 R 0.240554 R 0.0 R 0.240554) (GLUE D 8 R 0.0 R 0.0 R 0.0 ) (STOP) (LABEL D 7) (GLUE D 0 R 0.240554 R 0.183283 R 0.240554) (GLUE D 1 R 0.240554 R 0.0 R 0.240554) (GLUE D 2 R 0.240554 R 0.0 R 0.240554) (GLUE D 3 R 0.240554 R 0.183283 R 0.240554) (GLUE D 4 R 0.240554 R 0.183283 R 0.240554) (GLUE D 5 R 0.240554 R 0.183283 R 0.240554) (GLUE D 6 R 0.240554 R 0.183283 R 0.240554) (GLUE D 7 R 0.0 R 0.183283 R 0.0 ) (GLUE D 8 R 0.240554 R 0.0 R 0.240554) (STOP) (LABEL D 8) (GLUE D 0 R 0.481108 R 0.183283 R 0.481108) (GLUE D 1 R 0.0 R 0.0 R 0.0 ) (GLUE D 2 R 0.0 R 0.0 R 0.0 ) (GLUE D 3 R 0.481108 R 0.183283 R 0.481108) (GLUE D 4 R 0.0 R 0.0 R 0.0 ) (GLUE D 5 R 0.240554 R 0.183283 R 0.240554) (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) (GLUE D 7 R 0.240554 R 0.183283 R 0.240554) (GLUE D 8 R 0.0 R 0.0 R 0.0 ) (STOP) ) (CHARSINTYPE D 1 $B!$(B $B!%(B ) (CHARSINTYPE D 2 $B!"(B $B!#(B ) (CHARSINTYPE D 3 $B!3(B $B!4(B $B!5(B $B!6(B $B!7(B $B!9(B $B$!(B $B$#(B $B$%(B $B$'(B $B$)(B $B$C(B $B$c(B $B$e(B $B$g(B $B$n(B $B%!(B $B%#(B $B%%(B $B%'(B $B%)(B $B%C(B $B%c(B $B%e(B $B%g(B $B%n(B $B%u(B $B%v(B ) (CHARSINTYPE D 4 $B!)(B $B!*(B ) (CHARSINTYPE D 5 $B!=(B $B!D(B $B!E(B ) (CHARSINTYPE D 6 $B!F(B $B!H(B $B!J(B $B!L(B $B!N(B $B!P(B $B!R(B $B!T(B $B!V(B $B!X(B $B!Z(B ) (CHARSINTYPE D 7 $B!&(B $B!>(B $B!B(B $B!C(B ) (CHARSINTYPE D 8 $B!G(B $B!I(B $B!K(B $B!M(B $B!O(B $B!Q(B $B!S(B $B!U(B $B!W(B $B!Y(B $B![(B ) (TYPE D 0 (COMMENT $BIaDL$N4A;z(B ) (CHARWD R 0.962216) (CHARHT R 0.458221) (CHARDP R 0.458221) (COMMENT (GLUE D 1 R 0.0 R 0.0 R 0.0 ) $B!$!%(B (GLUE D 2 R 0.0 R 0.0 R 0.0 ) $B!"!#(B (GLUE D 3 R 0.107391 R 0.0 R 0.107391) $B>.$+$J(B (GLUE D 5 R 0.0 R 0.0 R 0.0 ) $BA43QLsJ*(B (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) $B%+%C%33+$-(B (GLUE D 7 R 0.240554 R 0.183283 R 0.240554) $BCf%D%-LsJ*(B (GLUE D 8 R 0.0 R 0.0 R 0.0 ) $B%+%C%3JD$8(B ) ) (TYPE D 1 (COMMENT $B!$!%(B (CHARSINTYPE D 1 $B!$(B $B!%(B ) ) (CHARWD R 0.481108) (CHARHT R 0.458221) (CHARDP R 0.458221) (COMMENT (GLUE D 0 R 0.481108 R 0.183283 R 0.481108) $B4A;z(B (GLUE D 1 R 0.0 R 0.0 R 0.0 ) $B!$!%(B (GLUE D 2 R 0.0 R 0.0 R 0.0 ) $B!"!#(B (GLUE D 3 R 0.481108 R 0.183283 R 0.481108) $B>.%+%J(B (GLUE D 4 R 0.0 R 0.0 R 0.0 ) $B!)!*(B (GLUE D 5 R 0.481108 R 0.183283 R 0.481108) $BA43QLsJ*(B (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) $B%+%C%33+$-(B (GLUE D 7 R 0.481108 R 0.183283 R 0.481108) $BCf%D%-LsJ*(B (GLUE D 8 R 0.0 R 0.0 R 0.0 ) $B%+%C%3JD$8(B ) ) (TYPE D 2 (COMMENT $B!"!#(B (CHARSINTYPE D 2 $B!"(B $B!#(B ) ) (CHARWD R 0.481108) (CHARHT R 0.458221) (CHARDP R 0.458221) (COMMENT (GLUE D 0 R 0.481108 R 0.183283 R 0.481108) $B4A;z(B (GLUE D 1 R 0.0 R 0.0 R 0.0 ) $B!$!%(B (GLUE D 2 R 0.0 R 0.0 R 0.0 ) $B!"!#(B (GLUE D 3 R 0.481108 R 0.183283 R 0.481108) $B>.%+%J(B (GLUE D 4 R 0.0 R 0.0 R 0.0 ) $B!)!*(B (GLUE D 5 R 0.481108 R 0.183283 R 0.481108) $BA43QLsJ*(B (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) $B%+%C%33+$-(B (GLUE D 7 R 0.481108 R 0.183283 R 0.481108) $BCf%D%-LsJ*(B (GLUE D 8 R 0.0 R 0.0 R 0.0 ) $B%+%C%3JD$8(B ) ) (TYPE D 3 (COMMENT $B>.$+$J(B (CHARSINTYPE D 3 $B!3(B $B!4(B $B!5(B $B!6(B $B!7(B $B!9(B $B$!(B $B$#(B $B$%(B $B$'(B $B$)(B $B$C(B $B$c(B $B$e(B $B$g(B $B$n(B $B%!(B $B%#(B $B%%(B $B%'(B $B%)(B $B%C(B $B%c(B $B%e(B $B%g(B $B%n(B $B%u(B $B%v(B ) ) (CHARWD R 0.747434) (CHARHT R 0.458221) (CHARDP R 0.458221) (COMMENT (GLUE D 0 R 0.107391 R 0.0 R 0.107391) $B4A;z(B (GLUE D 1 R 0.0 R 0.0 R 0.0 ) $B!$!%(B (GLUE D 2 R 0.0 R 0.0 R 0.0 ) $B!"!#(B (GLUE D 3 R 0.107391 R 0.0 R 0.107391) $B>.$+$J(B (GLUE D 5 R 0.0 R 0.0 R 0.0 ) $BA43QLsJ*(B (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) $B%+%C%33+$-(B (GLUE D 7 R 0.240554 R 0.183283 R 0.240554) $BCf%D%-LsJ*(B (GLUE D 8 R 0.0 R 0.0 R 0.0 ) $B%+%C%3JD$8(B ) ) (TYPE D 4 (COMMENT $B!*!)(B (CHARSINTYPE D 4 $B!)(B $B!*(B ) ) (CHARWD R 0.962216) (CHARHT R 0.458221) (CHARDP R 0.458221) (COMMENT (GLUE D 0 R 0.962216 R 0.0 R 0.481108) $B4A;z(B (GLUE D 1 R 0.0 R 0.0 R 0.0 ) $B!$!%(B (GLUE D 2 R 0.0 R 0.0 R 0.0 ) $B!"!#(B (GLUE D 3 R 0.962216 R 0.0 R 0.481108) $B>.$+$J(B (GLUE D 5 R 0.0 R 0.0 R 0.0 ) $BA43QLsJ*(B (GLUE D 6 R 0.962216 R 0.0 R 0.481108) $B%+%C%33+$-(B (GLUE D 7 R 0.962216 R 0.0 R 0.481108) $BCf%D%-LsJ*(B (GLUE D 8 R 0.0 R 0.0 R 0.0 ) $B%+%C%3JD$8(B ) ) (TYPE D 5 (COMMENT $BA43QLsJ*(B (CHARSINTYPE D 5 $B!=(B $B!D(B $B!E(B ) ) (CHARWD R 0.962216) (CHARHT R 0.458221) (CHARDP R 0.458221) (COMMENT (GLUE D 0 R 0.0 R 0.0 R 0.0 ) $B4A;z(B (GLUE D 1 R 0.0 R 0.0 R 0.0 ) $B!$!%(B (GLUE D 2 R 0.0 R 0.0 R 0.0 ) $B!"!#(B (GLUE D 3 R 0.0 R 0.0 R 0.0 ) $B>.$+$J(B (GLUE D 4 R 0.0 R 0.0 R 0.0 ) $B!*!)(B (GLUE D 5 R 0.0 R 0.0 R 0.0 ) $BA43QLsJ*(B (GLUE D 6 R 0.240554 R 0.183283 R 0.240554) $B%+%C%33+$-(B (GLUE D 7 R 0.240554 R 0.183283 R 0.240554) $BCf%D%-LsJ*(B (GLUE D 8 R 0.0 R 0.0 R 0.0 ) $B%+%C%3JD$8(B ) ) (TYPE D 6 (COMMENT $B%+%C%33+$-(B (CHARSINTYPE D 6 $B!F(B $B!H(B $B!J(B $B!L(B $B!N(B $B!P(B $B!R(B $B!T(B $B!V(B $B!X(B $B!Z(B ) ) (CHARWD R 0.481108) (CHARHT R 0.458221) (CHARDP R 0.458221) (COMMENT (GLUE D 0 R 0.0 R 0.0 R 0.0 ) $B4A;z(B (GLUE D 1 R 0.0 R 0.0 R 0.0 ) $B!$!%(B (GLUE D 2 R 0.0 R 0.0 R 0.0 ) $B!"!#(B (GLUE D 3 R 0.0 R 0.0 R 0.0 ) $B>.$+$J(B (GLUE D 4 R 0.0 R 0.0 R 0.0 ) $B!*!)(B (GLUE D 5 R 0.0 R 0.0 R 0.0 ) $BA43QLsJ*(B (GLUE D 6 R 0.0 R 0.0 R 0.0 ) $B%+%C%33+$-(B (GLUE D 7 R 0.240554 R 0.0 R 0.240554) $BCf%D%-LsJ*(B (GLUE D 8 R 0.0 R 0.0 R 0.0 ) $B%+%C%3JD$8(B ) ) (TYPE D 7 (COMMENT $BCf%D%-LsJ*(B (CHARSINTYPE D 7 $B!&(B $B!>(B $B!B(B $B!C(B ) ) (CHARWD R 0.481108) (CHARHT R 0.458221) (CHARDP R 0.458221) (COMMENT (GLUE D 0 R 0.240554 R 0.183283 R 0.240554) $B4A;z(B (GLUE D 1 R 0.240554 R 0.0 R 0.240554) $B!$!%(B (GLUE D 2 R 0.240554 R 0.0 R 0.240554) $B!"!#(B (GLUE D 3 R 0.240554 R 0.183283 R 0.240554) $B>.%+%J(B (GLUE D 4 R 0.240554 R 0.183283 R 0.240554) $B!)!*(B (GLUE D 5 R 0.240554 R 0.183283 R 0.240554) $BA43QLsJ*(B (GLUE D 6 R 0.240554 R 0.183283 R 0.240554) $B%+%C%33+$-(B (GLUE D 7 R 0.0 R 0.183283 R 0.0 ) $BCf%D%-LsJ*(B (GLUE D 8 R 0.240554 R 0.0 R 0.240554) $B%+%C%3JD$8(B ) ) (TYPE D 8 (COMMENT $B%+%C%3JD$8(B (CHARSINTYPE D 8 $B!G(B $B!I(B $B!K(B $B!M(B $B!O(B $B!Q(B $B!S(B $B!U(B $B!W(B $B!Y(B $B![(B ) ) (CHARWD R 0.481108) (CHARHT R 0.458221) (CHARDP R 0.458221) (COMMENT (GLUE D 0 R 0.481108 R 0.183283 R 0.481108) $B4A;z(B (GLUE D 1 R 0.0 R 0.0 R 0.0 ) $B!$!%(B (GLUE D 2 R 0.0 R 0.0 R 0.0 ) $B!"!#(B (GLUE D 3 R 0.481108 R 0.183283 R 0.481108) $B>.%+%J(B (GLUE D 4 R 0.0 R 0.0 R 0.0 ) $B!)!*(B (GLUE D 5 R 0.240554 R 0.183283 R 0.240554) $BA43QLsJ*(B (GLUE D 6 R 0.481108 R 0.183283 R 0.481108) $B%+%C%33+$-(B (GLUE D 7 R 0.240554 R 0.183283 R 0.240554) $BCf%D%-LsJ*(B (GLUE D 8 R 0.0 R 0.0 R 0.0 ) $B%+%C%3JD$8(B ) )
37.09009
117
0.433163
ed4ee03ef149c16aa0d08eaed86925d27b21587d
123
t
Perl
t/test-vars.t
marcusramberg/metacpan-api
a0c76b3e46bb8b9b455a660066870d27e826daae
[ "Artistic-1.0" ]
1
2018-12-30T10:13:16.000Z
2018-12-30T10:13:16.000Z
t/test-vars.t
marcusramberg/metacpan-api
a0c76b3e46bb8b9b455a660066870d27e826daae
[ "Artistic-1.0" ]
null
null
null
t/test-vars.t
marcusramberg/metacpan-api
a0c76b3e46bb8b9b455a660066870d27e826daae
[ "Artistic-1.0" ]
null
null
null
use strict; use warnings; use lib 't/lib'; use Test::More; use Test::Vars; vars_ok('MetaCPAN::Server'); done_testing();
11.181818
28
0.691057
ed444cde57bd1fa06b7591485cf12244dcb78b0f
1,687
pl
Perl
www/perl/perl-5.8.8/ext/Encode/t/unibench.pl
fcrwx/velocal
2c0b08aeb2cd6375ca99556b66a6a3271e17ee4e
[ "Apache-2.0" ]
null
null
null
www/perl/perl-5.8.8/ext/Encode/t/unibench.pl
fcrwx/velocal
2c0b08aeb2cd6375ca99556b66a6a3271e17ee4e
[ "Apache-2.0" ]
null
null
null
www/perl/perl-5.8.8/ext/Encode/t/unibench.pl
fcrwx/velocal
2c0b08aeb2cd6375ca99556b66a6a3271e17ee4e
[ "Apache-2.0" ]
null
null
null
#!./perl use strict; use Encode; use Benchmark qw(:all); my $Count = shift @ARGV; $Count ||= 16; my @sizes = @ARGV || (1, 4, 16); my %utf8_seed; for my $i (0x00..0xff){ my $c = chr($i); $utf8_seed{BMP} .= ($c =~ /^\p{IsPrint}/o) ? $c : " "; } utf8::upgrade($utf8_seed{BMP}); for my $i (0x00..0xff){ my $c = chr(0x10000+$i); $utf8_seed{HIGH} .= ($c =~ /^\p{IsPrint}/o) ? $c : " "; } utf8::upgrade($utf8_seed{HIGH}); my %S; for my $i (@sizes){ my $sz = 256 * $i; for my $cp (qw(BMP HIGH)){ $S{utf8}{$sz}{$cp} = $utf8_seed{$cp} x $i; $S{utf16}{$sz}{$cp} = encode('UTF-16BE', $S{utf8}{$sz}{$cp}); } } for my $i (@sizes){ my $sz = $i * 256; my $count = $Count * int(256/$i); for my $cp (qw(BMP HIGH)){ for my $op (qw(encode decode)){ my ($meth, $from, $to) = ($op eq 'encode') ? (\&encode, 'utf8', 'utf16') : (\&decode, 'utf16', 'utf8'); my $XS = sub { Encode::Unicode::set_transcoder("xs"); $meth->('UTF-16BE', $S{$from}{$sz}{$cp}) eq $S{$to}{$sz}{$cp} or die "$op,$from,$to,$sz,$cp"; }; my $modern = sub { Encode::Unicode::set_transcoder("modern"); $meth->('UTF-16BE', $S{$from}{$sz}{$cp}) eq $S{$to}{$sz}{$cp} or die "$op,$from,$to,$sz,$cp"; }; my $classic = sub { Encode::Unicode::set_transcoder("classic"); $meth->('UTF-16BE', $S{$from}{$sz}{$cp}) eq $S{$to}{$sz}{$cp} or die "$op,$from,$to,$sz,$cp"; }; print "---- $op length=$sz/range=$cp ----\n"; my $r = timethese($count, { "XS" => $XS, "Modern" => $modern, "Classic" => $classic, }, 'none', ); cmpthese($r); } } }
23.760563
62
0.472436
ed4bbde6e8368459d889efc9aee6450f5277fb2b
3,900
pm
Perl
lib/Test/Perl/Lint.pm
git-the-cpan/Perl-Lint
adc4e41477dee326dab30abc97bdab3945059e00
[ "Artistic-1.0" ]
null
null
null
lib/Test/Perl/Lint.pm
git-the-cpan/Perl-Lint
adc4e41477dee326dab30abc97bdab3945059e00
[ "Artistic-1.0" ]
null
null
null
lib/Test/Perl/Lint.pm
git-the-cpan/Perl-Lint
adc4e41477dee326dab30abc97bdab3945059e00
[ "Artistic-1.0" ]
null
null
null
package Test::Perl::Lint; use strict; use warnings; use utf8; use parent qw/Test::Builder::Module/; my @test_more_exports; BEGIN { @test_more_exports = (qw/done_testing/) } use Test::More import => \@test_more_exports; use Carp (); use Path::Tiny 0.068 qw/path/; use Perl::Lint; our $VERSION = "0.23"; our @EXPORT = (@test_more_exports, qw/all_policies_ok/); sub all_policies_ok { local $Test::Builder::Level = $Test::Builder::Level + 2; my ($args) = @_; my $targets = $args->{targets} // Carp::croak "Targets must not be empty"; my $ignore_files = $args->{ignore_files}; if (defined $targets && ref $targets ne 'ARRAY') { Carp::croak 'Target directories are must be an array reference'; } if (defined $ignore_files && ref $ignore_files ne 'ARRAY') { Carp::croak 'Ignore files are must be an array reference'; } my $linter = Perl::Lint->new({ ignore => $args->{ignore_policies}, filter => $args->{filter}, }); my @paths; for my $target (@$targets) { if (-d $target) { path($target)->visit(sub { my ($path) = @_; if ($path->is_file) { my $path_string = $path->stringify; if (!grep {$_ eq $path_string} @$ignore_files) { push @paths, $path_string; } } }, {recurse => 1}); } elsif (-f $target) { if (!grep {$_ eq $target} @$ignore_files) { push @paths, $target; } } else { Carp::carp "'$target' doesn't exist"; } } @paths = sort {$a cmp $b} @paths; for my $path_string (@paths) { my $violations = $linter->lint($path_string); if (scalar @$violations == 0) { Test::More::pass(__PACKAGE__ . ' for ' . $path_string); } else { my $package = __PACKAGE__; my $error_msg = <<"..."; $package found these violations in "$path_string": ... for my $violation (@$violations) { my $explanation = $violation->{explanation}; if (ref $explanation eq 'ARRAY') { $explanation = 'See page ' . join(', ', @$explanation) . ' of PBP'; } $error_msg .= <<"..."; $violation->{description} at line $violation->{line}. $explanation. ... } Test::More::ok(0, "$package for $path_string") or Test::More::diag($error_msg); } } return; } 1; __END__ =encoding utf-8 =head1 NAME Test::Perl::Lint - A testing module to analyze your Perl code with L<Perl::Lint> =head1 SYNOPSIS use Test::Perl::Lint; all_policies_ok({ targets => ['lib', 'script/bar.pl'], ignore_files => ['lib/Foo/Buz.pm', 'lib/Foo/Qux.pm'], filter => ['LikePerlCritic::Stern'], ignore_policies => ['Modules::RequireVersionVar'], }); =head1 DESCRIPTION A testing module to analyze your Perl code with L<Perl::Lint>. =head1 FUNCTIONS =over 4 =item * C<all_policies_ok($args:HASHREF)> This function tests your codes whether they conform to the policies. C<$args> accepts following fields; =over 8 =item targets (ARRAYREF) THIS FIELD IS ESSENTIAL. Specify targets to test. If you specify directory as an item, this function checks the all of files which are contained in that directory. =item ignore_files (ARRAYREF) Specify files to exclude from testing target. =item filter (ARRAYREF) Apply Perl::Lint filters. =item ignore_policies (ARRAYREF) Specify policies to ignore violations. =back =back =head1 SEE ALSO L<Perl::Lint> =head1 LICENSE Copyright (C) moznion. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 AUTHOR moznion E<lt>moznion@gmail.comE<gt> =cut
23.076923
91
0.581538
73fb646dfa93495e1b04093250cc18cb07759b9b
6,499
pl
Perl
openresty-win32-build/thirdparty/perl5-5.29.6/regen/regcharclass_multi_char_folds.pl
nneesshh/openresty-win32-build
bfbb9d7526020eda1788a0ed24f2be3c8be5c1c3
[ "MIT" ]
2
2018-06-15T08:32:44.000Z
2019-01-12T03:20:41.000Z
openresty-win32-build/thirdparty/perl5-5.29.6/regen/regcharclass_multi_char_folds.pl
nneesshh/openresty-win32-build
bfbb9d7526020eda1788a0ed24f2be3c8be5c1c3
[ "MIT" ]
null
null
null
openresty-win32-build/thirdparty/perl5-5.29.6/regen/regcharclass_multi_char_folds.pl
nneesshh/openresty-win32-build
bfbb9d7526020eda1788a0ed24f2be3c8be5c1c3
[ "MIT" ]
null
null
null
package regcharclass_multi_char_folds; use 5.015; use strict; use warnings; use Unicode::UCD "prop_invmap"; # This returns an array of strings of the form # "\x{foo}\x{bar}\x{baz}" # of the sequences of code points that are multi-character folds in the # current Unicode version. If the parameter is 1, all such folds are # returned. If the parameters is 0, only the ones containing exclusively # Latin1 characters are returned. In the latter case all combinations of # Latin1 characters that can fold to the base one are returned. Thus for # 'ss', it would return in addition, 'Ss', 'sS', and 'SS'. This is because # this code is designed to help regcomp.c, and EXACTFish regnodes. For # non-UTF-8 patterns, the strings are not folded, so we need to check for the # upper and lower case versions. For UTF-8 patterns, the strings are folded, # except in EXACTFL nodes) so we only need to worry about the fold version. # All folded-to characters in non-UTF-8 (Latin1) are members of fold-pairs, # at least within Latin1, 'k', and 'K', for example. So there aren't # complications with dealing with unfolded input. That's not true of UTF-8 # patterns, where things can get tricky. Thus for EXACTFL nodes where things # aren't all folded, code has to be written specially to handle this, instead # of the macros here being extended to try to handle it. # # There are no non-ASCII Latin1 multi-char folds currently, and none likely to # be ever added. Thus the output is the same as if it were just asking for # ASCII characters, not full Latin1. Hence, it is suitable for generating # things that match EXACTFA. It does check for and croak if there ever were # to be an upper Latin1 range multi-character fold. # # This is designed for input to regen/regcharlass.pl. sub gen_combinations ($;) { # Generate all combinations for the first parameter which is an array of # arrays. my ($fold_ref, $string, $i) = @_; $string = "" unless $string; $i = 0 unless $i; my @ret; # Look at each element in this level's array. foreach my $j (0 .. @{$fold_ref->[$i]} - 1) { # Append its representation to what we have currently my $new_string = sprintf "$string\\x{%X}", $fold_ref->[$i][$j]; if ($i >= @$fold_ref - 1) { # Final level: just return it push @ret, "\"$new_string\""; } else { # Generate the combinations for the next level with this one's push @ret, &gen_combinations($fold_ref, $new_string, $i + 1); } } return @ret; } sub multi_char_folds ($) { my $all_folds = shift; # The single parameter is true if wants all # multi-char folds; false if just the ones that # are all ascii return () if pack("C*", split /\./, Unicode::UCD::UnicodeVersion()) lt v3.0.1; my ($cp_ref, $folds_ref, $format) = prop_invmap("Case_Folding"); die "Could not find inversion map for Case_Folding" unless defined $format; die "Incorrect format '$format' for Case_Folding inversion map" unless $format eq 'al'; my @folds; for my $i (0 .. @$folds_ref - 1) { next unless ref $folds_ref->[$i]; # Skip single-char folds # The code in regcomp.c currently assumes that no multi-char fold # folds to the upper Latin1 range. It's not a big deal to add; we # just have to forbid such a fold in EXACTFL nodes, like we do already # for ascii chars in EXACTFA (and EXACTFL) nodes. But I (khw) doubt # that there will ever be such a fold created by Unicode, so the code # isn't there to occupy space and time; instead there is this check. die sprintf("regcomp.c can't cope with a latin1 multi-char fold (found in the fold of 0x%X", $cp_ref->[$i]) if grep { $_ < 256 && chr($_) !~ /[[:ascii:]]/ } @{$folds_ref->[$i]}; # Create a line that looks like "\x{foo}\x{bar}\x{baz}" of the code # points that make up the fold. my $fold = join "", map { sprintf "\\x{%X}", $_ } @{$folds_ref->[$i]}; $fold = "\"$fold\""; # Skip if something else already has this fold next if grep { $_ eq $fold } @folds; if ($all_folds) { push @folds, $fold } # Skip if wants only all-ascii folds, and there is a non-ascii elsif (! grep { chr($_) =~ /[^[:ascii:]]/ } @{$folds_ref->[$i]}) { # If the fold is to a cased letter, replace the entry with an # array which also includes its upper case. my $this_fold_ref = $folds_ref->[$i]; for my $j (0 .. @$this_fold_ref - 1) { my $this_ord = $this_fold_ref->[$j]; if (chr($this_ord) =~ /\p{Cased}/) { my $uc = ord(uc(chr($this_ord))); undef $this_fold_ref->[$j]; @{$this_fold_ref->[$j]} = ( $this_ord, $uc); } } # Then generate all combinations of upper/lower case of the fold. push @folds, gen_combinations($this_fold_ref); } } # \x17F is the small LONG S, which folds to 's'. Both Capital and small # LATIN SHARP S fold to 'ss'. Therefore, they should also match two 17F's # in a row under regex /i matching. But under /iaa regex matching, all # three folds to 's' are prohibited, but the sharp S's should still match # two 17F's. This prohibition causes our regular regex algorithm that # would ordinarily allow this match to fail. This is the only instance in # all Unicode of this kind of issue. By adding a special case here, we # can use the regular algorithm (with some other changes elsewhere as # well). # # It would be possible to re-write the above code to automatically detect # and handle this case, and any others that might eventually get added to # the Unicode standard, but I (khw) don't think it's worth it. I believe # that it's extremely unlikely that more folds to ASCII characters are # going to be added, and if I'm wrong, fold_grind.t has the intelligence # to detect them, and test that they work, at which point another special # case could be added here if necessary. # # No combinations of this with 's' need be added, as any of these # containing 's' are prohibited under /iaa. push @folds, '"\x{17F}\x{17F}"' if $all_folds; return @folds; } 1
45.447552
185
0.630712
73d5a7cc212da26e4e34e0896f368e821a49cfee
2,417
pm
Perl
t/lib/SongsToTheSiren/Test/Forms/Validators/UniqueUserEmail.pm
djstevenson/songs-to-the-siren
1387f2dcb5a90206723746e514e2b8e10dedc18f
[ "MIT" ]
null
null
null
t/lib/SongsToTheSiren/Test/Forms/Validators/UniqueUserEmail.pm
djstevenson/songs-to-the-siren
1387f2dcb5a90206723746e514e2b8e10dedc18f
[ "MIT" ]
78
2020-02-16T01:35:12.000Z
2021-01-26T18:40:30.000Z
t/lib/SongsToTheSiren/Test/Forms/Validators/UniqueUserEmail.pm
djstevenson/songs-to-the-siren
1387f2dcb5a90206723746e514e2b8e10dedc18f
[ "MIT" ]
null
null
null
package SongsToTheSiren::Test::Forms::Validators::UniqueUserEmail; use utf8; use Moose; use namespace::autoclean; use utf8; use Test::More; use Test::Exception; extends 'SongsToTheSiren::Test::Base'; with 'SongsToTheSiren::Test::Role'; has '+user_base' => (default => 'form_val_6'); use SongsToTheSiren::Form::Field::Validator::UniqueUserEmail; sub run { my $self = shift; # Two registered users, one non-registered my $user_data1 = $self->get_user_data; my $user_obj1 = $self->create_user($user_data1); my $user_data2 = $self->get_user_data; my $user_obj2 = $self->create_user($user_data2); my $user_data3 = $self->get_user_data; my $email1 = $user_data1->{email}; my $email2 = $user_data2->{email}; my $email3 = $user_data3->{email}; my $tests = [ { data => $email1, expected => 'Email already registered' }, { data => $email2, expected => 'Email already registered' }, { data => $email3, expected => undef, }, { data => uc($email1), expected => 'Email already registered' }, { data => uc($email2), expected => 'Email already registered' }, { data => uc($email3), expected => undef, }, { data => lc($email1), expected => 'Email already registered' }, { data => lc($email2), expected => 'Email already registered' }, { data => lc($email3), expected => undef, }, { data => ucfirst($email1), expected => 'Email already registered' }, { data => ucfirst($email2), expected => 'Email already registered' }, { data => ucfirst($email3), expected => undef, }, { data => 'x' . $email1, expected => undef, }, { data => 'x' . $email2, expected => undef, }, { data => 'x' . $email3, expected => undef, }, ]; my $validator = SongsToTheSiren::Form::Field::Validator::UniqueUserEmail->new(schema => $self->schema); foreach my $test (@$tests){ my $actual = $validator->validate($test->{data}); my $expected = $test->{expected}; if (defined $expected) { is($actual, $expected, 'UniqueUserEmail on "' . ($test->{data} // 'undef') . '" should return "' . $expected . '"'); } else { ok(!defined($actual), 'UniqueUserEmail on "' . ($test->{data} // 'undef') . '" should return undef'); } } done_testing; } __PACKAGE__->meta->make_immutable; 1;
36.074627
119
0.58254
73dcf5410474f9548bd9f3c53aeb0ad0f64dad29
791
pl
Perl
openresty-win32-build/thirdparty/perl5-5.29.6/lib/unicore/lib/Sc/Zinh.pl
nneesshh/openresty-win32-build
bfbb9d7526020eda1788a0ed24f2be3c8be5c1c3
[ "MIT" ]
2
2018-06-15T08:32:44.000Z
2019-01-12T03:20:41.000Z
openresty-win32-build/thirdparty/perl5-5.29.6/lib/unicore/lib/Sc/Zinh.pl
nneesshh/openresty-win32-build
bfbb9d7526020eda1788a0ed24f2be3c8be5c1c3
[ "MIT" ]
null
null
null
openresty-win32-build/thirdparty/perl5-5.29.6/lib/unicore/lib/Sc/Zinh.pl
nneesshh/openresty-win32-build
bfbb9d7526020eda1788a0ed24f2be3c8be5c1c3
[ "MIT" ]
null
null
null
# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! # This file is machine-generated by mktables from the Unicode # database, Version 11.0.0. Any changes made here will be lost! # !!!!!!! INTERNAL PERL USE ONLY !!!!!!! # This file is for internal use by core Perl only. The format and even the # name or existence of this file are subject to change without notice. Don't # use it directly. Use Unicode::UCD to access the Unicode character data # base. return <<'END'; V56 768 880 1157 1159 1611 1622 1648 1649 2385 2387 6832 6847 7376 7379 7380 7393 7394 7401 7405 7406 7412 7413 7416 7418 7616 7674 7675 7680 8204 8206 8400 8433 12330 12334 12441 12443 65024 65040 65056 65070 66045 66046 66272 66273 70459 70460 119143 119146 119163 119171 119173 119180 119210 119214 917760 918000 END
11.140845
77
0.735777
ed23f59b4feb20ff3ba4f4ebb3f818a17511a922
38,955
pm
Perl
perl/vendor/lib/Crypt/PK/ECC.pm
luiscarlosg27/xampp
c295dbdd435c9c62fbd4cc6fc42097bea7a900a0
[ "Apache-2.0" ]
2
2021-07-24T12:46:49.000Z
2021-08-02T08:37:53.000Z
perl/vendor/lib/Crypt/PK/ECC.pm
luiscarlosg27/xampp
c295dbdd435c9c62fbd4cc6fc42097bea7a900a0
[ "Apache-2.0" ]
3
2021-01-27T10:09:28.000Z
2021-05-11T21:20:12.000Z
perl/vendor/lib/Crypt/PK/ECC.pm
luiscarlosg27/xampp
c295dbdd435c9c62fbd4cc6fc42097bea7a900a0
[ "Apache-2.0" ]
null
null
null
package Crypt::PK::ECC; use strict; use warnings; our $VERSION = '0.068'; require Exporter; our @ISA = qw(Exporter); ### use Exporter 5.57 'import'; our %EXPORT_TAGS = ( all => [qw( ecc_encrypt ecc_decrypt ecc_sign_message ecc_verify_message ecc_sign_hash ecc_verify_hash ecc_shared_secret )] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw(); use Carp; $Carp::Internal{(__PACKAGE__)}++; use CryptX; use Crypt::Digest qw(digest_data digest_data_b64u); use Crypt::Misc qw(read_rawfile encode_b64u decode_b64u encode_b64 decode_b64 pem_to_der der_to_pem); use Crypt::PK; our %curve = ( # must be "our" as we use it from XS code # extra curves not recognized by libtomcrypt 'wap-wsg-idm-ecid-wtls8' => { prime => "FFFFFFFFFFFFFFFFFFFFFFFFFDE7", A => "0000000000000000000000000000", B => "0000000000000000000000000003", order => "0100000000000001ECEA551AD837E9", Gx => "0000000000000000000000000001", Gy => "0000000000000000000000000002", cofactor => 1, oid => '2.23.43.1.4.8', }, 'wap-wsg-idm-ecid-wtls9' => { prime => "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC808F", A => "0000000000000000000000000000000000000000", B => "0000000000000000000000000000000000000003", order => "0100000000000000000001CDC98AE0E2DE574ABF33", Gx => "0000000000000000000000000000000000000001", Gy => "0000000000000000000000000000000000000002", cofactor => 1, oid => '2.23.43.1.4.9', }, # some unusual openssl names "wap-wsg-idm-ecid-wtls6" => 'secp112r1', "wap-wsg-idm-ecid-wtls7" => 'secp160r2', "wap-wsg-idm-ecid-wtls12" => 'secp224r1', # extra aliases 'P-256K' => 'secp256k1', ); our %curve_oid2name = ( # must be "our" as we use it from XS code # the following are used to derive curve_name from OID in key2hash() "1.2.840.10045.3.1.1" => "secp192r1", "1.2.840.10045.3.1.2" => "prime192v2", "1.2.840.10045.3.1.3" => "prime192v3", "1.2.840.10045.3.1.4" => "prime239v1", "1.2.840.10045.3.1.5" => "prime239v2", "1.2.840.10045.3.1.6" => "prime239v3", "1.2.840.10045.3.1.7" => "secp256r1", "1.3.132.0.6" => "secp112r1", "1.3.132.0.7" => "secp112r2", "1.3.132.0.8" => "secp160r1", "1.3.132.0.9" => "secp160k1", "1.3.132.0.10" => "secp256k1", "1.3.132.0.28" => "secp128r1", "1.3.132.0.29" => "secp128r2", "1.3.132.0.30" => "secp160r2", "1.3.132.0.31" => "secp192k1", "1.3.132.0.32" => "secp224k1", "1.3.132.0.33" => "secp224r1", "1.3.132.0.34" => "secp384r1", "1.3.132.0.35" => "secp521r1", "1.3.36.3.3.2.8.1.1.1" => "brainpoolp160r1", "1.3.36.3.3.2.8.1.1.2" => "brainpoolp160t1", "1.3.36.3.3.2.8.1.1.3" => "brainpoolp192r1", "1.3.36.3.3.2.8.1.1.4" => "brainpoolp192t1", "1.3.36.3.3.2.8.1.1.5" => "brainpoolp224r1", "1.3.36.3.3.2.8.1.1.6" => "brainpoolp224t1", "1.3.36.3.3.2.8.1.1.7" => "brainpoolp256r1", "1.3.36.3.3.2.8.1.1.8" => "brainpoolp256t1", "1.3.36.3.3.2.8.1.1.9" => "brainpoolp320r1", "1.3.36.3.3.2.8.1.1.10" => "brainpoolp320t1", "1.3.36.3.3.2.8.1.1.11" => "brainpoolp384r1", "1.3.36.3.3.2.8.1.1.12" => "brainpoolp384t1", "1.3.36.3.3.2.8.1.1.13" => "brainpoolp512r1", "1.3.36.3.3.2.8.1.1.14" => "brainpoolp512t1", ); my %curve2jwk = ( # necessary for conversion of curve_name_or_OID >> P-NNN '1.2.840.10045.3.1.1' => 'P-192', # secp192r1 '1.3.132.0.33' => 'P-224', # secp224r1 '1.2.840.10045.3.1.7' => 'P-256', # secp256r1 '1.3.132.0.10' => 'P-256K',# secp256k1 '1.3.132.0.34' => 'P-384', # secp384r1 '1.3.132.0.35' => 'P-521', # secp521r1 'nistp192' => 'P-192', 'nistp224' => 'P-224', 'nistp256' => 'P-256', 'nistp384' => 'P-384', 'nistp521' => 'P-521', 'prime192v1' => 'P-192', 'prime256v1' => 'P-256', 'secp192r1' => 'P-192', 'secp224r1' => 'P-224', 'secp256r1' => 'P-256', 'secp256k1' => 'P-256K', 'secp384r1' => 'P-384', 'secp521r1' => 'P-521', ); sub _import_hex { my ($self, $x, $y, $k, $crv) = @_; croak "FATAL: no curve" if !$crv; if (defined $k && length($k) > 0) { croak "FATAL: invalid length (k)" if length($k) % 2; return $self->import_key_raw(pack("H*", $k), $crv); } elsif (defined $x && defined $y) { croak "FATAL: invalid length (x)" if length($x) % 2; croak "FATAL: invalid length (y)" if length($y) % 2; croak "FATAL: invalid length (x,y)" if length($y) != length($x); my $pub_hex = "04" . $x . $y; return $self->import_key_raw(pack("H*", $pub_hex), $crv); } } sub new { my $self = shift->_new(); return @_ > 0 ? $self->import_key(@_) : $self; } sub export_key_pem { my ($self, $type, $password, $cipher) = @_; local $SIG{__DIE__} = \&CryptX::_croak; my $key = $self->export_key_der($type||''); return unless $key; return der_to_pem($key, "EC PRIVATE KEY", $password, $cipher) if substr($type, 0, 7) eq 'private'; return der_to_pem($key, "PUBLIC KEY") if substr($type,0, 6) eq 'public'; } sub export_key_jwk { my ($self, $type, $wanthash) = @_; local $SIG{__DIE__} = \&CryptX::_croak; my $kh = $self->key2hash; $kh->{curve_oid} = '' if !defined $kh->{curve_oid}; $kh->{curve_name} = '' if !defined $kh->{curve_name}; my $curve_jwt = $curve2jwk{$kh->{curve_oid}} || $curve2jwk{lc $kh->{curve_name}} || $kh->{curve_name}; if ($type && $type eq 'private') { return unless $kh->{pub_x} && $kh->{pub_y} && $kh->{k}; for (qw/pub_x pub_y k/) { $kh->{$_} = "0$kh->{$_}" if length($kh->{$_}) % 2; } # NOTE: x + y are not necessary in privkey # but they are used in https://tools.ietf.org/html/rfc7517#appendix-A.2 my $hash = { kty => "EC", crv => $curve_jwt, x => encode_b64u(pack("H*", $kh->{pub_x})), y => encode_b64u(pack("H*", $kh->{pub_y})), d => encode_b64u(pack("H*", $kh->{k})), }; return $wanthash ? $hash : CryptX::_encode_json($hash); } elsif ($type && $type eq 'public') { return unless $kh->{pub_x} && $kh->{pub_y}; for (qw/pub_x pub_y/) { $kh->{$_} = "0$kh->{$_}" if length($kh->{$_}) % 2; } my $hash = { kty => "EC", crv => $curve_jwt, x => encode_b64u(pack("H*", $kh->{pub_x})), y => encode_b64u(pack("H*", $kh->{pub_y})), }; return $wanthash ? $hash : CryptX::_encode_json($hash); } } sub export_key_jwk_thumbprint { my ($self, $hash_name) = @_; local $SIG{__DIE__} = \&CryptX::_croak; $hash_name ||= 'SHA256'; my $h = $self->export_key_jwk('public', 1); my $json = CryptX::_encode_json({crv=>$h->{crv}, kty=>$h->{kty}, x=>$h->{x}, y=>$h->{y}}); return digest_data_b64u($hash_name, $json); } sub import_key { my ($self, $key, $password) = @_; local $SIG{__DIE__} = \&CryptX::_croak; croak "FATAL: undefined key" unless $key; # special case if (ref($key) eq 'HASH') { if (($key->{pub_x} && $key->{pub_y}) || $key->{k}) { # hash exported via key2hash my $curve_name = $key->{curve_name} || $key->{curve_oid}; return $self->_import_hex($key->{pub_x}, $key->{pub_y}, $key->{k}, $curve_name); } if ($key->{crv} && $key->{kty} && $key->{kty} eq "EC" && ($key->{d} || ($key->{x} && $key->{y}))) { # hash with items corresponding to JSON Web Key (JWK) $key = {%$key}; # make a copy as we will modify it for (qw/x y d/) { $key->{$_} = eval { unpack("H*", decode_b64u($key->{$_})) } if exists $key->{$_}; } # names P-192 P-224 P-256 P-384 P-521 are recognized by libtomcrypt return $self->_import_hex($key->{x}, $key->{y}, $key->{d}, $key->{crv}); } croak "FATAL: unexpected ECC key hash"; } my $data; if (ref($key) eq 'SCALAR') { $data = $$key; } elsif (-f $key) { $data = read_rawfile($key); } else { croak "FATAL: non-existing file '$key'"; } croak "FATAL: invalid key data" unless $data; if ($data =~ /-----BEGIN (EC PRIVATE|EC PUBLIC|PUBLIC) KEY-----(.*?)-----END/sg) { $data = pem_to_der($data, $password); my $rv = eval { $self->_import($data) } || eval { $self->_import_old($data) }; return $rv if $rv; } elsif ($data =~ /-----BEGIN PRIVATE KEY-----(.*?)-----END/sg) { $data = pem_to_der($data, $password); return $self->_import_pkcs8($data, $password); } elsif ($data =~ /-----BEGIN ENCRYPTED PRIVATE KEY-----(.*?)-----END/sg) { $data = pem_to_der($data, $password); return $self->_import_pkcs8($data, $password); } elsif ($data =~ /^\s*(\{.*?\})\s*$/s) { # JSON Web Key (JWK) - http://tools.ietf.org/html/draft-ietf-jose-json-web-key my $json = "$1"; my $h = CryptX::_decode_json($json); if ($h && $h->{kty} eq "EC") { for (qw/x y d/) { $h->{$_} = eval { unpack("H*", decode_b64u($h->{$_})) } if exists $h->{$_}; } # names P-192 P-224 P-256 P-384 P-521 are recognized by libtomcrypt return $self->_import_hex($h->{x}, $h->{y}, $h->{d}, $h->{crv}); } } elsif ($data =~ /-----BEGIN CERTIFICATE-----(.*?)-----END CERTIFICATE-----/sg) { $data = pem_to_der($data); return $self->_import_x509($data); } elsif ($data =~ /---- BEGIN SSH2 PUBLIC KEY ----(.*?)---- END SSH2 PUBLIC KEY ----/sg) { $data = pem_to_der($data); my ($typ, $skip, $pubkey) = Crypt::PK::_ssh_parse($data); return $self->import_key_raw($pubkey, "$2") if $pubkey && $typ =~ /^ecdsa-(.+?)-(.*)$/; } elsif ($data =~ /(ecdsa-\S+)\s+(\S+)/) { $data = decode_b64("$2"); my ($typ, $skip, $pubkey) = Crypt::PK::_ssh_parse($data); return $self->import_key_raw($pubkey, "$2") if $pubkey && $typ =~ /^ecdsa-(.+?)-(.*)$/; } else { my $rv = eval { $self->_import($data) } || eval { $self->_import_old($data) } || eval { $self->_import_pkcs8($data, $password) } || eval { $self->_import_x509($data) }; return $rv if $rv; } croak "FATAL: invalid or unsupported EC key format"; } sub curve2hash { my $self = shift; my $kh = $self->key2hash; return { prime => $kh->{curve_prime}, A => $kh->{curve_A}, B => $kh->{curve_B}, Gx => $kh->{curve_Gx}, Gy => $kh->{curve_Gy}, cofactor => $kh->{curve_cofactor}, order => $kh->{curve_order}, oid => $kh->{curve_oid}, }; } ### FUNCTIONS sub ecc_encrypt { my $key = shift; local $SIG{__DIE__} = \&CryptX::_croak; $key = __PACKAGE__->new($key) unless ref $key; carp "FATAL: invalid 'key' param" unless ref($key) eq __PACKAGE__; return $key->encrypt(@_); } sub ecc_decrypt { my $key = shift; local $SIG{__DIE__} = \&CryptX::_croak; $key = __PACKAGE__->new($key) unless ref $key; carp "FATAL: invalid 'key' param" unless ref($key) eq __PACKAGE__; return $key->decrypt(@_); } sub ecc_sign_message { my $key = shift; local $SIG{__DIE__} = \&CryptX::_croak; $key = __PACKAGE__->new($key) unless ref $key; carp "FATAL: invalid 'key' param" unless ref($key) eq __PACKAGE__; return $key->sign_message(@_); } sub ecc_verify_message { my $key = shift; local $SIG{__DIE__} = \&CryptX::_croak; $key = __PACKAGE__->new($key) unless ref $key; carp "FATAL: invalid 'key' param" unless ref($key) eq __PACKAGE__; return $key->verify_message(@_); } sub ecc_sign_hash { my $key = shift; local $SIG{__DIE__} = \&CryptX::_croak; $key = __PACKAGE__->new($key) unless ref $key; carp "FATAL: invalid 'key' param" unless ref($key) eq __PACKAGE__; return $key->sign_hash(@_); } sub ecc_verify_hash { my $key = shift; local $SIG{__DIE__} = \&CryptX::_croak; $key = __PACKAGE__->new($key) unless ref $key; carp "FATAL: invalid 'key' param" unless ref($key) eq __PACKAGE__; return $key->verify_hash(@_); } sub ecc_shared_secret { my ($privkey, $pubkey) = @_; local $SIG{__DIE__} = \&CryptX::_croak; $privkey = __PACKAGE__->new($privkey) unless ref $privkey; $pubkey = __PACKAGE__->new($pubkey) unless ref $pubkey; carp "FATAL: invalid 'privkey' param" unless ref($privkey) eq __PACKAGE__ && $privkey->is_private; carp "FATAL: invalid 'pubkey' param" unless ref($pubkey) eq __PACKAGE__; return $privkey->shared_secret($pubkey); } sub CLONE_SKIP { 1 } # prevent cloning 1; =pod =head1 NAME Crypt::PK::ECC - Public key cryptography based on EC =head1 SYNOPSIS ### OO interface #Encryption: Alice my $pub = Crypt::PK::ECC->new('Bob_pub_ecc1.der'); my $ct = $pub->encrypt("secret message"); # #Encryption: Bob (received ciphertext $ct) my $priv = Crypt::PK::ECC->new('Bob_priv_ecc1.der'); my $pt = $priv->decrypt($ct); #Signature: Alice my $priv = Crypt::PK::ECC->new('Alice_priv_ecc1.der'); my $sig = $priv->sign_message($message); # #Signature: Bob (received $message + $sig) my $pub = Crypt::PK::ECC->new('Alice_pub_ecc1.der'); $pub->verify_message($sig, $message) or die "ERROR"; #Shared secret my $priv = Crypt::PK::ECC->new('Alice_priv_ecc1.der'); my $pub = Crypt::PK::ECC->new('Bob_pub_ecc1.der'); my $shared_secret = $priv->shared_secret($pub); #Key generation my $pk = Crypt::PK::ECC->new(); $pk->generate_key('secp160r1'); my $private_der = $pk->export_key_der('private'); my $public_der = $pk->export_key_der('public'); my $private_pem = $pk->export_key_pem('private'); my $public_pem = $pk->export_key_pem('public'); my $public_raw = $pk->export_key_raw('public'); ### Functional interface #Encryption: Alice my $ct = ecc_encrypt('Bob_pub_ecc1.der', "secret message"); #Encryption: Bob (received ciphertext $ct) my $pt = ecc_decrypt('Bob_priv_ecc1.der', $ct); #Signature: Alice my $sig = ecc_sign_message('Alice_priv_ecc1.der', $message); #Signature: Bob (received $message + $sig) ecc_verify_message('Alice_pub_ecc1.der', $sig, $message) or die "ERROR"; #Shared secret my $shared_secret = ecc_shared_secret('Alice_priv_ecc1.der', 'Bob_pub_ecc1.der'); =head1 DESCRIPTION The module provides a set of core ECC functions as well as implementation of ECDSA and ECDH. Supports elliptic curves C<y^2 = x^3 + a*x + b> over prime fields C<Fp = Z/pZ> (binary fields not supported). =head1 METHODS =head2 new my $pk = Crypt::PK::ECC->new(); #or my $pk = Crypt::PK::ECC->new($priv_or_pub_key_filename); #or my $pk = Crypt::PK::ECC->new(\$buffer_containing_priv_or_pub_key); Support for password protected PEM keys my $pk = Crypt::PK::ECC->new($priv_pem_key_filename, $password); #or my $pk = Crypt::PK::ECC->new(\$buffer_containing_priv_pem_key, $password); =head2 generate_key Uses Yarrow-based cryptographically strong random number generator seeded with random data taken from C</dev/random> (UNIX) or C<CryptGenRandom> (Win32). $pk->generate_key($curve_name); #or $pk->generate_key($hashref_with_curve_params); The following predefined C<$curve_name> values are supported: # curves from http://www.ecc-brainpool.org/download/Domain-parameters.pdf 'brainpoolp160r1' 'brainpoolp192r1' 'brainpoolp224r1' 'brainpoolp256r1' 'brainpoolp320r1' 'brainpoolp384r1' 'brainpoolp512r1' # curves from http://www.secg.org/collateral/sec2_final.pdf 'secp112r1' 'secp112r2' 'secp128r1' 'secp128r2' 'secp160k1' 'secp160r1' 'secp160r2' 'secp192k1' 'secp192r1' ... same as nistp192, prime192v1 'secp224k1' 'secp224r1' ... same as nistp224 'secp256k1' ... used by Bitcoin 'secp256r1' ... same as nistp256, prime256v1 'secp384r1' ... same as nistp384 'secp521r1' ... same as nistp521 #curves from http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf 'nistp192' ... same as secp192r1, prime192v1 'nistp224' ... same as secp224r1 'nistp256' ... same as secp256r1, prime256v1 'nistp384' ... same as secp384r1 'nistp521' ... same as secp521r1 # curves from ANS X9.62 'prime192v1' ... same as nistp192, secp192r1 'prime192v2' 'prime192v3' 'prime239v1' 'prime239v2' 'prime239v3' 'prime256v1' ... same as nistp256, secp256r1 Using custom curve parameters: $pk->generate_key({ prime => 'FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFF', A => 'FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFC', B => '22123DC2395A05CAA7423DAECCC94760A7D462256BD56916', Gx => '7D29778100C65A1DA1783716588DCE2B8B4AEE8E228F1896', Gy => '38A90F22637337334B49DCB66A6DC8F9978ACA7648A943B0', order => 'FFFFFFFFFFFFFFFFFFFFFFFF7A62D031C83F4294F640EC13', cofactor => 1 }); See L<http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf>, L<http://www.secg.org/collateral/sec2_final.pdf>, L<http://www.ecc-brainpool.org/download/Domain-parameters.pdf> =head2 import_key Loads private or public key in DER or PEM format. $pk->import_key($filename); #or $pk->import_key(\$buffer_containing_key); Support for password protected PEM keys: $pk->import_key($filename, $password); #or $pk->import_key(\$buffer_containing_key, $password); Loading private or public keys form perl hash: $pk->import_key($hashref); # the $hashref is either a key exported via key2hash $pk->import_key({ curve_A => "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFC", curve_B => "1C97BEFC54BD7A8B65ACF89F81D4D4ADC565FA45", curve_bits => 160, curve_bytes => 20, curve_cofactor => 1, curve_Gx => "4A96B5688EF573284664698968C38BB913CBFC82", curve_Gy => "23A628553168947D59DCC912042351377AC5FB32", curve_order => "0100000000000000000001F4C8F927AED3CA752257", curve_prime => "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFF", k => "B0EE84A749FE95DF997E33B8F333E12101E824C3", pub_x => "5AE1ACE3ED0AEA9707CE5C0BCE014F6A2F15023A", pub_y => "895D57E992D0A15F88D6680B27B701F615FCDC0F", }); # or with the curve defined just by name $pk->import_key({ curve_name => "secp160r1", k => "B0EE84A749FE95DF997E33B8F333E12101E824C3", pub_x => "5AE1ACE3ED0AEA9707CE5C0BCE014F6A2F15023A", pub_y => "895D57E992D0A15F88D6680B27B701F615FCDC0F", }); # or a hash with items corresponding to JWK (JSON Web Key) $pk->import_key({ kty => "EC", crv => "P-256", x => "MKBCTNIcKUSDii11ySs3526iDZ8AiTo7Tu6KPAqv7D4", y => "4Etl6SRW2YiLUrN5vfvVHuhp7x8PxltmWWlbbM4IFyM", d => "870MB6gfuTJ4HtUnUvYMyJpr5eUZNP4Bk43bVdj3eAE", }); Supported key formats: # all formats can be loaded from a file my $pk = Crypt::PK::ECC->new($filename); # or from a buffer containing the key my $pk = Crypt::PK::ECC->new(\$buffer_with_key); =over =item * EC private keys with with all curve parameters -----BEGIN EC PRIVATE KEY----- MIIB+gIBAQQwCKEAcA6cIt6CGfyLKm57LyXWv2PgTjydrHSbvhDJTOl+7bzUW8DS rgSdtSPONPq1oIIBWzCCAVcCAQEwPAYHKoZIzj0BAQIxAP////////////////// ///////////////////////+/////wAAAAAAAAAA/////zB7BDD///////////// /////////////////////////////v////8AAAAAAAAAAP////wEMLMxL6fiPufk mI4Fa+P4LRkYHZxu/oFBEgMUCI9QE4daxlY5jYou0Z0qhcjt0+wq7wMVAKM1kmqj GaJ6HQCJamdzpIJ6zaxzBGEEqofKIr6LBTeOscce8yCtdG4dO2KLp5uYWfdB4IJU KjhVAvJdv1UpbDpUXjhydgq3NhfeSpYmLG9dnpi/kpLcKfj0Hb0omhR86doxE7Xw uMAKYLHOHX6BnXpDHXyQ6g5fAjEA////////////////////////////////x2NN gfQ3Ld9YGg2ySLCneuzsGWrMxSlzAgEBoWQDYgAEeGyHPLmHcszPQ9MIIYnznpzi QbvuJtYSjCqtIGxDfzgcLcc3nCc5tBxo+qX6OJEzcWdDAC0bwplY+9Z9jHR3ylNy ovlHoK4ItdWkVO8NH89SLSRyVuOF8N5t3CHIo93B -----END EC PRIVATE KEY----- =item * EC private keys with curve defined by OID (short form) -----BEGIN EC PRIVATE KEY----- MHcCAQEEIBG1c3z52T8XwMsahGVdOZWgKCQJfv+l7djuJjgetdbDoAoGCCqGSM49 AwEHoUQDQgAEoBUyo8CQAFPeYPvv78ylh5MwFZjTCLQeb042TjiMJxG+9DLFmRSM lBQ9T/RsLLc+PmpB1+7yPAR+oR5gZn3kJQ== -----END EC PRIVATE KEY----- =item * EC private keys with curve defined by OID + compressed form (supported since: CryptX-0.059) -----BEGIN EC PRIVATE KEY----- MFcCAQEEIBG1c3z52T8XwMsahGVdOZWgKCQJfv+l7djuJjgetdbDoAoGCCqGSM49 AwEHoSQDIgADoBUyo8CQAFPeYPvv78ylh5MwFZjTCLQeb042TjiMJxE= -----END EC PRIVATE KEY----- =item * EC private keys in password protected PEM format -----BEGIN EC PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: AES-128-CBC,98245C830C9282F7937E13D1D5BA11EC 0Y85oZ2+BKXYwrkBjsZdj6gnhOAfS5yDVmEsxFCDug+R3+Kw3QvyIfO4MVo9iWoA D7wtoRfbt2OlBaLVl553+6QrUoa2DyKf8kLHQs1x1/J7tJOMM4SCXjlrOaToQ0dT o7fOnjQjHne16pjgBVqGilY/I79Ab85AnE4uw7vgEucBEiU0d3nrhwuS2Opnhzyx 009q9VLDPwY2+q7tXjTqnk9mCmQgsiaDJqY09wlauSukYPgVuOJFmi1VdkRSDKYZ rUUsQvz6Q6Q+QirSlfHna+NhUgQ2eyhGszwcP6NU8iqIxI+NCwfFVuAzw539yYwS 8SICczoC/YRlaclayXuomQ== -----END EC PRIVATE KEY----- =item * EC public keys with all curve parameters -----BEGIN PUBLIC KEY----- MIH1MIGuBgcqhkjOPQIBMIGiAgEBMCwGByqGSM49AQECIQD///////////////// ///////////////////+///8LzAGBAEABAEHBEEEeb5mfvncu6xVoGKVzocLBwKb /NstzijZWfKBWxb4F5hIOtp3JqPEZV2k+/wOEQio/Re0SKaFVBmcR9CP+xDUuAIh AP////////////////////66rtzmr0igO7/SXozQNkFBAgEBA0IABITjF/nKK3jg pjmBRXKWAv7ekR1Ko/Nb5FFPHXjH0sDrpS7qRxFALwJHv7ylGnekgfKU3vzcewNs lvjpBYt0Yg4= -----END PUBLIC KEY----- =item * EC public keys with curve defined by OID (short form) -----BEGIN PUBLIC KEY----- MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEoBUyo8CQAFPeYPvv78ylh5MwFZjT CLQeb042TjiMJxG+9DLFmRSMlBQ9T/RsLLc+PmpB1+7yPAR+oR5gZn3kJQ== -----END PUBLIC KEY----- =item * EC public keys with curve defined by OID + public point in compressed form (supported since: CryptX-0.059) -----BEGIN PUBLIC KEY----- MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADoBUyo8CQAFPeYPvv78ylh5MwFZjT CLQeb042TjiMJxE= -----END PUBLIC KEY----- =item * PKCS#8 private keys with all curve parameters -----BEGIN PRIVATE KEY----- MIIBMAIBADCB0wYHKoZIzj0CATCBxwIBATAkBgcqhkjOPQEBAhkA//////////// /////////v//////////MEsEGP////////////////////7//////////AQYIhI9 wjlaBcqnQj2uzMlHYKfUYiVr1WkWAxUAxGloRDXes3jEtlypWR4qV2MFmi4EMQR9 KXeBAMZaHaF4NxZYjc4ri0rujiKPGJY4qQ8iY3M3M0tJ3LZqbcj5l4rKdkipQ7AC GQD///////////////96YtAxyD9ClPZA7BMCAQEEVTBTAgEBBBiKolTGIsTgOCtl 6dpdos0LvuaExCDFyT6hNAMyAAREwaCX0VY1LZxLW3G75tmft4p9uhc0J7/+NGaP DN3Tr7SXkT9+co2a+8KPJhQy10k= -----END PRIVATE KEY----- =item * PKCS#8 private keys with curve defined by OID (short form) -----BEGIN PRIVATE KEY----- MG8CAQAwEwYHKoZIzj0CAQYIKoZIzj0DAQMEVTBTAgEBBBjFP/caeQV4WO3fnWWS f917PGzwtypd/t+hNAMyAATSg6pBT7RO6l/p+aKcrFsGuthUdfwJWS5V3NGcVt1b lEHQYjWya2YnHaPq/iMFa7A= -----END PRIVATE KEY----- =item * PKCS#8 encrypted private keys - password protected keys (supported since: CryptX-0.059) -----BEGIN ENCRYPTED PRIVATE KEY----- MIGYMBwGCiqGSIb3DQEMAQMwDgQINApjTa6oFl0CAggABHi+59l4d4e6KtG9yci2 BSC65LEsQSnrnFAExfKptNU1zMFsDLCRvDeDQDbxc6HlfoxyqFL4SmH1g3RvC/Vv NfckdL5O2L8MRnM+ljkFtV2Te4fszWcJFdd7KiNOkPpn+7sWLfzQdvhHChLKUzmz 4INKZyMv/G7VpZ0= -----END ENCRYPTED PRIVATE KEY----- =item * EC public key from X509 certificate -----BEGIN CERTIFICATE----- MIIBdDCCARqgAwIBAgIJAL2BBClDEnnOMAoGCCqGSM49BAMEMBcxFTATBgNVBAMM DFRlc3QgQ2VydCBFQzAgFw0xNzEyMzAyMDMzNDFaGA8zMDE3MDUwMjIwMzM0MVow FzEVMBMGA1UEAwwMVGVzdCBDZXJ0IEVDMFYwEAYHKoZIzj0CAQYFK4EEAAoDQgAE KvkL2r5xZp7RzxLQJK+6tn/7lic+L70e1fmNbHOdxRaRvbK5G0AQWrdsbjJb92Ni lCQk2+w/i+VuS2Q3MSR5TaNQME4wHQYDVR0OBBYEFGbJkDyKgaMcIGHS8/WuqIVw +R8sMB8GA1UdIwQYMBaAFGbJkDyKgaMcIGHS8/WuqIVw+R8sMAwGA1UdEwQFMAMB Af8wCgYIKoZIzj0EAwQDSAAwRQIhAJtOsmrM+gJpImoynAyqTN+7myL71uxd+YeC 6ze4MnzWAiBQi5/BqEr/SQ1+BC2TPtswvJPRFh2ZvT/6Km3gKoNVXQ== -----END CERTIFICATE----- =item * SSH public EC keys ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNT...T3xYfJIs= =item * SSH public EC keys (RFC-4716 format) ---- BEGIN SSH2 PUBLIC KEY ---- Comment: "521-bit ECDSA, converted from OpenSSH" AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAFk35srteP9twCwYK vU9ovMBi77Dd6lEBPrFaMEb0CZdZ5MC3nSqflGHRWkSbUpjdPdO7cYQNpK9YXHbNSO5hbU 1gFZgyiGFxwJYYz8NAjedBXMgyH4JWplK5FQm5P5cvaglItC9qkKioUXhCc67YMYBtivXl Ue0PgIq6kbHTqbX6+5Nw== ---- END SSH2 PUBLIC KEY ---- =item * EC private keys in JSON Web Key (JWK) format See L<http://tools.ietf.org/html/draft-ietf-jose-json-web-key> { "kty":"EC", "crv":"P-256", "x":"MKBCTNIcKUSDii11ySs3526iDZ8AiTo7Tu6KPAqv7D4", "y":"4Etl6SRW2YiLUrN5vfvVHuhp7x8PxltmWWlbbM4IFyM", "d":"870MB6gfuTJ4HtUnUvYMyJpr5eUZNP4Bk43bVdj3eAE", } B<BEWARE:> For JWK support you need to have L<JSON::PP>, L<JSON::XS> or L<Cpanel::JSON::XS> module. =item * EC public keys in JSON Web Key (JWK) format { "kty":"EC", "crv":"P-256", "x":"MKBCTNIcKUSDii11ySs3526iDZ8AiTo7Tu6KPAqv7D4", "y":"4Etl6SRW2YiLUrN5vfvVHuhp7x8PxltmWWlbbM4IFyM", } B<BEWARE:> For JWK support you need to have L<JSON::PP>, L<JSON::XS> or L<Cpanel::JSON::XS> module. =back =head2 import_key_raw Import raw public/private key - can load data exported by L</export_key_raw>. $pk->import_key_raw($key, $curve); # $key .... data exported by export_key_raw() # $curve .. curve name or hashref with curve parameters - same as by generate_key() =head2 export_key_der my $private_der = $pk->export_key_der('private'); #or my $public_der = $pk->export_key_der('public'); Since CryptX-0.36 C<export_key_der> can also export keys in a format that does not explicitly contain curve parameters but only curve OID. my $private_der = $pk->export_key_der('private_short'); #or my $public_der = $pk->export_key_der('public_short'); Since CryptX-0.59 C<export_key_der> can also export keys in "compressed" format that defines curve by OID + stores public point in compressed form. my $private_pem = $pk->export_key_der('private_compressed'); #or my $public_pem = $pk->export_key_der('public_compressed'); =head2 export_key_pem my $private_pem = $pk->export_key_pem('private'); #or my $public_pem = $pk->export_key_pem('public'); Since CryptX-0.36 C<export_key_pem> can also export keys in a format that does not explicitly contain curve parameters but only curve OID. my $private_pem = $pk->export_key_pem('private_short'); #or my $public_pem = $pk->export_key_pem('public_short'); Since CryptX-0.59 C<export_key_pem> can also export keys in "compressed" format that defines curve by OID + stores public point in compressed form. my $private_pem = $pk->export_key_pem('private_compressed'); #or my $public_pem = $pk->export_key_pem('public_compressed'); Support for password protected PEM keys my $private_pem = $pk->export_key_pem('private', $password); #or my $private_pem = $pk->export_key_pem('private', $password, $cipher); # supported ciphers: 'DES-CBC' # 'DES-EDE3-CBC' # 'SEED-CBC' # 'CAMELLIA-128-CBC' # 'CAMELLIA-192-CBC' # 'CAMELLIA-256-CBC' # 'AES-128-CBC' # 'AES-192-CBC' # 'AES-256-CBC' (DEFAULT) =head2 export_key_jwk I<Since: CryptX-0.022> Exports public/private keys as a JSON Web Key (JWK). my $private_json_text = $pk->export_key_jwk('private'); #or my $public_json_text = $pk->export_key_jwk('public'); Also exports public/private keys as a perl HASH with JWK structure. my $jwk_hash = $pk->export_key_jwk('private', 1); #or my $jwk_hash = $pk->export_key_jwk('public', 1); B<BEWARE:> For JWK support you need to have L<JSON::PP>, L<JSON::XS> or L<Cpanel::JSON::XS> module. =head2 export_key_jwk_thumbprint I<Since: CryptX-0.031> Exports the key's JSON Web Key Thumbprint as a string. If you don't know what this is, see RFC 7638 L<https://tools.ietf.org/html/rfc7638>. my $thumbprint = $pk->export_key_jwk_thumbprint('SHA256'); =head2 export_key_raw Export raw public/private key. Public key is exported in ASN X9.62 format (compressed or uncompressed), private key is exported as raw bytes (padded with leading zeros to have the same size as the ECC curve). my $pubkey_octets = $pk->export_key_raw('public'); #or my $pubckey_octets = $pk->export_key_raw('public_compressed'); #or my $privkey_octets = $pk->export_key_raw('private'); =head2 encrypt my $pk = Crypt::PK::ECC->new($pub_key_filename); my $ct = $pk->encrypt($message); #or my $ct = $pk->encrypt($message, $hash_name); #NOTE: $hash_name can be 'SHA1' (DEFAULT), 'SHA256' or any other hash supported by Crypt::Digest =head2 decrypt my $pk = Crypt::PK::ECC->new($priv_key_filename); my $pt = $pk->decrypt($ciphertext); =head2 sign_message my $pk = Crypt::PK::ECC->new($priv_key_filename); my $signature = $priv->sign_message($message); #or my $signature = $priv->sign_message($message, $hash_name); #NOTE: $hash_name can be 'SHA1' (DEFAULT), 'SHA256' or any other hash supported by Crypt::Digest =head2 sign_message_rfc7518 I<Since: CryptX-0.024> Same as L<sign_message|/sign_message> only the signature format is as defined by L<https://tools.ietf.org/html/rfc7518> (JWA - JSON Web Algorithms). B<BEWARE:> This creates signatures according to the structure that RFC 7518 describes but does not apply the RFC logic for the hashing algorithm selection. You'll still need to specify, e.g., SHA256 for a P-256 key to get a fully RFC-7518-compliant signature. =head2 verify_message my $pk = Crypt::PK::ECC->new($pub_key_filename); my $valid = $pub->verify_message($signature, $message) #or my $valid = $pub->verify_message($signature, $message, $hash_name); #NOTE: $hash_name can be 'SHA1' (DEFAULT), 'SHA256' or any other hash supported by Crypt::Digest =head2 verify_message_rfc7518 I<Since: CryptX-0.024> Same as L<verify_message|/verify_message> only the signature format is as defined by L<https://tools.ietf.org/html/rfc7518> (JWA - JSON Web Algorithms). B<BEWARE:> This verifies signatures according to the structure that RFC 7518 describes but does not apply the RFC logic for the hashing algorithm selection. You'll still need to specify, e.g., SHA256 for a P-256 key to get a fully RFC-7518-compliant signature. =head2 sign_hash my $pk = Crypt::PK::ECC->new($priv_key_filename); my $signature = $priv->sign_hash($message_hash); =head2 sign_hash_rfc7518 I<Since: CryptX-0.059> Same as L<sign_hash|/sign_hash> only the signature format is as defined by L<https://tools.ietf.org/html/rfc7518> (JWA - JSON Web Algorithms). =head2 verify_hash my $pk = Crypt::PK::ECC->new($pub_key_filename); my $valid = $pub->verify_hash($signature, $message_hash); =head2 verify_hash_rfc7518 I<Since: CryptX-0.059> Same as L<verify_hash|/verify_hash> only the signature format is as defined by L<https://tools.ietf.org/html/rfc7518> (JWA - JSON Web Algorithms). =head2 shared_secret # Alice having her priv key $pk and Bob's public key $pkb my $pk = Crypt::PK::ECC->new($priv_key_filename); my $pkb = Crypt::PK::ECC->new($pub_key_filename); my $shared_secret = $pk->shared_secret($pkb); # Bob having his priv key $pk and Alice's public key $pka my $pk = Crypt::PK::ECC->new($priv_key_filename); my $pka = Crypt::PK::ECC->new($pub_key_filename); my $shared_secret = $pk->shared_secret($pka); # same value as computed by Alice =head2 is_private my $rv = $pk->is_private; # 1 .. private key loaded # 0 .. public key loaded # undef .. no key loaded =head2 size my $size = $pk->size; # returns key size in bytes or undef if no key loaded =head2 key2hash my $hash = $pk->key2hash; # returns hash like this (or undef if no key loaded): { size => 20, # integer: key (curve) size in bytes type => 1, # integer: 1 .. private, 0 .. public #curve parameters curve_A => "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFC", curve_B => "1C97BEFC54BD7A8B65ACF89F81D4D4ADC565FA45", curve_bits => 160, curve_bytes => 20, curve_cofactor => 1, curve_Gx => "4A96B5688EF573284664698968C38BB913CBFC82", curve_Gy => "23A628553168947D59DCC912042351377AC5FB32", curve_name => "secp160r1", curve_order => "0100000000000000000001F4C8F927AED3CA752257", curve_prime => "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFF", #private key k => "B0EE84A749FE95DF997E33B8F333E12101E824C3", #public key point coordinates pub_x => "5AE1ACE3ED0AEA9707CE5C0BCE014F6A2F15023A", pub_y => "895D57E992D0A15F88D6680B27B701F615FCDC0F", } =head2 curve2hash I<Since: CryptX-0.024> my $crv = $pk->curve2hash; # returns a hash that can be passed to: $pk->generate_key($crv) { A => "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFC", B => "1C97BEFC54BD7A8B65ACF89F81D4D4ADC565FA45", cofactor => 1, Gx => "4A96B5688EF573284664698968C38BB913CBFC82", Gy => "23A628553168947D59DCC912042351377AC5FB32", order => "0100000000000000000001F4C8F927AED3CA752257", prime => "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFF", } =head1 FUNCTIONS =head2 ecc_encrypt Elliptic Curve Diffie-Hellman (ECDH) encryption as implemented by libtomcrypt. See method L</encrypt> below. my $ct = ecc_encrypt($pub_key_filename, $message); #or my $ct = ecc_encrypt(\$buffer_containing_pub_key, $message); #or my $ct = ecc_encrypt($pub_key_filename, $message, $hash_name); #NOTE: $hash_name can be 'SHA1' (DEFAULT), 'SHA256' or any other hash supported by Crypt::Digest ECCDH Encryption is performed by producing a random key, hashing it, and XOR'ing the digest against the plaintext. =head2 ecc_decrypt Elliptic Curve Diffie-Hellman (ECDH) decryption as implemented by libtomcrypt. See method L</decrypt> below. my $pt = ecc_decrypt($priv_key_filename, $ciphertext); #or my $pt = ecc_decrypt(\$buffer_containing_priv_key, $ciphertext); =head2 ecc_sign_message Elliptic Curve Digital Signature Algorithm (ECDSA) - signature generation. See method L</sign_message> below. my $sig = ecc_sign_message($priv_key_filename, $message); #or my $sig = ecc_sign_message(\$buffer_containing_priv_key, $message); #or my $sig = ecc_sign_message($priv_key, $message, $hash_name); =head2 ecc_verify_message Elliptic Curve Digital Signature Algorithm (ECDSA) - signature verification. See method L</verify_message> below. ecc_verify_message($pub_key_filename, $signature, $message) or die "ERROR"; #or ecc_verify_message(\$buffer_containing_pub_key, $signature, $message) or die "ERROR"; #or ecc_verify_message($pub_key, $signature, $message, $hash_name) or die "ERROR"; =head2 ecc_sign_hash Elliptic Curve Digital Signature Algorithm (ECDSA) - signature generation. See method L</sign_hash> below. my $sig = ecc_sign_hash($priv_key_filename, $message_hash); #or my $sig = ecc_sign_hash(\$buffer_containing_priv_key, $message_hash); =head2 ecc_verify_hash Elliptic Curve Digital Signature Algorithm (ECDSA) - signature verification. See method L</verify_hash> below. ecc_verify_hash($pub_key_filename, $signature, $message_hash) or die "ERROR"; #or ecc_verify_hash(\$buffer_containing_pub_key, $signature, $message_hash) or die "ERROR"; =head2 ecc_shared_secret Elliptic curve Diffie-Hellman (ECDH) - construct a Diffie-Hellman shared secret with a private and public ECC key. See method L</shared_secret> below. #on Alice side my $shared_secret = ecc_shared_secret('Alice_priv_ecc1.der', 'Bob_pub_ecc1.der'); #on Bob side my $shared_secret = ecc_shared_secret('Bob_priv_ecc1.der', 'Alice_pub_ecc1.der'); =head1 OpenSSL interoperability ### let's have: # ECC private key in PEM format - eckey.priv.pem # ECC public key in PEM format - eckey.pub.pem # data file to be signed - input.data =head2 Sign by OpenSSL, verify by Crypt::PK::ECC Create signature (from commandline): openssl dgst -sha1 -sign eckey.priv.pem -out input.sha1-ec.sig input.data Verify signature (Perl code): use Crypt::PK::ECC; use Crypt::Digest 'digest_file'; use Crypt::Misc 'read_rawfile'; my $pkec = Crypt::PK::ECC->new("eckey.pub.pem"); my $signature = read_rawfile("input.sha1-ec.sig"); my $valid = $pkec->verify_hash($signature, digest_file("SHA1", "input.data"), "SHA1", "v1.5"); print $valid ? "SUCCESS" : "FAILURE"; =head2 Sign by Crypt::PK::ECC, verify by OpenSSL Create signature (Perl code): use Crypt::PK::ECC; use Crypt::Digest 'digest_file'; use Crypt::Misc 'write_rawfile'; my $pkec = Crypt::PK::ECC->new("eckey.priv.pem"); my $signature = $pkec->sign_hash(digest_file("SHA1", "input.data"), "SHA1", "v1.5"); write_rawfile("input.sha1-ec.sig", $signature); Verify signature (from commandline): openssl dgst -sha1 -verify eckey.pub.pem -signature input.sha1-ec.sig input.data =head2 Keys generated by Crypt::PK::ECC Generate keys (Perl code): use Crypt::PK::ECC; use Crypt::Misc 'write_rawfile'; my $pkec = Crypt::PK::ECC->new; $pkec->generate_key('secp160k1'); write_rawfile("eckey.pub.der", $pkec->export_key_der('public')); write_rawfile("eckey.priv.der", $pkec->export_key_der('private')); write_rawfile("eckey.pub.pem", $pkec->export_key_pem('public')); write_rawfile("eckey.priv.pem", $pkec->export_key_pem('private')); write_rawfile("eckey-passwd.priv.pem", $pkec->export_key_pem('private', 'secret')); Use keys by OpenSSL: openssl ec -in eckey.priv.der -text -inform der openssl ec -in eckey.priv.pem -text openssl ec -in eckey-passwd.priv.pem -text -inform pem -passin pass:secret openssl ec -in eckey.pub.der -pubin -text -inform der openssl ec -in eckey.pub.pem -pubin -text =head2 Keys generated by OpenSSL Generate keys: openssl ecparam -param_enc explicit -name prime192v3 -genkey -out eckey.priv.pem openssl ec -param_enc explicit -in eckey.priv.pem -out eckey.pub.pem -pubout openssl ec -param_enc explicit -in eckey.priv.pem -out eckey.priv.der -outform der openssl ec -param_enc explicit -in eckey.priv.pem -out eckey.pub.der -outform der -pubout openssl ec -param_enc explicit -in eckey.priv.pem -out eckey.privc.der -outform der -conv_form compressed openssl ec -param_enc explicit -in eckey.priv.pem -out eckey.pubc.der -outform der -pubout -conv_form compressed openssl ec -param_enc explicit -in eckey.priv.pem -passout pass:secret -des3 -out eckey-passwd.priv.pem Load keys (Perl code): use Crypt::PK::ECC; my $pkec = Crypt::PK::ECC->new; $pkec->import_key("eckey.pub.der"); $pkec->import_key("eckey.pubc.der"); $pkec->import_key("eckey.priv.der"); $pkec->import_key("eckey.privc.der"); $pkec->import_key("eckey.pub.pem"); $pkec->import_key("eckey.priv.pem"); $pkec->import_key("eckey-passwd.priv.pem", "secret"); =head1 SEE ALSO =over =item * L<https://en.wikipedia.org/wiki/Elliptic_curve_cryptography|https://en.wikipedia.org/wiki/Elliptic_curve_cryptography> =item * L<https://en.wikipedia.org/wiki/Elliptic_curve_Diffie%E2%80%93Hellman|https://en.wikipedia.org/wiki/Elliptic_curve_Diffie%E2%80%93Hellman> =item * L<https://en.wikipedia.org/wiki/ECDSA|https://en.wikipedia.org/wiki/ECDSA> =back =cut
34.750223
178
0.672212
ed30d49a5839f951826aaf0f2fb2e42040fa2348
854
pl
Perl
prepareThingyForPwa.pl
paranoidnakamoto/toolset
fea40b1df30a41644bb6ca8640798393428d71b6
[ "Unlicense" ]
3
2019-06-28T04:09:23.000Z
2020-12-30T13:47:04.000Z
prepareThingyForPwa.pl
paranoidnakamoto/toolset
fea40b1df30a41644bb6ca8640798393428d71b6
[ "Unlicense" ]
2
2019-07-22T13:21:08.000Z
2019-07-22T13:30:51.000Z
prepareThingyForPwa.pl
paranoidnakamoto/toolset
fea40b1df30a41644bb6ca8640798393428d71b6
[ "Unlicense" ]
2
2020-06-17T13:28:34.000Z
2021-01-25T21:20:10.000Z
#!/usr/bin/perl use Cwd qw(cwd); my $dir = cwd; ############################################################ my $specificThingyBasePath = $dir."/thingy-build-system/pwa/specificThingyInfo.js"; my $specificThingyBaseLink = $dir."/thingy-build-system/specificThingyInfo.js"; my $result = symlink($specificThingyBasePath, $specificThingyBaseLink); ############################################################ my $sourceInfoPath = $dir."/../sources/sourceInfo.js"; my $sourceInfoLink = $dir."/thingy-build-system/pwa/sourceInfo.js"; $result = symlink($sourceInfoPath, $sourceInfoLink); ############################################################ $result = `node thingy-build-system/producePackageJason.js`; if($result == 0) { print "package.json for pwa is ready to go :-)\n"; } else { print "An error occured!\nReturned: ".$result."\n"; }
34.16
83
0.56089
ed6005a15052b0cabaa46ffd7ce4a7e0f7fed2ce
6,488
pl
Perl
examples/v201409/advanced_operations/use_shared_bidding_strategy.pl
gitpan/Google-Ads-AdWords-Client
44c7408a1b7f8f16b22efa359c037d1f986f04f1
[ "Apache-2.0" ]
null
null
null
examples/v201409/advanced_operations/use_shared_bidding_strategy.pl
gitpan/Google-Ads-AdWords-Client
44c7408a1b7f8f16b22efa359c037d1f986f04f1
[ "Apache-2.0" ]
null
null
null
examples/v201409/advanced_operations/use_shared_bidding_strategy.pl
gitpan/Google-Ads-AdWords-Client
44c7408a1b7f8f16b22efa359c037d1f986f04f1
[ "Apache-2.0" ]
null
null
null
#!/usr/bin/perl -w # # Copyright 2013, Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # This example adds a Shared Bidding Strategy and uses it to # construct a campaign. # # Tags: BiddingStrategyService.mutate # Tags: BudgetService.mutate, CampaignService.mutate # Author: Paul Matthews <api.pmatthews@gmail.com> use strict; use lib "../../../lib"; use Google::Ads::AdWords::Client; use Google::Ads::AdWords::Logging; use Google::Ads::AdWords::v201409::SharedBiddingStrategy; use Google::Ads::AdWords::v201409::TargetSpendBiddingScheme; use Google::Ads::AdWords::v201409::Money; use Google::Ads::AdWords::v201409::BiddingStrategyOperation; use Google::Ads::AdWords::v201409::BudgetOperation; use Google::Ads::AdWords::v201409::NetworkSetting; use Google::Ads::AdWords::v201409::CampaignOperation; use Cwd qw(abs_path); use Data::Uniqid qw(uniqid); # Replace with valid values of your account. my $budget_id = 0; # Example main subroutine. sub use_shared_bidding_strategy { my $client = shift; my $budget_id = shift; my $biddingStrategy = create_bidding_strategy($client); if (!$biddingStrategy) { return 0; } if (!$budget_id) { my $budget = create_shared_budget($client); if (!$budget) { return 0; } $budget_id = $budget->get_budgetId(); } create_campaign_with_bidding_strategy($client, $biddingStrategy->get_id(), $budget_id); return 1; } # Creates the bidding strategy object. sub create_bidding_strategy { my $client = shift; my @operations = (); # Create a shared bidding strategy. my $bidding_strategy = Google::Ads::AdWords::v201409::SharedBiddingStrategy->new({ name => "Maximize Clicks " . uniqid(), type => "TARGET_SPEND", # Create the bidding scheme. biddingScheme => Google::Ads::AdWords::v201409::TargetSpendBiddingScheme->new({ # Optionally set additional bidding scheme parameters. bidCeiling => Google::Ads::AdWords::v201409::Money->new({ microAmount => 2000000, }), spendTarget => Google::Ads::AdWords::v201409::Money->new({ microAmount => 20000000, }) }) }); # Create operation. my $operation = Google::Ads::AdWords::v201409::BiddingStrategyOperation->new({ operator => "ADD", operand => $bidding_strategy }); push @operations, $operation; my $result = $client->BiddingStrategyService()->mutate({ operations => \@operations }); if ($result->get_value()) { my $strategy = $result->get_value()->[0]; printf "Shared bidding strategy with name \"%s\" and ID %d of type %s " . "was created.\n", $strategy->get_name(), $strategy->get_id(), $strategy->get_biddingScheme()->get_BiddingScheme__Type(); return $strategy; } else { print "No shared bidding strategies were added.\n"; return 0; } } # Creates an explicit budget to be used only to create the Campaign. sub create_shared_budget { my $client = shift; my @operations = (); # Create a shared budget operation. my $operation = Google::Ads::AdWords::v201409::BudgetOperation->new({ operator => 'ADD', operand => Google::Ads::AdWords::v201409::Budget->new({ period => 'DAILY', amount => Google::Ads::AdWords::v201409::Money->new({ microAmount => 50000000 }), deliveryMethod => 'STANDARD', isExplicitlyShared => 0 }) }); push @operations, $operation; # Make the mutate request. my $result = $client->BudgetService()->mutate({ operations => \@operations }); if ($result->get_value()) { return $result->get_value()->[0]; } else { print "No budgets were added.\n"; return 0; } } # Create a Campaign with a Shared Bidding Strategy. sub create_campaign_with_bidding_strategy { my $client = shift; my $bidding_strategy_id = shift; my $budget_id = shift; my @operations = (); # Create campaign. my $campaign = Google::Ads::AdWords::v201409::Campaign->new({ name => 'Interplanetary Cruise #' . uniqid(), budget => Google::Ads::AdWords::v201409::Budget->new({ budgetId => $budget_id }), # Set bidding strategy (required). biddingStrategyConfiguration => Google::Ads::AdWords::v201409::BiddingStrategyConfiguration->new({ biddingStrategyId => $bidding_strategy_id }), # Set advertising channel type (required). advertisingChannelType => 'SEARCH', # Network targeting (recommended). networkSetting => Google::Ads::AdWords::v201409::NetworkSetting->new({ targetGoogleSearch => 1, targetSearchNetwork => 1, targetContentNetwork => 1 }) }); # Create operation. my $operation = Google::Ads::AdWords::v201409::CampaignOperation->new({ operator => 'ADD', operand => $campaign }); push @operations, $operation; my $result = $client->CampaignService()->mutate({ operations => \@operations }); if ($result->get_value()) { my $new_campaign = $result->get_value()->[0]; printf "Campaign with name \"%s\", ID %d and bidding strategy ID %d was " . "created.\n", $new_campaign->get_name(), $new_campaign->get_id(), $new_campaign->get_biddingStrategyConfiguration() ->get_biddingStrategyId(); return $new_campaign; } else { print "No campaigns were added.\n"; return 0; } } # Don't run the example if the file is being included. if (abs_path($0) ne abs_path(__FILE__)) { return 1; } # Log SOAP XML request, response and API errors. Google::Ads::AdWords::Logging::enable_all_logging(); # Get AdWords Client, credentials will be read from ~/adwords.properties. my $client = Google::Ads::AdWords::Client->new({version => "v201409"}); # By default examples are set to die on any server returned fault. $client->set_die_on_faults(1); # Call the example use_shared_bidding_strategy($client, $budget_id);
29.625571
80
0.662762
ed31fe9d8d535495cb2d1f2abc89b4dad4efc8a1
7,966
al
Perl
Apps/DK/FIK/app/src/Tables/GeneralJournalLine.TableExt.al
MiguelMercadoActual/ALAppExtensions
97ee3823053eb32fa7e38dc3d1e7a89bdcca8d7b
[ "MIT" ]
337
2019-05-07T06:04:40.000Z
2022-03-31T10:07:42.000Z
Apps/DK/FIK/app/src/Tables/GeneralJournalLine.TableExt.al
MiguelMercadoActual/ALAppExtensions
97ee3823053eb32fa7e38dc3d1e7a89bdcca8d7b
[ "MIT" ]
14,850
2019-05-07T06:04:27.000Z
2022-03-31T19:53:28.000Z
Apps/DK/FIK/app/src/Tables/GeneralJournalLine.TableExt.al
MiguelMercadoActual/ALAppExtensions
97ee3823053eb32fa7e38dc3d1e7a89bdcca8d7b
[ "MIT" ]
374
2019-05-09T10:08:14.000Z
2022-03-31T17:48:32.000Z
// ------------------------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // ------------------------------------------------------------------------------------------------ tableextension 13615 GeneralJournalLine extends "Gen. Journal Line" { fields { field(13651; GiroAccNo; Code[8]) { Caption = 'Giro Acc No.'; trigger OnValidate(); begin IF NOT IsForExportToPaymentFile() THEN EXIT; IF GiroAccNo <> '' THEN BEGIN IF "Recipient Bank Account" <> '' THEN FIELDERROR("Recipient Bank Account", STRSUBSTNO(FieldIsNotEmptyErr, FIELDCAPTION(GiroAccNo), FIELDCAPTION("Recipient Bank Account"))); GiroAccNo := PADSTR('', MAXSTRLEN(GiroAccNo) - STRLEN(GiroAccNo), '0') + GiroAccNo; END; end; } modify("Payment Method Code") { trigger OnBeforeValidate(); VAR BankAccount: Record "Bank Account"; PaymentMethod: Record "Payment Method"; VendBankAcc: Record "Vendor Bank Account"; CustBankAcc: Record "Customer Bank Account"; FIKManagement: Codeunit FIKManagement; begin IF "Bal. Account Type" = "Bal. Account Type"::"Bank Account" THEN IF PaymentMethod.GET("Payment Method Code") THEN BEGIN IF PaymentMethod.PaymentTypeValidation = PaymentMethod.PaymentTypeValidation::" " THEN EXIT; BankAccount.GET("Bal. Account No."); CASE "Account Type" OF "Account Type"::Customer: BEGIN FIKManagement.CheckCustRefundPaymentTypeValidation(PaymentMethod); IF CustBankAcc.GET("Account No.", "Recipient Bank Account") THEN FIKManagement.CheckBankTransferCountryRegion(BankAccount."Country/Region Code", CustBankAcc."Country/Region Code", PaymentMethod); END; "Account Type"::Vendor: BEGIN IF VendBankAcc.GET("Account No.", "Recipient Bank Account") THEN FIKManagement.CheckBankTransferCountryRegion(BankAccount."Country/Region Code", VendBankAcc."Country/Region Code", PaymentMethod); CASE PaymentMethod.PaymentTypeValidation OF PaymentMethod.PaymentTypeValidation::"FIK 01", PaymentMethod.PaymentTypeValidation::"FIK 73": "Payment Reference" := ''; PaymentMethod.PaymentTypeValidation::"FIK 04", PaymentMethod.PaymentTypeValidation::"FIK 71": "Payment Reference" := FIKManagement.EvaluateFIK("Payment Reference", "Payment Method Code"); END; UpdateVendorPaymentDetails(); END END END end; } modify("Creditor No.") { trigger OnBeforeValidate(); var FIKManagement: Codeunit FIKManagement; begin IF NOT IsForExportToPaymentFile() THEN EXIT; IF "Creditor No." <> '' THEN BEGIN IF "Recipient Bank Account" <> '' THEN FIELDERROR("Recipient Bank Account", STRSUBSTNO(FieldIsNotEmptyErr, FIELDCAPTION("Creditor No."), FIELDCAPTION("Recipient Bank Account"))); "Creditor No." := FIKManagement.FormValidCreditorNo("Creditor No."); END; end; } modify("Payment Reference") { trigger OnBeforeValidate(); var PaymentMethod: Record "Payment Method"; FIKManagement: Codeunit FIKManagement; begin IF "Account Type" = "Account Type"::Vendor THEN IF "Payment Reference" <> '' THEN BEGIN Rec.TESTFIELD("Payment Method Code"); PaymentMethod.GET("Payment Method Code"); BEGIN PaymentMethod.TESTFIELD(PaymentTypeValidation); CASE PaymentMethod.PaymentTypeValidation OF PaymentMethod.PaymentTypeValidation::"FIK 01", PaymentMethod.PaymentTypeValidation::"FIK 73": ERROR(PmtReferenceErr, FIELDCAPTION("Payment Reference"), PaymentMethod.TABLECAPTION(), "Payment Method Code"); END; "Payment Reference" := FIKManagement.EvaluateFIK("Payment Reference", "Payment Method Code"); END; END; end; } modify("Recipient Bank Account") { trigger OnBeforeValidate(); begin IF IsForExportToPaymentFile() THEN BEGIN UpdateVendorPaymentDetails(); IF ("Recipient Bank Account" <> '') AND ("Creditor No." <> '') THEN FIELDERROR("Creditor No.", STRSUBSTNO(FieldIsNotEmptyErr, FIELDCAPTION("Recipient Bank Account"), FIELDCAPTION("Creditor No."))); EXIT; END; end; } } var FieldIsNotEmptyErr: Label '%1 cannot be used while %2 has a value.', Comment = '%1=Field;%2=Field'; PmtReferenceErr: Label '%1 should be blank for %2 %3.', Comment = '%1=Field;%2=Table;%3=Field"'; PROCEDURE UpdateVendorPaymentDetails(); VAR PaymentMethod: Record "Payment Method"; BEGIN IF PaymentMethod.GET("Payment Method Code") THEN CASE PaymentMethod.PaymentTypeValidation OF PaymentMethod.PaymentTypeValidation::"FIK 01", PaymentMethod.PaymentTypeValidation::"FIK 04": BEGIN "Creditor No." := ''; "Recipient Bank Account" := ''; END; PaymentMethod.PaymentTypeValidation::"FIK 71", PaymentMethod.PaymentTypeValidation::"FIK 73": BEGIN GiroAccNo := ''; "Recipient Bank Account" := ''; END; PaymentMethod.PaymentTypeValidation::Domestic, PaymentMethod.PaymentTypeValidation::International: BEGIN "Creditor No." := ''; GiroAccNo := ''; END; else OnUpdateVendorPaymentDetailsCasePaymentTypeValidationElse(Rec, PaymentMethod.PaymentTypeValidation); END; END; PROCEDURE IsForExportToPaymentFile(): Boolean; VAR PaymentMethod: Record "Payment Method"; begin ; IF PaymentMethod.GET("Payment Method Code") THEN EXIT(PaymentMethod.PaymentTypeValidation <> PaymentMethod.PaymentTypeValidation::" "); EXIT(FALSE); end; [IntegrationEvent(false, false)] local procedure OnUpdateVendorPaymentDetailsCasePaymentTypeValidationElse(var GenJournalLine: Record "Gen. Journal Line"; PaymentTypeValidation: Enum "Payment Type Validation") begin end; }
47.987952
180
0.503515
73e435767ec8619f6617fe86c1a79af448494dc0
10,476
pm
Perl
lib/CXGN/Bulk/UnigeneIDUnigene.pm
labroo2/sgn
c8a1a10e4ac2104d82c5fd2d986f1688d01b20be
[ "MIT" ]
39
2015-02-03T15:47:55.000Z
2022-03-23T13:34:05.000Z
lib/CXGN/Bulk/UnigeneIDUnigene.pm
labroo2/sgn
c8a1a10e4ac2104d82c5fd2d986f1688d01b20be
[ "MIT" ]
2,491
2015-01-07T05:49:17.000Z
2022-03-31T15:31:05.000Z
lib/CXGN/Bulk/UnigeneIDUnigene.pm
labroo2/sgn
c8a1a10e4ac2104d82c5fd2d986f1688d01b20be
[ "MIT" ]
20
2015-06-30T19:10:09.000Z
2022-03-23T13:34:09.000Z
# Unigene ID's of Unigene download script for SGN database # This bulk download option handles the query # Of Array Spot of type EST. # Many of its methods are in the Bulk object. =head1 NAME /CXGN/Bulk/UnigeneIDUnigene.pm (A subclass of Bulk) =head1 DESCRIPTION This perl script is used on the bulk download page. The script collects identifiers submitted by the user and returns information based on the Unigene ID's for Unigene entered. It then determines the information the user is searching for (SGN_U, Build Number, Automatic Annotation and Unigene Sequence) and performs the appropriate querying of the database. The results of the database query are formated and presented to the user on a separate page. Options of viewing or downloading in text or fasta are available. =cut package CXGN::Bulk::UnigeneIDUnigene; use strict; use warnings; use Scalar::Util qw/ blessed /; use Bio::PrimarySeq; use CXGN::Bulk; use CXGN::Transcript::Unigene; use CXGN::Transcript::CDS; use CXGN::Phenome::Locus; use base "CXGN::Bulk"; sub new { my $class = shift; my $self = $class->SUPER::new(@_); return $self; } =head2 process_parameters Desc: Args: none Ret : 1 if the parameters were OK, 0 if not Modifies some of the parameters received set in get_parameters. Preparing data for the database query. =cut sub process_parameters { my $self = shift; my %links = (SGN_U => "/search/unigene.pl?unigene_id=",); $self->{links} = \%links; my @output_fields = (); $self->debug("Type of identifier: ".($self->{idType}).""); # @output_fields is the sub-set of fields that will actually be output. my @output_list = qw( automatic_annotation evalue best_genbank_match best_arabidopsis_match associated_loci ); if(my $value = $self->{convert_to_current}) { if ($value eq "on") { push @output_fields, 'input_unigene'; } } #check condition for SGN_U if(my $value = $self->{SGN_U_U}) { if ($value eq "on") { push @output_fields, 'SGN_U'; } } #then check for rest of fields foreach my $o (@output_list) { if (my $value = $self->{$o}) { if ($value eq "on") { push @output_fields, $o; } } } if ($self->{uni_seq} eq "on") {push @output_fields, $self->{seq_mode}; } $self->{output_list} = \@output_list; $self->{output_fields} = \@output_fields; my @ids = $self ->check_ids(); $self->debug("IDs to be processed:"); my $has_valid_id = 0; foreach my $i (@ids) { $self->debug($i); if ($self -> {idType} =~ /unigene/) { $i =~ s/^.*?(\d+).*?$/$1/; } if(!($i =~ m/\d+/)) { $i = ""; } if ($i ne "") { $has_valid_id = 1; } } if(!$has_valid_id) { return 0; } $self->{ids} = \@ids; return 1; #params were OK if we got here } =head2 process_ids Desc: sub process_ids Args: default; Ret : data from database printed to a file; Queries database using Persistent (see perldoc Persistent) and object oriented perl to obtain data on Bulk Objects using formatted IDs. =cut sub process_ids { my $self = shift; my $db = $self->{db}; my @output_fields = @{$self -> {output_fields}}; my @notfound = (); my ($dump_fh, $notfound_fh) = $self -> create_dumpfile(); my $current_time= time(); # - $self -> {query_start_time}; $self->debug("Time point 6: $current_time"); $self -> {query_start_time} = time(); my @u_ids = sort {$a<=>$b} @{$self->{ids}}; if( $self->{convert_to_current} ) { @u_ids = $self->convert_to_current( \@u_ids, $notfound_fh ); } for my $u_id ( @u_ids ) { my $input_unigene; #< only used if converting to current if( ref $u_id ) { ( $u_id, $input_unigene ) = @$u_id; } (print $notfound_fh "$u_id\n" and next) if($u_id > 2147483647); my $unigene = CXGN::Transcript::Unigene->new($db, $u_id) or (print $notfound_fh "$u_id\t(not found in database)\n" and next); my $cds = CXGN::Transcript::CDS->new_with_unigene_id($db, $u_id); my @return_data; for my $field (@output_fields){ if($field eq "SGN_U"){ push (@return_data,"SGN-U".$unigene->get_unigene_id()); } elsif($field eq "automatic_annotation"){ my @annotations = $unigene->get_annotations(1); if(@annotations){ my @temp; for my $index (0..4){ if($annotations[$index]){ for my $anno ($annotations[$index]){ my @annotation_list = @$anno; my($evalue, $annotation) = @annotation_list[2,7]; if($index == 0){ push(@temp, "MATCHED ".$annotation."(evalue: $evalue )"); } else { push(@temp, "AND MATCHED ".$annotation." (evalue: $evalue)"); } } } } push(@return_data, join(" ", @temp)); }else{ push(@return_data, "None."); } } elsif($field eq "best_genbank_match"){ my @annotations = $unigene->get_genbank_annotations(); if(@annotations){ my($blast_db_id, $seq_id, $evalue, $score, $identities, $start_coord, $end_coord, $annotation) = @{$annotations[0]}; push(@return_data, $seq_id." (".$evalue.")"); }else{ push(@return_data, "None."); } } elsif($field eq "best_arabidopsis_match"){ my @annotations = $unigene->get_arabidopsis_annotations(); if (@annotations) { my ($blast_db_id, $seq_id, $evalue, $score, $identities, $start_coord, $end_coord, $annotation) = @{$annotations[0]}; push(@return_data, $seq_id . " (".$evalue.")"); }else{ push(@return_data, "None."); } } elsif($field eq "associated_loci"){ if( my @associated_loci = $unigene->get_associated_loci()) { my @loci; for my $locus (@associated_loci) { push(@loci, $locus->get_locus_symbol()); } push(@return_data, join " ", @loci); } else {push(@return_data, "None.");} } elsif($field eq "unigene_seq"){ push(@return_data, $unigene->get_sequence()) or push(@return_data, "None."); } elsif($field eq "estscan_seq"){ my $cds_seq = $cds->get_protein_seq(); push(@return_data, $cds_seq) or push(@return_data, "None."); } # TODO: This needs to be fixed up. elsif($field eq "longest6frame_seq") { my ($longest_orf) = $self->_find_orfs( $unigene->get_sequence ); push @return_data, $longest_orf || "no ORFs found"; } elsif($field eq "preferred_protein_seq"){ if(my $cds_id = $unigene->get_preferred_protein()){ my $cds2 = CXGN::Transcript::CDS->new($db, $cds_id); my $preferred = $cds2->get_protein_seq(); push(@return_data, $preferred); }else{ push(@return_data, "None."); } } elsif( $field eq 'input_unigene' ) { push @return_data, "SGN-U$input_unigene"; } } print $dump_fh (join "\t", @return_data)."\n"; } close($dump_fh); close($notfound_fh); $self->{query_time} = time() - $self -> {query_start_time}; } # given a sequence, return all the ORFs in descending order of length sub _find_orfs { my ($self,$sequence) = @_; # convert to a Bio::PrimarySeq if necessary $sequence = Bio::PrimarySeq->new( -id => 'fake_id', -seq => "$sequence" ) unless blessed( $sequence ) && $sequence->can('translate') && $sequence->can('seq'); # translate in 3 frames, regex to find ORFs, sort by ORF length # descending return sort { length($b) <=> length($a) } map /(M[^\*]+(?:\*|$))/g, map $sequence->translate(-frame => $_)->seq, 0..2; } # returns list as [ new_unigene_id, old_unigene_id ], ... # if the unigene is current, old and new will be the same id sub convert_to_current { my ( $self, $uids, $notfound_fh ) = @_; my @current_uids; foreach my $uid (@$uids) { if( my $unigene = CXGN::Transcript::Unigene->new( $self->{db}, $uid) ) { my $unigene_build = CXGN::Transcript::UnigeneBuild->new( $self->{db}, $unigene->get_build_id ); if( $unigene_build->get_status eq 'C' ) { push @current_uids, [$uid,$uid]; } else { if( my @curr = $unigene->get_current_unigene_ids ) { push @current_uids, map [$_,$uid], @curr; } else { print $notfound_fh "$uid\t(no equivalent in current build)\n"; } } } } return @current_uids; } =head2 get_query Desc: Args: default; Ret : data from database printed to a file; Queries database using SQL to obtain data on Bulk Objects using formatted IDs. =cut # sub get_query # { # my $in_ids = shift; # return <<EOSQL # SELECT DISTINCT ON (unigene.unigene_id) # unigene.unigene_id as SGN_U, # unigene_build.build_nr as build_nr, # unigene_consensi.seq as unigene_seq, # est.seq as est_seq, # cds.protein_seq, # (SELECT array_to_string(array(SELECT 'MATCHED ' # || dl.defline # || ' (evalue:' # || bh.evalue # || ')' # FROM blast_annotations as ba # JOIN blast_hits as bh USING(blast_annotation_id) # JOIN blast_defline as dl USING(defline_id) # WHERE ba.apply_id=unigene.unigene_id # AND ba.blast_target_id=1 # AND ba.apply_type=15 # LIMIT 5 # ), # ' AND ') # ) as automatic_annotation, # (SELECT target_db_id FROM blast_annotations join blast_hits using(blast_annotation_id) WHERE (blast_target_id=1) AND (apply_id=unigene.unigene_id) AND blast_annotations.apply_type=15 order by score desc limit 1) as best_genbank_match, # (SELECT target_db_id FROM blast_annotations join blast_hits using(blast_annotation_id) WHERE (blast_target_id=2) AND (apply_id=unigene.unigene_id) AND blast_annotations.apply_type=15 order by score desc limit 1) as best_arabidopsis_match # FROM unigene # LEFT JOIN unigene_consensi USING(consensi_id) # LEFT JOIN unigene_build USING(unigene_build_id) # LEFT JOIN unigene_member USING(unigene_id) # LEFT JOIN cds ON (unigene.unigene_id=cds.unigene_id) # LEFT JOIN est USING(est_id) # WHERE unigene.unigene_id $in_ids # ORDER BY unigene.unigene_id # EOSQL # } 1;
28.544959
240
0.601184
ed5d381ae6f9a28e706bf6fda6c2129df36198e3
1,977
pl
Perl
prolog/vdom_patch_action.pl
rla/prolog-vdom
23f85a6dbccefd189f4cff179106180e2f12234a
[ "MIT" ]
7
2019-02-13T16:51:51.000Z
2022-01-12T10:37:45.000Z
prolog/vdom_patch_action.pl
rla/prolog-vdom
23f85a6dbccefd189f4cff179106180e2f12234a
[ "MIT" ]
1
2018-06-24T08:41:49.000Z
2018-06-24T08:41:49.000Z
prolog/vdom_patch_action.pl
rla/prolog-vdom
23f85a6dbccefd189f4cff179106180e2f12234a
[ "MIT" ]
null
null
null
:- module(vdom_patch_action, [ vdom_replace_at/4, % +Path, +VDom, -Diff, -VOut vdom_set_attrs_at/3, % +Path, +Changes -Diff vdom_roc_at/4 % +Path, +Rebuild, -Diff, -VOut ]). :- use_module(library(apply)). :- use_module(library(error)). :- use_module(library(lists)). :- use_module(vdom_build). :- use_module(vdom_build_attrs). % Generates attributes update action at the given path. % Empty set of attributes generates no action. vdom_set_attrs_at(_, [], []):- !. vdom_set_attrs_at(Path, Changes, Diff):- must_be(nonvar, Path), must_be(nonvar, Changes), path_term(Path, PathTerm), vdom_build_attrs(Changes, AttrsTerm), Diff = [set_attrs(PathTerm, AttrsTerm)]. % Generates replace action at the given path. % As this can render components through vdom_build, % it will give back the final current vdom. vdom_replace_at(Path, VDom, Diff, VOut):- must_be(nonvar, Path), must_be(nonvar, VDom), vdom_build(VDom, NodeTerm, VOut), path_term(Path, PathTerm), Diff = [replace(PathTerm, NodeTerm)]. % Generates reorder-or-create (ROC) action. % ROC action specifies for each child element % whether to use a previous child or create a new one. % Output VDOM contains reuse(Index) at the % place where an old child is being reused. vdom_roc_at(Path, Rebuild, Diff, VOut):- must_be(nonvar, Path), must_be(nonvar, Rebuild), path_term(Path, PathTerm), maplist(roc_action, Rebuild, Actions, VOut), ActionsTerm =.. [actions|Actions], Diff = [roc(PathTerm, ActionsTerm)]. % Reuse maps to a special term reuse(Index). roc_action(reuse(Index), reuse(Index), reuse(Index)):- !. % New node creation maps to term create(Term). roc_action(create(Node), create(Term), VDom):- !, vdom_build(Node, Term, VDom). roc_action(Action, _, _):- throw(error(vdom_invalid_roc_action(Action), _)). path_term(Path, Term):- must_be(list, Path), reverse(Path, Reversed), Term =.. [path|Reversed].
29.954545
57
0.694487
ed55edbb7986d44b43896bddce9f43223d813d07
421
pl
Perl
perl/lib/unicore/lib/Blk/Oriya.pl
mnikolop/Thesis_project_CyberDoc
9a37fdd5a31de24cb902ee31ef19eb992faa1665
[ "Apache-2.0" ]
4
2018-04-20T07:27:13.000Z
2021-12-21T05:19:24.000Z
perl/lib/unicore/lib/Blk/Oriya.pl
mnikolop/Thesis_project_CyberDoc
9a37fdd5a31de24cb902ee31ef19eb992faa1665
[ "Apache-2.0" ]
4
2021-03-10T19:10:00.000Z
2021-05-11T14:58:19.000Z
perl/lib/unicore/lib/Blk/Oriya.pl
mnikolop/Thesis_project_CyberDoc
9a37fdd5a31de24cb902ee31ef19eb992faa1665
[ "Apache-2.0" ]
1
2019-11-12T02:29:26.000Z
2019-11-12T02:29:26.000Z
# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! # This file is machine-generated by mktables from the Unicode # database, Version 6.1.0. Any changes made here will be lost! # !!!!!!! INTERNAL PERL USE ONLY !!!!!!! # This file is for internal use by core Perl only. The format and even the # name or existence of this file are subject to change without notice. Don't # use it directly. return <<'END'; 0B00 0B7F END
30.071429
77
0.669834
ed5bab2737b37950ef854de67e1de8e5a24cd8f4
32,068
pl
Perl
pack/logicmoo_packages/prolog/trill/probabilistic/cancer_hard_1.pl
logicmoo/old_logicmoo_workspace
44025b6e389e2f2f7d86b46c1301cab0604bba26
[ "MIT" ]
1
2018-09-04T14:44:49.000Z
2018-09-04T14:44:49.000Z
pack/logicmoo_packages/prolog/trill/probabilistic/cancer_hard_1.pl
logicmoo/old_logicmoo_workspace
44025b6e389e2f2f7d86b46c1301cab0604bba26
[ "MIT" ]
null
null
null
pack/logicmoo_packages/prolog/trill/probabilistic/cancer_hard_1.pl
logicmoo/old_logicmoo_workspace
44025b6e389e2f2f7d86b46c1301cab0604bba26
[ "MIT" ]
null
null
null
/* QUERY 1: instanceOf('WomanUnderLifetimeBRCRisk','Helen',LE). P=0.123 EXPL: LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanUnderBRCRisk',intersectionOf(['Woman',someValuesFrom(hasRisk,'BRCRisk')])]),'Helen'),(equivalentClasses(['WomanUnderIncreasedBRCRisk',intersectionOf([someValuesFrom(hasRisk,'IncreasedBRCRisk'),'WomanUnderBRCRisk'])]),'Helen'),(equivalentClasses(['WomanUnderModeratelyIncreasedBRCRisk',intersectionOf(['WomanUnderIncreasedBRCRisk',someValuesFrom(hasRisk,'ModeratelyIncreasedBRCRisk')])]),'Helen'),(subClassOf('PostmenopausalWomanTakingEstrogen','WomanUnderModeratelyIncreasedBRCRisk'),'Helen'),(equivalentClasses(['PostmenopausalWomanTakingEstrogen',intersectionOf(['PostmenopausalWoman',someValuesFrom(hasRiskFactor,'Estrogen')])]),'Helen'),(equivalentClasses(['WomanTakingEstrogen',someValuesFrom(hasRiskFactor,'Estrogen')]),'Helen'),classAssertion('WomanTakingEstrogen','Helen'),classAssertion('PostmenopausalWoman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanUnderBRCRisk',intersectionOf(['Woman',someValuesFrom(hasRisk,'BRCRisk')])]),'Helen'),(equivalentClasses(['WomanUnderIncreasedBRCRisk',intersectionOf([someValuesFrom(hasRisk,'IncreasedBRCRisk'),'WomanUnderBRCRisk'])]),'Helen'),(subClassOf('WomanUnderModeratelyIncreasedBRCRisk','WomanUnderIncreasedBRCRisk'),'Helen'),(subClassOf('PostmenopausalWomanTakingEstrogen','WomanUnderModeratelyIncreasedBRCRisk'),'Helen'),(equivalentClasses(['PostmenopausalWomanTakingEstrogen',intersectionOf(['PostmenopausalWoman',someValuesFrom(hasRiskFactor,'Estrogen')])]),'Helen'),(equivalentClasses(['WomanTakingEstrogen',someValuesFrom(hasRiskFactor,'Estrogen')]),'Helen'),classAssertion('WomanTakingEstrogen','Helen'),classAssertion('PostmenopausalWoman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),classAssertion('Woman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(subClassOf('WomanTakingEstrogen','Woman'),'Helen'),classAssertion('WomanTakingEstrogen','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['PostmenopausalWoman',intersectionOf(['Woman',someValuesFrom(hasRiskFactor,'AfterMenopause')])]),'Helen'),classAssertion('PostmenopausalWoman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(subClassOf('PostmenopausalWoman','Woman'),'Helen'),classAssertion('PostmenopausalWoman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanAged3040',intersectionOf(['Woman',someValuesFrom(hasAge,'Age3040')])]),'Helen'),classAssertion('WomanAged3040','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanUnderShortTermBRCRisk',intersectionOf(['Woman',someValuesFrom(hasRisk,'ShortTermBRCRisk')])]),'Helen'),(subClassOf('WomanAged3040','WomanUnderShortTermBRCRisk'),'Helen'),classAssertion('WomanAged3040','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanUnderAbsoluteBRCRisk',intersectionOf(['Woman',someValuesFrom(hasRisk,'AbsoluteBRCRisk')])]),'Helen'),(subClassOf('WomanUnderShortTermBRCRisk','WomanUnderAbsoluteBRCRisk'),'Helen'),(subClassOf('WomanAged3040','WomanUnderShortTermBRCRisk'),'Helen'),classAssertion('WomanAged3040','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(subClassOf('WomanAged3040','Woman'),'Helen'),classAssertion('WomanAged3040','Helen')] ? ; */ equivalentClasses(['WomanTakingEstrogen',someValuesFrom('hasRiskFactor','Estrogen')]). equivalentClasses(['WomanTakingProgestin',someValuesFrom('hasRiskFactor','Progestin')]). equivalentClasses(['AbsoluteBRCRisk',intersectionOf(['BRCRisk',allValuesFrom('riskCategory','AbsoluteRiskCategory')])]). equivalentClasses(['AfricanAmericanWoman',intersectionOf(['Woman',someValuesFrom('hasRace','AfricanAmerican')])]). equivalentClasses(['Age50Plus',unionOf(['Age5060','Age70Plus','Age6070'])]). equivalentClasses(['AshkenaziJewishWoman',intersectionOf([someValuesFrom('hasRace','AshkenaziJew'),'Woman'])]). equivalentClasses(['BRCRType',intersectionOf(['RiskType',someValuesFrom('riskOf','BreastCancer')])]). equivalentClasses(['EstrogenProgestin',intersectionOf(['Estrogen','Progestin'])]). equivalentClasses(['EstrogenTestosterone',intersectionOf(['Testosterone','Estrogen'])]). equivalentClasses(['IncreasedBRCRisk',intersectionOf(['RelativeBRCRisk',allValuesFrom('riskCategory','IncreasedRiskCategory')])]). equivalentClasses(['ModeratelyIncreasedBRCRisk',intersectionOf([allValuesFrom('riskCategory','ModerateIncrease'),'IncreasedBRCRisk'])]). equivalentClasses(['ModeratelyReducedBRCRisk',allValuesFrom('riskCategory','ModerateDecrease')]). equivalentClasses(['OverweightWoman',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','Overweight')])]). equivalentClasses(['PersonUnderRisk',intersectionOf(['Person',someValuesFrom('hasRisk','Risk')])]). equivalentClasses(['PostmenopausalWoman',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','AfterMenopause')])]). equivalentClasses(['PostmenopausalWomanTakingEstrogen',intersectionOf(['PostmenopausalWoman',someValuesFrom('hasRiskFactor','Estrogen')])]). equivalentClasses(['PostmenopausalWomanTakingEstrogenAndProgestin',intersectionOf([someValuesFrom('hasRiskFactor','Estrogen'),someValuesFrom('hasRiskFactor','Progestin')])]). equivalentClasses(['PostmenopausalWomanTakingEstrogenAndTestosterone',intersectionOf([someValuesFrom('hasRiskFactor','Testosterone'),someValuesFrom('hasRiskFactor','Estrogen'),'PostmenopausalWoman'])]). equivalentClasses(['PostmenopausalWomanTakingProgestin',intersectionOf([someValuesFrom('hasRiskFactor','Progestin'),'PostmenopausalWoman'])]). equivalentClasses(['PostmenopausalWomanTakingTestosterone',intersectionOf([someValuesFrom('hasRiskFactor','Testosterone'),'PostmenopausalWoman'])]). equivalentClasses(['PostmenopausalWomanWithHighLevelOfEstrogen',intersectionOf(['PostmenopausalWoman','WomanWithHighLevelOfEstrogen'])]). equivalentClasses(['PremenopausalWoman',intersectionOf([someValuesFrom('hasRiskFactor','BeforeMenopause'),'Woman'])]). equivalentClasses(['ReducedBRCRisk',intersectionOf(['RelativeBRCRisk',someValuesFrom('riskCategory','ReducedRiskCategory')])]). equivalentClasses(['RelativeBRCRisk',intersectionOf(['BRCRisk',allValuesFrom('riskCategory','RelativeRiskCategory')])]). equivalentClasses(['SeniorWomanWithMotherBRCAffected',intersectionOf([intersectionOf(['Woman',someValuesFrom('hasRiskFactor','MotherAffected')]),someValuesFrom('hasAge','Age50Plus')])]). equivalentClasses(['StronglyIncreasedBRCRisk',intersectionOf(['IncreasedBRCRisk',allValuesFrom('riskCategory','StrongIncrease')])]). equivalentClasses(['StronglyReducedBRCRisk',allValuesFrom('riskCategory','StrongDecrease')]). equivalentClasses(['WeakelyIncreasedBRCRisk',intersectionOf([allValuesFrom('riskCategory','WeakIncrease'),'IncreasedBRCRisk'])]). equivalentClasses(['WeakelyReducedBRCRisk',allValuesFrom('riskCategory','WeakDecrease')]). equivalentClasses(['Woman',intersectionOf(['Person',someValuesFrom('hasGender','Female')])]). equivalentClasses(['WomanAbusingAlcohol',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','Alcohol')])]). equivalentClasses(['WomanAged2030',someValuesFrom('hasAge','Age2030')]). equivalentClasses(['WomanAged3040',intersectionOf(['Woman',someValuesFrom('hasAge','Age3040')])]). equivalentClasses(['WomanAged4050',someValuesFrom('hasAge','Age4050')]). equivalentClasses(['WomanAged5060',intersectionOf([someValuesFrom('hasAge','Age5060'),'Woman'])]). equivalentClasses(['WomanAged50Plus',intersectionOf(['Woman',someValuesFrom('hasAge','Age50Plus')])]). equivalentClasses(['WomanAged6070',someValuesFrom('hasAge','Age6070')]). equivalentClasses(['WomanAged70Plus',someValuesFrom('hasAge','Age70Plus')]). equivalentClasses(['WomanAgedUnder20',someValuesFrom('hasAge','AgeUnder20')]). equivalentClasses(['WomanAgedUnder50',intersectionOf(['Woman',someValuesFrom('hasAge','AgeUnder50')])]). equivalentClasses(['WomanExposedToRadiationDuringYouth',someValuesFrom('hasRiskFactor','RadiationExposureDuringYouth')]). equivalentClasses(['WomanHavingFirstPeriodBefore12',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','FirstPeriodBefore12')])]). equivalentClasses(['WomanLackingExercise',intersectionOf([someValuesFrom('hasRiskFactor','LackOfExercise'),'Woman'])]). equivalentClasses(['WomanTakingBirthControlPills',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','BirthControlPills')])]). equivalentClasses(['WomanTakingPostmenopausalHormones',intersectionOf([someValuesFrom('hasRiskFactor','PostmenopausalHormones'),'Woman'])]). equivalentClasses(['WomanUnderAbsoluteBRCRisk',intersectionOf(['Woman',someValuesFrom('hasRisk','AbsoluteBRCRisk')])]). equivalentClasses(['WomanUnderBRCRisk',intersectionOf(['Woman',someValuesFrom('hasRisk','BRCRisk')])]). equivalentClasses(['WomanUnderIncreasedBRCRisk',intersectionOf([someValuesFrom('hasRisk','IncreasedBRCRisk'),'WomanUnderBRCRisk'])]). equivalentClasses(['WomanUnderLifetimeBRCRisk',intersectionOf(['Woman',someValuesFrom('hasRisk','LifetimeBRCRisk')])]). equivalentClasses(['WomanUnderModeratelyIncreasedBRCRisk',intersectionOf(['WomanUnderIncreasedBRCRisk',someValuesFrom('hasRisk','ModeratelyIncreasedBRCRisk')])]). equivalentClasses(['WomanUnderModeratelyReducedBRCRisk',someValuesFrom('hasRisk','ModeratelyReducedBRCRisk')]). equivalentClasses(['WomanUnderReducedBRCRisk',intersectionOf(['WomanUnderBRCRisk',someValuesFrom('hasRisk','ReducedBRCRisk')])]). equivalentClasses(['WomanUnderRelativeBRCRisk',intersectionOf([someValuesFrom('hasRisk','RelativeBRCRisk'),'Woman'])]). equivalentClasses(['WomanUnderShortTermBRCRisk',intersectionOf(['Woman',someValuesFrom('hasRisk','ShortTermBRCRisk')])]). equivalentClasses(['WomanUnderStronglyIncreasedBRCRisk',intersectionOf([someValuesFrom('hasRisk','StronglyIncreasedBRCRisk'),'WomanUnderIncreasedBRCRisk'])]). equivalentClasses(['WomanUnderStronglyReducedBRCRisk',someValuesFrom('hasRisk','StronglyReducedBRCRisk')]). equivalentClasses(['WomanUnderWeakelyIncreasedBRCRisk',intersectionOf(['WomanUnderIncreasedBRCRisk',someValuesFrom('hasRisk','WeakelyIncreasedBRCRisk')])]). equivalentClasses(['WomanUnderWeakelyReducedBRCRisk',someValuesFrom('hasRisk','WeakelyReducedBRCRisk')]). equivalentClasses(['WomanWithAtypicalHyperplasia',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','AtypicalHyperplasia')])]). equivalentClasses(['WomanWithBRCA1Mutation',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','BRCA1Mutation')])]). equivalentClasses(['WomanWithBRCA2Mutation',intersectionOf([someValuesFrom('hasRiskFactor','BRCA2Mutation'),'Woman'])]). equivalentClasses(['WomanWithBRCAMutation',intersectionOf([someValuesFrom('hasRiskFactor','BRCAMutation'),'Woman'])]). equivalentClasses(['WomanWithCarcinomaInSitu',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','CarcinomaInSitu')])]). equivalentClasses(['WomanWithEarlyFirstChild',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','EarlyFirstChild')])]). equivalentClasses(['WomanWithEarlyFirstPeriodAndLateMenopause',intersectionOf(['WomanHavingFirstPeriodBefore12','WomanWithLateMenopause'])]). equivalentClasses(['WomanWithEarlyMenopause',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','EarlyMenopause')])]). equivalentClasses(['WomanWithFamilyBRCHistory',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','FamilyCancerHistory')])]). equivalentClasses(['WomanWithHighBoneDensity',intersectionOf([someValuesFrom('hasRiskFactor','HighBreastDensity'),'Woman'])]). equivalentClasses(['WomanWithHighBreastDensity',intersectionOf([someValuesFrom('hasRiskFactor','HighBreastDensity'),'Woman'])]). equivalentClasses(['WomanWithHighLevelOfEstrogen',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','HighLevelOfEstrogen')])]). equivalentClasses(['WomanWithImmediateRelativesBRCAffected',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','TwoImmediateRelativesAffected')])]). equivalentClasses(['WomanWithLateFirstChild',intersectionOf([someValuesFrom('hasRiskFactor','LateFirstChild'),'Woman'])]). equivalentClasses(['WomanWithLateMenopause',intersectionOf([someValuesFrom('hasRiskFactor','LateMenopause'),'Woman'])]). equivalentClasses(['WomanWithMotherAffectedAfterAge60',someValuesFrom('hasRiskFactor','MotherAffectedAfterAge60')]). equivalentClasses(['WomanWithMotherAffectedBeforeAge60',someValuesFrom('hasRiskFactor','MotherAffectedBeforeAge60')]). equivalentClasses(['WomanWithMotherBRCAffected',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','MotherAffected')])]). equivalentClasses(['WomanWithPersonalBRCHistory',intersectionOf([someValuesFrom('hasRiskFactor','PersonalBRCHistory'),'Woman'])]). equivalentClasses(['WomanWithRiskFactors',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','RiskFactor')])]). equivalentClasses(['WomanWithUsualHyperplasia',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','UsualHyperplasia')])]). equivalentClasses(['WomanWithoutBreastfeeding',intersectionOf([someValuesFrom('hasRiskFactor','NoBreastfeeding'),'Woman'])]). equivalentClasses(['WomanWithoutChildren',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','NoChildren'),someValuesFrom('hasRiskFactor',unionOf(['Age4050','Age50Plus','Age3040']))])]). disjointClasses(['AfricanAmerican','AshkenaziJew']). disjointClasses(['Age2030','Age3040']). disjointClasses(['Age2030','Age4050']). disjointClasses(['Age2030','Age5060']). disjointClasses(['Age2030','Age6070']). disjointClasses(['Age2030','Age70Plus']). disjointClasses(['Age2030','AgeUnder20']). disjointClasses(['Age3040','Age4050']). disjointClasses(['Age3040','Age6070']). disjointClasses(['Age3040','Age70Plus']). disjointClasses(['Age3040','AgeUnder20']). disjointClasses(['Age4050','Age70Plus']). disjointClasses(['Age5060','Age3040']). disjointClasses(['Age5060','Age4050']). disjointClasses(['Age5060','Age6070']). disjointClasses(['Age5060','Age70Plus']). disjointClasses(['Age6070','Age4050']). disjointClasses(['Age6070','Age70Plus']). disjointClasses(['AgeUnder20','Age4050']). disjointClasses(['AgeUnder50','Age50Plus']). disjointClasses(['AtypicalHyperplasia','UsualHyperplasia']). disjointClasses(['BeforeMenopause','AfterMenopause']). disjointClasses(['BeforeMenopause','LateMenopause']). disjointClasses(['EarlyFirstChild','LateFirstChild']). disjointClasses(['LateMenopause','EarlyMenopause']). disjointClasses(['ModerateDecrease','WeakDecrease']). disjointClasses(['MotherAffectedBeforeAge60','MotherAffectedAfterAge60']). disjointClasses(['PostmenopausalWoman','PremenopausalWoman']). disjointClasses(['StrongDecrease','ModerateDecrease']). disjointClasses(['StrongDecrease','WeakDecrease']). disjointClasses(['StrongIncrease','ModerateIncrease']). disjointClasses(['StrongIncrease','WeakIncrease']). disjointClasses(['WeakIncrease','ModerateIncrease']). disjointClasses(['WomanUnderModeratelyIncreasedBRCRisk','WomanUnderStronglyIncreasedBRCRisk']). disjointClasses(['WomanUnderModeratelyReducedBRCRisk','WomanUnderStronglyReducedBRCRisk']). disjointClasses(['WomanUnderModeratelyReducedBRCRisk','WomanUnderWeakelyReducedBRCRisk']). disjointClasses(['WomanUnderReducedBRCRisk','WomanUnderIncreasedBRCRisk']). disjointClasses(['WomanUnderStronglyReducedBRCRisk','WomanUnderWeakelyReducedBRCRisk']). disjointClasses(['WomanUnderWeakelyIncreasedBRCRisk','WomanUnderModeratelyIncreasedBRCRisk']). disjointClasses(['WomanUnderWeakelyIncreasedBRCRisk','WomanUnderStronglyIncreasedBRCRisk']). disjointClasses(['WomanWithLateFirstChild','WomanWithEarlyFirstChild']). disjointClasses(['WomanWithLateFirstChild','WomanWithoutChildren']). disjointClasses(['WomanWithoutChildren','WomanWithEarlyFirstChild']). subClassOf('WomanTakingEstrogen','Woman'). subClassOf('WomanTakingProgestin','Woman'). subClassOf('AbsoluteBRCRisk','BRCRisk'). subClassOf('AbsoluteRiskCategory','RiskCategory'). subClassOf('AfricanAmerican','Ethnicity'). subClassOf('AfricanAmericanWoman','Woman'). subClassOf('AfterMenopause','KnownFactor'). subClassOf('Age','KnownFactor'). subClassOf('Age2030','AgeUnder50'). subClassOf('Age3040','AgeUnder50'). subClassOf('Age4050','AgeUnder50'). subClassOf('Age5060','Age'). subClassOf('Age50Plus','Age'). subClassOf('Age6070','Age'). subClassOf('Age70Plus','Age'). subClassOf('AgeUnder20','AgeUnder50'). subClassOf('AgeUnder50','Age'). subClassOf('Alcohol','KnownFactor'). subClassOf('AshkenaziJew','Ethnicity'). subClassOf('AshkenaziJewishWoman','Woman'). subClassOf('AshkenaziJewishWoman','WomanWithBRCAMutation'). subClassOf('AtypicalHyperplasia','BenignBreastDisease'). subClassOf('BRCA1Mutation','BRCAMutation'). subClassOf('BRCA2Mutation','BRCAMutation'). subClassOf('BRCAMutation','InferredFactor'). subClassOf('BRCRisk',intersectionOf([someValuesFrom('riskType','BRCRType'),'Risk'])). subClassOf('BeforeMenopause','KnownFactor'). subClassOf('BenignBreastDisease','InferredFactor'). subClassOf('BirthControlPills','KnownFactor'). subClassOf('BreastCancer','Cancer'). subClassOf('Cancer','Disease'). subClassOf('CarcinomaInSitu','InferredFactor'). subClassOf('Disease','http://www.w3.org/2002/07/owl#Thing'). subClassOf('EarlyFirstChild','KnownFactor'). subClassOf('EarlyMenopause','KnownFactor'). subClassOf('Estrogen','PostmenopausalHormones'). subClassOf('EstrogenProgestin','PostmenopausalHormones'). subClassOf('EstrogenTestosterone','PostmenopausalHormones'). subClassOf('Ethnicity','http://www.w3.org/2002/07/owl#Thing'). subClassOf('FamilyCancerHistory','KnownFactor'). subClassOf('Female','Gender'). subClassOf('FirstPeriodBefore12','KnownFactor'). subClassOf('Gender','http://www.w3.org/2002/07/owl#Thing'). subClassOf('HighBoneDensity','InferredFactor'). subClassOf('HighBreastDensity','InferredFactor'). subClassOf('HighLevelOfEstrogen','InferredFactor'). subClassOf('IncreasedBRCRisk','RelativeBRCRisk'). subClassOf('IncreasedRiskCategory','RelativeRiskCategory'). subClassOf('InferredFactor','RiskFactor'). subClassOf('KnownFactor','RiskFactor'). subClassOf('LackOfExercise','KnownFactor'). subClassOf('LateFirstChild','KnownFactor'). subClassOf('LateMenopause','KnownFactor'). subClassOf('LifetimeBRCRisk','AbsoluteBRCRisk'). subClassOf('Male','Gender'). subClassOf('ModerateDecrease','ReducedRiskCategory'). subClassOf('ModerateIncrease','IncreasedRiskCategory'). subClassOf('ModeratelyIncreasedBRCRisk','IncreasedBRCRisk'). subClassOf('ModeratelyReducedBRCRisk','ReducedBRCRisk'). subClassOf('MotherAffected','FamilyCancerHistory'). subClassOf('MotherAffectedAfterAge60','MotherAffected'). subClassOf('MotherAffectedBeforeAge60','MotherAffected'). subClassOf('NoBreastfeeding','KnownFactor'). subClassOf('NoChildren','NoBreastfeeding'). subClassOf('Overweight','KnownFactor'). subClassOf('OverweightWoman','Woman'). subClassOf('Person','http://www.w3.org/2002/07/owl#Thing'). subClassOf('Person',someValuesFrom('hasGender','Gender')). subClassOf('PersonUnderRisk','Person'). subClassOf('PersonalBRCHistory','KnownFactor'). subClassOf('PostmenopausalHormones','KnownFactor'). subClassOf('PostmenopausalWoman','Woman'). subClassOf('PostmenopausalWomanTakingEstrogenAndProgestin','PostmenopausalWoman'). subClassOf('PostmenopausalWomanTakingEstrogenAndTestosterone','PostmenopausalWoman'). subClassOf('PostmenopausalWomanWithHighLevelOfEstrogen','Woman'). subClassOf('PremenopausalWoman','Woman'). subClassOf('Progestin','PostmenopausalHormones'). subClassOf('RadiationExposureDuringYouth','KnownFactor'). subClassOf('ReducedBRCRisk','RelativeBRCRisk'). subClassOf('ReducedRiskCategory','RelativeRiskCategory'). subClassOf('RelativeBRCRisk','BRCRisk'). subClassOf('RelativeRiskCategory','RiskCategory'). subClassOf('Risk','http://www.w3.org/2002/07/owl#Thing'). subClassOf('RiskCategory','http://www.w3.org/2002/07/owl#Thing'). subClassOf('RiskFactor','http://www.w3.org/2002/07/owl#Thing'). subClassOf('RiskFactor',allValuesFrom('relatedToDisease','Disease')). subClassOf('RiskType',intersectionOf(['http://www.w3.org/2002/07/owl#Thing',someValuesFrom('riskOf','Disease')])). subClassOf('SeniorWomanWithMotherBRCAffected','Woman'). subClassOf('ShortTermBRCRisk','AbsoluteBRCRisk'). subClassOf('StrongDecrease','ReducedRiskCategory'). subClassOf('StrongIncrease','IncreasedRiskCategory'). subClassOf('StronglyIncreasedBRCRisk','IncreasedBRCRisk'). subClassOf('StronglyReducedBRCRisk','ReducedBRCRisk'). subClassOf('Testosterone','PostmenopausalHormones'). subClassOf('TwoImmediateRelativesAffected','FamilyCancerHistory'). subClassOf('UsualHyperplasia','BenignBreastDisease'). subClassOf('WeakDecrease','ReducedRiskCategory'). subClassOf('WeakIncrease','IncreasedRiskCategory'). subClassOf('WeakelyIncreasedBRCRisk','IncreasedBRCRisk'). subClassOf('WeakelyReducedBRCRisk','ReducedBRCRisk'). subClassOf('Woman','http://www.w3.org/2002/07/owl#Thing'). subClassOf('Woman','WomanUnderLifetimeBRCRisk'). subClassOf('WomanAbusingAlcohol','Woman'). subClassOf('WomanAged2030','Woman'). subClassOf('WomanAged3040','Woman'). subClassOf('WomanAged4050','Woman'). subClassOf('WomanAged5060','Woman'). subClassOf('WomanAged6070','Woman'). subClassOf('WomanAged70Plus','Woman'). subClassOf('WomanAgedUnder20','Woman'). subClassOf('WomanAgedUnder50','WomanWithRiskFactors'). subClassOf('WomanExposedToRadiationDuringYouth','Woman'). subClassOf('WomanHavingFirstPeriodBefore12','Woman'). subClassOf('WomanLackingExercise','Woman'). subClassOf('WomanTakingBirthControlPills','Woman'). subClassOf('WomanTakingPostmenopausalHormones','Woman'). subClassOf('WomanUnderLifetimeBRCRisk','WomanUnderAbsoluteBRCRisk'). subClassOf('WomanUnderModeratelyIncreasedBRCRisk','WomanUnderIncreasedBRCRisk'). subClassOf('WomanUnderModeratelyReducedBRCRisk','WomanUnderReducedBRCRisk'). subClassOf('WomanUnderRelativeBRCRisk','Woman'). subClassOf('WomanUnderShortTermBRCRisk','WomanUnderAbsoluteBRCRisk'). subClassOf('WomanUnderStronglyIncreasedBRCRisk','WomanUnderIncreasedBRCRisk'). subClassOf('WomanUnderStronglyReducedBRCRisk','WomanUnderReducedBRCRisk'). subClassOf('WomanUnderWeakelyIncreasedBRCRisk','WomanUnderIncreasedBRCRisk'). subClassOf('WomanUnderWeakelyReducedBRCRisk','WomanUnderReducedBRCRisk'). subClassOf('WomanWithAtypicalHyperplasia','Woman'). subClassOf('WomanWithBRCA1Mutation','WomanUnderLifetimeBRCRisk'). subClassOf('WomanWithBRCAMutation','WomanWithRiskFactors'). subClassOf('WomanWithBRCAMutation','WomanUnderLifetimeBRCRisk'). subClassOf('WomanWithBRCAMutation','WomanUnderLifetimeBRCRisk'). subClassOf('WomanWithCarcinomaInSitu','Woman'). subClassOf('WomanWithEarlyFirstChild','Woman'). subClassOf('WomanWithEarlyFirstPeriodAndLateMenopause','Woman'). subClassOf('WomanWithEarlyMenopause','PostmenopausalWoman'). subClassOf('WomanWithEarlyMenopause','Woman'). subClassOf('WomanWithFamilyBRCHistory','Woman'). subClassOf('WomanWithHighBoneDensity','Woman'). subClassOf('WomanWithHighBreastDensity','Woman'). subClassOf('WomanWithHighLevelOfEstrogen','Woman'). subClassOf('WomanWithImmediateRelativesBRCAffected','Woman'). subClassOf('WomanWithLateFirstChild','Woman'). subClassOf('WomanWithLateMenopause','PostmenopausalWoman'). subClassOf('WomanWithLateMenopause','Woman'). subClassOf('WomanWithMotherAffectedAfterAge60','WomanWithMotherBRCAffected'). subClassOf('WomanWithMotherAffectedBeforeAge60','WomanWithMotherBRCAffected'). subClassOf('WomanWithMotherBRCAffected','Woman'). subClassOf('WomanWithRiskFactors','Woman'). subClassOf('WomanWithUsualHyperplasia','Woman'). subClassOf('WomanWithoutBreastfeeding','Woman'). subClassOf('WomanWithoutChildren','Woman'). subClassOf('WomanAgedUnder20','WomanUnderShortTermBRCRisk'). subClassOf('WomanAged3040','WomanUnderShortTermBRCRisk'). subClassOf('WomanAged6070','WomanUnderShortTermBRCRisk'). subClassOf('WomanWithMotherAffectedBeforeAge60','WomanUnderModeratelyIncreasedBRCRisk'). subClassOf('WomanWithLateMenopause','WomanUnderModeratelyIncreasedBRCRisk'). subClassOf('PostmenopausalWomanTakingEstrogen','WomanUnderModeratelyIncreasedBRCRisk'). subClassOf('PostmenopausalWomanTakingProgestin','WomanUnderModeratelyIncreasedBRCRisk'). subClassOf('WomanHavingFirstPeriodBefore12','WomanWithHighLevelOfEstrogen'). subPropertyOf('hasAge','hasRiskFactor'). subPropertyOf('willDevelopInLongTerm','willDevelop'). subPropertyOf('willDevelopInShortTerm','willDevelop'). functionalProperty('hasAge'). functionalProperty('hasGender'). functionalProperty('riskCategory'). functionalProperty('riskOf'). functionalProperty('riskType'). functionalProperty('increaseFactor'). propertyDomain('hasAge','Person'). propertyDomain('hasGender','Person'). propertyDomain('hasRace','Person'). propertyDomain('hasRisk','Person'). propertyDomain('hasRiskFactor','Person'). propertyDomain('relatedToDisease','RiskFactor'). propertyDomain('riskCategory','Risk'). propertyDomain('riskOf','RiskType'). propertyDomain('riskType','Risk'). propertyDomain('willDevelop','Person'). propertyDomain('willDevelopInLongTerm','Person'). propertyDomain('willDevelopInShortTerm','Person'). propertyDomain('increaseFactor','RelativeRiskCategory'). propertyRange('hasAge','Age'). propertyRange('hasGender','Gender'). propertyRange('hasRace','Ethnicity'). propertyRange('hasRisk','Risk'). propertyRange('hasRiskFactor','RiskFactor'). propertyRange('relatedToDisease','Disease'). propertyRange('riskCategory','RiskCategory'). propertyRange('riskOf','Disease'). propertyRange('riskType','RiskType'). propertyRange('willDevelop','Disease'). propertyRange('willDevelopInLongTerm','Disease'). propertyRange('willDevelopInShortTerm','Disease'). propertyRange('increaseFactor','http://www.w3.org/2001/XMLSchema#decimal'). classAssertion('Woman','Helen'). classAssertion('WomanTakingEstrogen','Helen'). classAssertion('PostmenopausalWoman','Helen'). classAssertion('WomanAged3040','Helen'). /* objectProperty('hasAge'). objectProperty('hasGender'). objectProperty('hasRace'). objectProperty('hasRisk'). objectProperty('hasRiskFactor'). objectProperty('relatedToDisease'). objectProperty('riskCategory'). objectProperty('riskOf'). objectProperty('riskType'). objectProperty('willDevelop'). objectProperty('willDevelopInLongTerm'). objectProperty('willDevelopInShortTerm'). dataProperty('increaseFactor'). dataProperty('http://www.w3.org/2006/12/owl11#maxExclusive'). dataProperty('http://www.w3.org/2006/12/owl11#minExclusive'). annotationProperty('http://www.w3.org/2000/01/rdf-schema#label'). annotationProperty('http://www.w3.org/2000/01/rdf-schema#comment'). annotationProperty('https://sites.google.com/a/unife.it/ml/bundle#probability'). class('WomanTakingEstrogen'). class('WomanTakingProgestin'). class('AbsoluteBRCRisk'). class('AbsoluteRiskCategory'). class('AfricanAmerican'). class('AfricanAmericanWoman'). class('AfterMenopause'). class('Age'). class('Age2030'). class('Age3040'). class('Age4050'). class('Age5060'). class('Age50Plus'). class('Age6070'). class('Age70Plus'). class('AgeUnder20'). class('AgeUnder50'). class('Alcohol'). class('AshkenaziJew'). class('AshkenaziJewishWoman'). class('AtypicalHyperplasia'). class('BRCA1Mutation'). class('BRCA2Mutation'). class('BRCAMutation'). class('BRCRType'). class('BRCRisk'). class('BeforeMenopause'). class('BenignBreastDisease'). class('BirthControlPills'). class('BreastCancer'). class('Cancer'). class('CarcinomaInSitu'). class('Disease'). class('EarlyFirstChild'). class('EarlyMenopause'). class('Estrogen'). class('EstrogenProgestin'). class('EstrogenTestosterone'). class('Ethnicity'). class('FamilyCancerHistory'). class('Female'). class('FirstPeriodBefore12'). class('Gender'). class('HighBoneDensity'). class('HighBreastDensity'). class('HighLevelOfEstrogen'). class('IncreasedBRCRisk'). class('IncreasedRiskCategory'). class('InferredFactor'). class('KnownFactor'). class('LackOfExercise'). class('LateFirstChild'). class('LateMenopause'). class('LifetimeBRCRisk'). class('Male'). class('ModerateDecrease'). class('ModerateIncrease'). class('ModeratelyIncreasedBRCRisk'). class('ModeratelyReducedBRCRisk'). class('MotherAffected'). class('MotherAffectedAfterAge60'). class('MotherAffectedBeforeAge60'). class('NoBreastfeeding'). class('NoChildren'). class('Overweight'). class('OverweightWoman'). class('Person'). class('PersonUnderRisk'). class('PersonalBRCHistory'). class('PostmenopausalHormones'). class('PostmenopausalWoman'). class('PostmenopausalWomanTakingEstrogen'). class('PostmenopausalWomanTakingEstrogenAndProgestin'). class('PostmenopausalWomanTakingEstrogenAndTestosterone'). class('PostmenopausalWomanTakingProgestin'). class('PostmenopausalWomanTakingTestosterone'). class('PostmenopausalWomanWithHighLevelOfEstrogen'). class('PremenopausalWoman'). class('Progestin'). class('RadiationExposureDuringYouth'). class('ReducedBRCRisk'). class('ReducedRiskCategory'). class('RelativeBRCRisk'). class('RelativeRiskCategory'). class('Risk'). class('RiskCategory'). class('RiskFactor'). class('RiskType'). class('SeniorWomanWithMotherBRCAffected'). class('ShortTermBRCRisk'). class('StrongDecrease'). class('StrongIncrease'). class('StronglyIncreasedBRCRisk'). class('StronglyReducedBRCRisk'). class('Testosterone'). class('TwoImmediateRelativesAffected'). class('UsualHyperplasia'). class('WeakDecrease'). class('WeakIncrease'). class('WeakelyIncreasedBRCRisk'). class('WeakelyReducedBRCRisk'). class('Woman'). class('WomanAbusingAlcohol'). class('WomanAged2030'). class('WomanAged3040'). class('WomanAged4050'). class('WomanAged5060'). class('WomanAged50Plus'). class('WomanAged6070'). class('WomanAged70Plus'). class('WomanAgedUnder20'). class('WomanAgedUnder50'). class('WomanExposedToRadiationDuringYouth'). class('WomanHavingFirstPeriodBefore12'). class('WomanLackingExercise'). class('WomanTakingBirthControlPills'). class('WomanTakingPostmenopausalHormones'). class('WomanUnderAbsoluteBRCRisk'). class('WomanUnderBRCRisk'). class('WomanUnderIncreasedBRCRisk'). class('WomanUnderLifetimeBRCRisk'). class('WomanUnderModeratelyIncreasedBRCRisk'). class('WomanUnderModeratelyReducedBRCRisk'). class('WomanUnderReducedBRCRisk'). class('WomanUnderRelativeBRCRisk'). class('WomanUnderShortTermBRCRisk'). class('WomanUnderStronglyIncreasedBRCRisk'). class('WomanUnderStronglyReducedBRCRisk'). class('WomanUnderWeakelyIncreasedBRCRisk'). class('WomanUnderWeakelyReducedBRCRisk'). class('WomanWithAtypicalHyperplasia'). class('WomanWithBRCA1Mutation'). class('WomanWithBRCA2Mutation'). class('WomanWithBRCAMutation'). class('WomanWithCarcinomaInSitu'). class('WomanWithEarlyFirstChild'). class('WomanWithEarlyFirstPeriodAndLateMenopause'). class('WomanWithEarlyMenopause'). class('WomanWithFamilyBRCHistory'). class('WomanWithHighBoneDensity'). class('WomanWithHighBreastDensity'). class('WomanWithHighLevelOfEstrogen'). class('WomanWithImmediateRelativesBRCAffected'). class('WomanWithLateFirstChild'). class('WomanWithLateMenopause'). class('WomanWithMotherAffectedAfterAge60'). class('WomanWithMotherAffectedBeforeAge60'). class('WomanWithMotherBRCAffected'). class('WomanWithPersonalBRCHistory'). class('WomanWithRiskFactors'). class('WomanWithUsualHyperplasia'). class('WomanWithoutBreastfeeding'). class('WomanWithoutChildren'). class('http://www.w3.org/2002/07/owl#Thing'). */ p(subClassOf('AshkenaziJewishWoman','WomanWithBRCAMutation'),0.025). p(subClassOf('PostmenopausalWomanTakingEstrogen','WomanUnderWeakelyIncreasedBRCRisk'),0.67). p(subClassOf('PostmenopausalWomanTakingTestosterone','subClassOf WomanUnderWeakelyIncreasedBRCRisk'),0.85). p(subClassOf('PostmenopausalWomanTakingEstrogenAndProgestin','WomanUnderWeakelyIncreasedBRCRisk'),0.35). p(subClassOf('WomanWithMotherAffectedAfterAge60','WomanUnderWeakelyIncreasedBRCRisk'),1.0). p(subClassOf('WomanWithBRCAMutation','WomanUnderLifetimeBRCRisk'),0.85). p(subClassOf('PostmenopausalWomanTakingProgestin','WomanUnderWeakelyIncreasedBRCRisk'),0.13). p(subClassOf('WomanWithBRCA1Mutation','WomanUnderLifetimeBRCRisk'),0.8). p(subClassOf('PostmenopausalWomanTakingEstrogenAndTestosterone','WomanUnderWeakelyIncreasedBRCRisk'),0.21). p(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),0.123).
59.385185
921
0.808657
73f61d0a723b4680e393a08451d95a5e3d35a2a5
2,542
pm
Perl
auto-lib/Paws/Route53Domains/ExtraParam.pm
shogo82148/aws-sdk-perl
a87555a9d30dd1415235ebacd2715b2f7e5163c7
[ "Apache-2.0" ]
null
null
null
auto-lib/Paws/Route53Domains/ExtraParam.pm
shogo82148/aws-sdk-perl
a87555a9d30dd1415235ebacd2715b2f7e5163c7
[ "Apache-2.0" ]
null
null
null
auto-lib/Paws/Route53Domains/ExtraParam.pm
shogo82148/aws-sdk-perl
a87555a9d30dd1415235ebacd2715b2f7e5163c7
[ "Apache-2.0" ]
null
null
null
# Generated by default/object.tt package Paws::Route53Domains::ExtraParam; use Moose; has Name => (is => 'ro', isa => 'Str', required => 1); has Value => (is => 'ro', isa => 'Str', required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::Route53Domains::ExtraParam =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::Route53Domains::ExtraParam object: $service_obj->Method(Att1 => { Name => $value, ..., Value => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Route53Domains::ExtraParam object: $result = $service_obj->Method(...); $result->Att1->Name =head1 DESCRIPTION ExtraParam includes the following elements. =head1 ATTRIBUTES =head2 B<REQUIRED> Name => Str Name of the additional parameter required by the top-level domain. Here are the top-level domains that require additional parameters and which parameters they require: =over =item * B<.com.au and .net.au:> C<AU_ID_NUMBER> and C<AU_ID_TYPE> =item * B<.ca:> C<BRAND_NUMBER>, C<CA_LEGAL_TYPE>, and C<CA_BUSINESS_ENTITY_TYPE> =item * B<.es:> C<ES_IDENTIFICATION>, C<ES_IDENTIFICATION_TYPE>, and C<ES_LEGAL_FORM> =item * B<.fi:> C<BIRTH_DATE_IN_YYYY_MM_DD>, C<FI_BUSINESS_NUMBER>, C<FI_ID_NUMBER>, C<FI_NATIONALITY>, and C<FI_ORGANIZATION_TYPE> =item * B<.fr:> C<BRAND_NUMBER>, C<BIRTH_DEPARTMENT>, C<BIRTH_DATE_IN_YYYY_MM_DD>, C<BIRTH_COUNTRY>, and C<BIRTH_CITY> =item * B<.it:> C<BIRTH_COUNTRY>, C<IT_PIN>, and C<IT_REGISTRANT_ENTITY_TYPE> =item * B<.ru:> C<BIRTH_DATE_IN_YYYY_MM_DD> and C<RU_PASSPORT_DATA> =item * B<.se:> C<BIRTH_COUNTRY> and C<SE_ID_NUMBER> =item * B<.sg:> C<SG_ID_NUMBER> =item * B<.co.uk, .me.uk, and .org.uk:> C<UK_CONTACT_TYPE> and C<UK_COMPANY_NUMBER> =back In addition, many TLDs require C<VAT_NUMBER>. =head2 B<REQUIRED> Value => Str Values corresponding to the additional parameter names required by some top-level domains. =head1 SEE ALSO This class forms part of L<Paws>, describing an object used in L<Paws::Route53Domains> =head1 BUGS and CONTRIBUTIONS The source code is located here: L<https://github.com/pplu/aws-sdk-perl> Please report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues> =cut
21.361345
103
0.72974
73e2ac434fed1e19d9863b7e9639a3c2eafed63b
1,861
pl
Perl
iconf/etc/ssh/sshd_config/50sftp.pl
FelixJacobi/stsbl-iserv-sftp
ca4f2c8b5cf5247af7fcde41fafa0a0d8c507ae9
[ "MIT" ]
null
null
null
iconf/etc/ssh/sshd_config/50sftp.pl
FelixJacobi/stsbl-iserv-sftp
ca4f2c8b5cf5247af7fcde41fafa0a0d8c507ae9
[ "MIT" ]
null
null
null
iconf/etc/ssh/sshd_config/50sftp.pl
FelixJacobi/stsbl-iserv-sftp
ca4f2c8b5cf5247af7fcde41fafa0a0d8c507ae9
[ "MIT" ]
null
null
null
#!/usr/bin/perl -CSDAL use warnings; use strict; use IServ::Conf; use IServ::DB; my @GrpSSH = @{ $conf->{GrpSSH} }; my $has_root = 0; print "\n"; print "# General rules for SFTP access\n\n"; print "# --- WARNING: DO NOT CHANGE THIS MATCH BLOCK BY HAND! --- \n\n"; print "# To exclude groups from this Match block, add them to GrpSSH\n". "# in iservcfg.\n\n"; print "# Exclude groups from GrpSSH and iserv-remote-support here to allow port\n". "# forwarding and shell access in general. GrpSSH users without shell are\n". "# limited to the sftp subsystem and chroot beyond (port forwarding is still\n". "# allowed).\n"; print "Match Group *,"; for (@GrpSSH) { $has_root = 1 if $_ eq "root"; print "!$_,"; } if (not $has_root) { print "!root,"; } print "!iserv-remote-support\n"; print " ChrootDirectory /sftp-chroot\n"; print " X11Forwarding no\n"; print " AllowTcpForwarding no\n"; print "Match All\n\n"; my %limited_users; for (@GrpSSH) { my @users = IServ::DB::SelectCol "SELECT ActUser FROM members WHERE ActGrp = ?", $_; foreach my $user (@users) { next if defined $limited_users{$user}; my @pwnam = getpwnam $user; next if not $pwnam[8] =~ /^(\/usr\/sbin\/nologin|\/bin\/false|\/usr\/bin\/rssh)$/; $limited_users{$user} = 1; } } if (keys %limited_users > 0) { print "# Limit members of groups from GrpSSH without shell to chroot and sftp\n\n"; print "# --- WARNING: DO NOT CHANGE THIS MATCH BLOCK BY HAND! --- \n\n"; print "# To remove users which you just granted shell access from this block\n". "# run \"iservchk sshd\". The users also must have a membership in one\n". "# of the groups listed in the GrpSSH setting in iservfg.\n"; my $users = join ",", sort keys %limited_users; print "Match User $users\n"; print " ChrootDirectory /sftp-chroot\n"; print "Match All\n\n"; }
28.19697
86
0.654487
ed468eadc84d787a7fd9eb2fdedeea8ad513e35b
11,677
t
Perl
perl/shop/t/LastUpdate.t
ogoranskyy/soapclient
5a5f075df39271789b90a7e63302f5811e4291b5
[ "Apache-2.0" ]
null
null
null
perl/shop/t/LastUpdate.t
ogoranskyy/soapclient
5a5f075df39271789b90a7e63302f5811e4291b5
[ "Apache-2.0" ]
null
null
null
perl/shop/t/LastUpdate.t
ogoranskyy/soapclient
5a5f075df39271789b90a7e63302f5811e4291b5
[ "Apache-2.0" ]
null
null
null
use strict; use Test::More; use WebServiceClient; use WebServiceConfiguration qw( WEBSERVICE_URL WEBSERVICE_USER ); # Create a SOAP::Lite client object my $UpdateService = WebServiceClient ->uri( 'urn://epages.de/WebService/ChangeLogService/2014/06' ) ->proxy( WEBSERVICE_URL ) ->userinfo( WEBSERVICE_USER ) ->xmlschema('2001'); my $ProductService = WebServiceClient ->uri( 'urn://epages.de/WebService/ProductService/2013/01' ) ->proxy( WEBSERVICE_URL ) ->userinfo( WEBSERVICE_USER ) ->xmlschema('2001'); my $CustomerService = WebServiceClient ->uri( 'urn://epages.de/WebService/CustomerService/2013/01' ) ->proxy( WEBSERVICE_URL ) ->userinfo( WEBSERVICE_USER ) ->xmlschema('2001'); sub createTestProducts { my @Aliases = @_; foreach my $Alias (@Aliases) { $ProductService->create([{ Alias => $Alias, Name => [{ LanguageCode => 'de', 'Value' => SOAP::Data->type('string')->value("TestProduct $Alias") }], StockLevel => 1, ProductPrices => [{CurrencyID => 'EUR', Price => 1, TaxModel => 'gross', }], }]); } } sub updateStockLevel { my @Aliases = @_; foreach my $Alias (@Aliases) { $ProductService->update([{ Path => "Products/$Alias", StockLevel => 2, }]); } } sub updateListPrice { my @Aliases = @_; foreach my $Alias (@Aliases) { $ProductService->update([{ Path => "Products/$Alias", ProductPrices => [{CurrencyID=>'EUR',Price=>2,TaxModel=>'gross'}], }]); } } sub updateContent { my @Aliases = @_; foreach my $Alias (@Aliases) { $ProductService->update([{ Path => "Products/$Alias", Name => [{ LanguageCode => 'de', 'Value' => SOAP::Data->type('string')->value("TestProduct $Alias updated") }], }]); } } sub removeTestProducts { my @Aliases = @_; foreach my $Alias (@Aliases) { $ProductService->delete(["Products/$Alias"]); } } sub createTestCustomers { my @Aliases = @_; foreach my $Alias (@Aliases) { $CustomerService->create([{ Alias => $Alias, BillingAddress => { EMail => $Alias.'-perl-test@epages.de', FirstName => 'Klaus', LastName => 'Klaussen', Street => SOAP::Data->type('string')->value('Musterweg 42'), CountryID => 276, }, }]); } } sub removeTestCustomers { my @Aliases = @_; foreach my $Alias (@Aliases) { $CustomerService->delete(["Customers/$Alias"]); } } sub updateAddress { my @Aliases = @_; foreach my $Alias (@Aliases) { $CustomerService->update([{ Path => "Customers/$Alias", BillingAddress => { FirstName => 'Klausimausi'}, }]); } } # run test suite use Data::Dumper; my @TestProducts = qw(Alias-01 Alias-02 Alias-03); my @TestCustomers = qw(Cust-01 Cust-02); removeTestCustomers(@TestCustomers); removeTestProducts(@TestProducts); #remove old values #get last sync time and number of created products my $response = $UpdateService->findCreatedObjects('2013-04-14T03:44:55', 'Product'); ok( !$response->fault, 'findCreatedObjects called to get sync date' ); my $LastSync = $response->result->{LatestCreate}; my $LastSyncNumber = scalar @{$response->result->{CreatedObjects}}; cmp_ok($LastSyncNumber, '>=', 0, "$LastSyncNumber created Products initial"); #get creates products again only since last sync $response = $UpdateService->findCreatedObjects($LastSync, 'Product'); ok( !$response->fault, "findCreatedObjects($LastSync,'Product') called" ); my $ahCreates = $response->result->{CreatedObjects}; my $LastCreateNumber = scalar @$ahCreates; ok( $LastCreateNumber >= 0, "$LastCreateNumber created Products at last sync time $LastSync"); #check if nothing of test products in the result foreach my $Alias (@TestProducts) { unlike( join(',', map {$_->{Path}} @$ahCreates), qr|Products/$Alias$|, "$Alias not in findCreatedObjects call before create TestProducts" ); } #get creates customers since last sync $response = $UpdateService->findCreatedObjects($LastSync, 'Customer'); ok( !$response->fault, "findCreatedObjects($LastSync,'Product') called" ); $ahCreates = $response->result->{CreatedObjects}; my $LastCreateCustNumber = scalar @$ahCreates; ok( $LastCreateCustNumber >= 0, "$LastCreateCustNumber created Customer at last sync time $LastSync"); #check if nothing of test customer in the result foreach my $Alias (@TestCustomers) { unlike( join(',', map {$_->{Path}} @$ahCreates), qr|Customers/$Alias$|, "$Alias not in findCreatedObjects call before create TestCustomers" ); } #get products since last sync which updated Content,StockLevel,ListPrice $response = $UpdateService->findUpdatedObjects($LastSync, 'Product', 'Content'); ok( !$response->fault, "findUpdatedObjects($LastSync, 'Product', 'Content' called" ); my $ahUpdates = $response->result->{UpdatedObjects}; my $LastUpdateNumber = scalar @$ahUpdates; ok( $LastUpdateNumber >= 0, "$LastUpdateNumber Content updated Products at last sync time $LastSync"); #check if nothing of test products in the result foreach my $Alias (@TestProducts) { unlike( join(',', map {$_->{Path}} @$ahUpdates), qr|Products/$Alias$|, "$Alias not in findUpdatedObjects Content call" ); } $response = $UpdateService->findUpdatedObjects($LastSync, 'Product', 'StockLevel'); ok( !$response->fault, "findUpdatedObjects($LastSync, 'Product', 'StockLevel' called" ); $ahUpdates = $response->result->{UpdatedObjects}; my $LastStockNumber = scalar @$ahUpdates; ok( $LastStockNumber >= 0, "$LastStockNumber StockLevel updated Products at last sync time $LastSync"); #check if nothing of test products in the result foreach my $Alias (@TestProducts) { unlike( join(',', map {$_->{Path}} @$ahUpdates), qr|Products/$Alias$|, "$Alias not in findUpdatedObjects StockLevel call" ); } $response = $UpdateService->findUpdatedObjects($LastSync, 'Product', 'ListPrice'); ok( !$response->fault, "findUpdatedObjects($LastSync, 'Product', 'ListPrice' called" ); $ahUpdates = $response->result->{UpdatedObjects}; my $LastPriceNumber = scalar @$ahUpdates; ok( $LastPriceNumber >= 0, "$LastPriceNumber Content updated Products at last sync time $LastSync"); #check if nothing of test products in the result foreach my $Alias (@TestProducts) { unlike( join(',', map {$_->{Path}} @$ahUpdates), qr|Customers/$Alias|, "$Alias not in findUpdatedObjects Address call" ); unlike( join(',', map {$_->{Path}} @$ahUpdates), qr|Products/$Alias$|, "$Alias not in findUpdatedObjects ListPrice call" ); } #get customers since last sync which updated Address $response = $UpdateService->findUpdatedObjects($LastSync, 'Customer', 'Address'); ok( !$response->fault, "findUpdatedObjects($LastSync, 'Customer', 'Address' called" ); $ahUpdates = $response->result->{UpdatedObjects}; my $LastUpdateCustNumber = scalar @$ahUpdates; ok( $LastUpdateCustNumber >= 0, "$LastUpdateCustNumber Address updated Customer at last sync time $LastSync"); #check if nothing of test customers in the result foreach my $Alias (@TestCustomers) { unlike( join(',', map {$_->{Path}} @$ahUpdates), qr|Customers/$Alias|, "$Alias not in findUpdatedObjects Address call" ); } createTestProducts(@TestProducts); #create some test products createTestCustomers(@TestCustomers); #create some test customers #get last sync time and number of created products $response = $UpdateService->findCreatedObjects($LastSync, 'Product'); ok( !$response->fault, "findCreatedObjects($LastSync,'Product') called" ); $ahCreates = $response->result->{CreatedObjects}; is( 3+$LastCreateNumber, @$ahCreates, '3 more created Products'); #check if all test products in the result foreach my $Alias (@TestProducts) { like(join(',', map {$_->{Path}} @$ahCreates), qr|Products/$Alias|, "$Alias in findCreatedObjects call after create TestProducts" ); } sleep( 3 ); #update content, and get new sync time updateContent($TestProducts[0]); $response = $UpdateService->findUpdatedObjects( $LastSync, 'Product', 'Content'); ok( !$response->fault, "findUpdatedObjects($LastSync,'Product','Content') called to get new sync date" ); my $NewSync = $response->result->{LatestUpdate}; $LastSyncNumber = scalar @{$response->result->{UpdatedObjects}}; cmp_ok($LastSyncNumber, '>', 0, "have $LastSyncNumber Content updates after $LastSync"); $response = $UpdateService->findUpdatedObjects( $NewSync, 'Product', 'Content'); ok( !$response->fault, "findUpdatedObjects($NewSync,'Product','Content') called" ); $ahUpdates = $response->result->{UpdatedObjects}; is( 1, scalar @$ahUpdates, "1 Content updates after $NewSync"); like( $ahUpdates->[0]->{Path}, qr|Products/$TestProducts[0]$|, 'Path of Content update'); #update stock level updateStockLevel($TestProducts[1]); $response = $UpdateService->findUpdatedObjects($NewSync, 'Product', 'StockLevel'); ok( !$response->fault, "findUpdatedObjects($NewSync,'Product','StockLevel') called" ); $ahUpdates = $response->result->{UpdatedObjects}; is( 1, scalar @$ahUpdates, "1 StockLevel update after $NewSync"); like( $ahUpdates->[0]->{Path}, qr|Products/$TestProducts[1]$|, 'Path of StockLevel update'); #update price updateListPrice($TestProducts[2]); $response = $UpdateService->findUpdatedObjects($NewSync, 'Product', 'ListPrice'); ok( !$response->fault, "findUpdatedObjects($NewSync,'Product','ListPrice') called" ); $ahUpdates = $response->result->{UpdatedObjects}; is( 1, scalar @$ahUpdates, "1 ListPrice update after $NewSync"); like( $ahUpdates->[0]->{Path}, qr|Products/$TestProducts[2]$|, 'Path of StockLevel update'); #update customer address updateAddress($TestCustomers[0]); $response = $UpdateService->findUpdatedObjects($NewSync, 'Customer', 'Address'); ok( !$response->fault, "findUpdatedObjects($NewSync,'Customer','Address') called" ); $ahUpdates = $response->result->{UpdatedObjects}; is( 1, scalar @$ahUpdates, "1 address update after $NewSync"); like( $ahUpdates->[0]->{Path}, qr|Customers/$TestCustomers[0]$|, 'Path of Address update'); #get deletes after last sync $response = $UpdateService->findDeletedObjects( $NewSync, 'Product' ); ok( !$response->fault, 'findDeletedObjects Product called' ); my $ahDeletes = $response->result->{DeletedObjects}; is( 0, scalar @$ahDeletes, 'no product deletes jet'); $response = $UpdateService->findDeletedObjects( $NewSync, 'Customer' ); ok( !$response->fault, 'findDeletedObjects Customer called' ); $ahDeletes = $response->result->{DeletedObjects}; is( 0, scalar @$ahDeletes, 'no customer deletes jet'); #remove removeTestProducts(@TestProducts); removeTestCustomers(@TestCustomers); #check remove $response = $UpdateService->findDeletedObjects( $NewSync, 'Product' ); ok( !$response->fault, 'findDeletedObjects called' ); $ahDeletes = $response->result->{DeletedObjects}; is( 3, scalar @$ahDeletes, '3 product deletes now'); #check if all test products in the result foreach my $Alias (@TestProducts) { like(join(',',map {$_->{Path}} @$ahDeletes), qr/$Alias/, "$Alias in findDeletedObjects call after remove TestProducts" ); } $response = $UpdateService->findDeletedObjects( $NewSync, 'Customer' ); ok( !$response->fault, 'findDeletedObjects called' ); $ahDeletes = $response->result->{DeletedObjects}; is( 2, scalar @$ahDeletes, '2 customer deletes now'); #check if all test customers in the result foreach my $Alias (@TestCustomers) { like(join(',',map {$_->{Path}} @$ahDeletes), qr/$Alias/, "$Alias in findDeletedObjects call after remove TestCustomers" ); } done_testing;
41.261484
146
0.685022
ed19f363c3ce217db25a90923f83e154df37a0bc
362
pm
Perl
extlib/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm
joelchaconcastillo/srnalightnxtg
a14d50d08a90ce7b3b2d0ea200046ad7a719cdc0
[ "Apache-2.0" ]
null
null
null
extlib/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm
joelchaconcastillo/srnalightnxtg
a14d50d08a90ce7b3b2d0ea200046ad7a719cdc0
[ "Apache-2.0" ]
null
null
null
extlib/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm
joelchaconcastillo/srnalightnxtg
a14d50d08a90ce7b3b2d0ea200046ad7a719cdc0
[ "Apache-2.0" ]
null
null
null
package Moose::Exception::InitMetaRequiresClass; BEGIN { $Moose::Exception::InitMetaRequiresClass::AUTHORITY = 'cpan:STEVAN'; } $Moose::Exception::InitMetaRequiresClass::VERSION = '2.1211'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::ParamsHash'; sub _build_message { "Cannot call init_meta without specifying a for_class"; } 1;
24.133333
70
0.754144
ed64a08889f036cb0614279e4cb57fe5146bc6ef
3,006
pm
Perl
external/win_perl/lib/DateTime/Format/Natural/Helpers.pm
phixion/l0phtcrack
48ee2f711134e178dbedbd925640f6b3b663fbb5
[ "Apache-2.0", "MIT" ]
2
2021-10-20T00:25:39.000Z
2021-11-08T12:52:42.000Z
external/win_perl/lib/DateTime/Format/Natural/Helpers.pm
Brute-f0rce/l0phtcrack
25f681c07828e5e68e0dd788d84cc13c154aed3d
[ "Apache-2.0", "MIT" ]
null
null
null
external/win_perl/lib/DateTime/Format/Natural/Helpers.pm
Brute-f0rce/l0phtcrack
25f681c07828e5e68e0dd788d84cc13c154aed3d
[ "Apache-2.0", "MIT" ]
1
2022-03-14T06:41:16.000Z
2022-03-14T06:41:16.000Z
package DateTime::Format::Natural::Helpers; use strict; use warnings; use base qw(Exporter); use boolean qw(true false); use constant REAL_FLAG => true; use constant VIRT_FLAG => false; our ($VERSION, @EXPORT_OK, %flag); $VERSION = '0.06'; @EXPORT_OK = qw(%flag); my @flags = ( { weekday_name => REAL_FLAG }, { weekday_num => REAL_FLAG }, { month_name => REAL_FLAG }, { month_num => REAL_FLAG }, { time_am => REAL_FLAG }, { time_pm => REAL_FLAG }, { last_this_next => VIRT_FLAG }, { yes_today_tom => VIRT_FLAG }, { noon_midnight => VIRT_FLAG }, { morn_aftern_even => VIRT_FLAG }, { before_after_from => VIRT_FLAG }, ); { my $i; %flag = map { (keys %$_)[0] => $i++ } @flags; } sub _helper { my $self = shift; my ($flags, $string) = @_; foreach my $flag (@$flags) { my $name = (keys %{$flags[$flag]})[0]; if ($flags[$flag]->{$name}) { my $helper = "_$name"; $self->$helper(\$string); } else { $string = $self->{data}->{conversion}->{$name}->{lc $string}; } } return $string; } sub _weekday_name { my $self = shift; my ($arg) = @_; my $helper = $self->{data}->{helpers}; if ($$arg =~ $helper->{suffix}) { $$arg =~ s/$helper->{suffix}//; } $helper->{normalize}->($arg); if ($helper->{abbreviated}->($arg)) { $$arg = $self->{data}->{weekdays_abbrev}->{$$arg}; } } sub _weekday_num { my $self = shift; my ($arg) = @_; $$arg = $self->_Decode_Day_of_Week($$arg); } sub _month_name { my $self = shift; my ($arg) = @_; my $helper = $self->{data}->{helpers}; $helper->{normalize}->($arg); if ($helper->{abbreviated}->($arg)) { $$arg = $self->{data}->{months_abbrev}->{$$arg}; } } sub _month_num { my $self = shift; my ($arg) = @_; $$arg = $self->_Decode_Month($$arg); } sub _time_am { my $self = shift; my ($arg) = @_; $self->_time_meridiem($arg, 'am'); } sub _time_pm { my $self = shift; my ($arg) = @_; $self->_time_meridiem($arg, 'pm'); } sub _time_meridiem { my $self = shift; my ($time, $period) = @_; my ($hour) = split /:/, $$time; my %hours = ( am => $hour - (($hour == 12) ? 12 : 0), pm => $hour + (($hour == 12) ? 0 : 12), ); $$time =~ s/^ \d+? (?:(?=\:)|$)/$hours{$period}/x; } 1; __END__ =head1 NAME DateTime::Format::Natural::Helpers - Various helper methods =head1 SYNOPSIS Please see the DateTime::Format::Natural documentation. =head1 DESCRIPTION The C<DateTime::Format::Natural::Helpers> class defines helper methods. =head1 SEE ALSO L<DateTime::Format::Natural> =head1 AUTHOR Steven Schubiger <schubiger@cpan.org> =head1 LICENSE This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. See L<http://dev.perl.org/licenses/> =cut
18.670807
73
0.53992
73f78e95adabdd42d59c78dfaedbab9f0e755920
1,754
pm
Perl
auto-lib/Paws/SageMaker/ResourceSpec.pm
0leksii/aws-sdk-perl
b2132fe3c79a06fd15b6137e8a0eb628de722e0f
[ "Apache-2.0" ]
164
2015-01-08T14:58:53.000Z
2022-02-20T19:16:24.000Z
auto-lib/Paws/SageMaker/ResourceSpec.pm
0leksii/aws-sdk-perl
b2132fe3c79a06fd15b6137e8a0eb628de722e0f
[ "Apache-2.0" ]
348
2015-01-07T22:08:38.000Z
2022-01-27T14:34:44.000Z
auto-lib/Paws/SageMaker/ResourceSpec.pm
0leksii/aws-sdk-perl
b2132fe3c79a06fd15b6137e8a0eb628de722e0f
[ "Apache-2.0" ]
87
2015-04-22T06:29:47.000Z
2021-09-29T14:45:55.000Z
# Generated by default/object.tt package Paws::SageMaker::ResourceSpec; use Moose; has InstanceType => (is => 'ro', isa => 'Str'); has SageMakerImageArn => (is => 'ro', isa => 'Str'); has SageMakerImageVersionArn => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::SageMaker::ResourceSpec =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::SageMaker::ResourceSpec object: $service_obj->Method(Att1 => { InstanceType => $value, ..., SageMakerImageVersionArn => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::SageMaker::ResourceSpec object: $result = $service_obj->Method(...); $result->Att1->InstanceType =head1 DESCRIPTION Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that the version runs on. =head1 ATTRIBUTES =head2 InstanceType => Str The instance type that the image version runs on. =head2 SageMakerImageArn => Str The ARN of the SageMaker image that the image version belongs to. =head2 SageMakerImageVersionArn => Str The ARN of the image version created on the instance. =head1 SEE ALSO This class forms part of L<Paws>, describing an object used in L<Paws::SageMaker> =head1 BUGS and CONTRIBUTIONS The source code is located here: L<https://github.com/pplu/aws-sdk-perl> Please report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues> =cut
24.361111
102
0.735462
ed17825865eaeff8f73991eebffbf8b04f47143f
912
t
Perl
t/13-chained.t
git-the-cpan/MooX-Failover
41b358c3c4adb23a76826204828806ccaf2bdd98
[ "Artistic-1.0" ]
null
null
null
t/13-chained.t
git-the-cpan/MooX-Failover
41b358c3c4adb23a76826204828806ccaf2bdd98
[ "Artistic-1.0" ]
null
null
null
t/13-chained.t
git-the-cpan/MooX-Failover
41b358c3c4adb23a76826204828806ccaf2bdd98
[ "Artistic-1.0" ]
1
2021-06-19T12:25:04.000Z
2021-06-19T12:25:04.000Z
{ package Sub1; use Moo; use Types::Standard qw/ Int Str /; has num => ( is => 'ro', isa => Int ); has str => ( is => 'ro', isa => Str, required => 0 ); our $count = 0; around 'new' => sub { my $orig = shift; my $class = shift; ++$count; $class->$orig(@_); }; } { package Sub2; use Moo; use Types::Standard qw/ Int Str /; use MooX::Failover; use lib 't/lib'; has num => ( is => 'ro', isa => Int ); has str => ( is => 'ro', isa => Str, required => 1 ); failover_to 'Sub1'; failover_to 'Failover'; } use Test::Most; { note "errors with chained failover"; my $obj = Sub2->new( num => 'x', str => 'y' ); isa_ok $obj, 'Failover'; is $obj->class, 'Sub2', 'expected class'; is $Sub1::count, 1, 'tried Sub1'; } { note "errors with chained failover"; my $obj = Sub2->new( num => '1', ); isa_ok $obj, 'Sub1'; } done_testing;
16.581818
61
0.523026
ed6523ae3d446f603e682880122f46e4e3a7fd7c
1,114
al
Perl
benchmark/benchmarks/FASP-benchmarks/data/random-oriented/randomoriented-0115-70-320.al
krzysg/FaspHeuristic
1929c40e3fbc49e68b04acfc5522539a18758031
[ "MIT" ]
null
null
null
benchmark/benchmarks/FASP-benchmarks/data/random-oriented/randomoriented-0115-70-320.al
krzysg/FaspHeuristic
1929c40e3fbc49e68b04acfc5522539a18758031
[ "MIT" ]
null
null
null
benchmark/benchmarks/FASP-benchmarks/data/random-oriented/randomoriented-0115-70-320.al
krzysg/FaspHeuristic
1929c40e3fbc49e68b04acfc5522539a18758031
[ "MIT" ]
null
null
null
1 12 23 44 57 2 24 38 49 3 7 11 18 38 40 52 53 54 61 4 6 10 19 51 64 5 3 17 20 41 6 9 31 33 50 65 7 1 13 48 8 3 39 50 52 65 9 10 48 50 52 64 10 25 43 55 11 4 9 17 12 21 68 13 28 46 66 68 14 11 17 21 29 39 42 55 15 22 63 65 16 7 13 28 41 56 17 1 10 41 44 46 59 62 67 18 32 36 49 19 8 13 18 30 38 48 54 55 56 20 1 2 21 39 41 21 13 33 46 22 14 48 23 19 35 44 48 24 8 9 21 35 67 25 31 50 26 1 6 14 49 51 60 27 16 20 22 47 48 55 64 65 28 48 53 60 29 1 5 26 56 30 31 5 32 3 17 52 55 61 69 33 3 35 42 53 58 34 30 44 53 35 1 10 18 36 12 29 44 37 25 46 61 38 42 59 70 39 4 5 13 31 33 34 47 64 67 40 18 29 50 55 41 10 14 22 24 52 66 42 9 17 26 29 65 43 16 17 31 44 16 24 30 39 57 68 45 5 22 46 49 56 58 46 50 55 47 22 26 30 54 59 60 48 10 25 53 64 65 70 49 14 33 50 43 54 51 9 10 13 70 52 4 10 49 53 6 19 23 32 38 43 46 69 54 10 17 24 30 46 55 5 21 56 3 12 32 57 29 30 38 62 67 58 3 11 31 41 44 46 48 49 50 68 59 2 23 28 60 18 20 29 49 65 70 61 1 21 26 35 42 50 63 69 62 9 35 45 51 53 63 7 9 10 18 22 24 56 64 1 5 34 47 51 70 65 5 14 30 53 66 14 35 37 42 67 1 4 48 68 8 9 40 55 67 69 12 14 22 23 35 66 67 70 8 14 19 35 62 68
15.914286
31
0.650808
ed1c863ed5103fe5a35db35ddf00cd57f11057df
18,644
pm
Perl
os/linux/local/mode/diskio.pm
cstegm/centreon-plugins
b29bdb670de52a22d3520661dc7b9d2548ae7a1a
[ "Apache-2.0" ]
null
null
null
os/linux/local/mode/diskio.pm
cstegm/centreon-plugins
b29bdb670de52a22d3520661dc7b9d2548ae7a1a
[ "Apache-2.0" ]
null
null
null
os/linux/local/mode/diskio.pm
cstegm/centreon-plugins
b29bdb670de52a22d3520661dc7b9d2548ae7a1a
[ "Apache-2.0" ]
null
null
null
# # Copyright 2019 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for # service performance. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # package os::linux::local::mode::diskio; use base qw(centreon::plugins::mode); use strict; use warnings; use centreon::plugins::misc; use centreon::plugins::statefile; use Digest::MD5 qw(md5_hex); sub new { my ($class, %options) = @_; my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; $self->{version} = '1.0'; $options{options}->add_options(arguments => { "hostname:s" => { name => 'hostname' }, "remote" => { name => 'remote' }, "ssh-option:s@" => { name => 'ssh_option' }, "ssh-path:s" => { name => 'ssh_path' }, "ssh-command:s" => { name => 'ssh_command', default => 'ssh' }, "timeout:s" => { name => 'timeout', default => 30 }, "sudo" => { name => 'sudo' }, "command:s" => { name => 'command', default => 'tail' }, "command-path:s" => { name => 'command_path', }, "command-options:s" => { name => 'command_options', default => '-n +1 /proc/stat /proc/diskstats 2>&1' }, "warning-bytes-read:s" => { name => 'warning_bytes_read' }, "critical-bytes-read:s" => { name => 'critical_bytes_read' }, "warning-bytes-write:s" => { name => 'warning_bytes_write' }, "critical-bytes-write:s" => { name => 'critical_bytes_write' }, "warning-utils:s" => { name => 'warning_utils' }, "critical-utils:s" => { name => 'critical_utils' }, "name:s" => { name => 'name' }, "regexp" => { name => 'use_regexp' }, "regexp-isensitive" => { name => 'use_regexpi' }, "interrupt-frequency:s" => { name => 'interrupt_frequency', default => 1000 }, "bytes_per_sector:s" => { name => 'bytes_per_sector', default => 512 }, "skip" => { name => 'skip', }, }); $self->{result} = { cpu => {}, total_cpu => 0, disks => {} }; $self->{hostname} = undef; $self->{statefile_value} = centreon::plugins::statefile->new(%options); return $self; } sub check_options { my ($self, %options) = @_; $self->SUPER::init(%options); if (($self->{perfdata}->threshold_validate(label => 'warning-bytes-read', value => $self->{option_results}->{warning_bytes_read})) == 0) { $self->{output}->add_option_msg(short_msg => "Wrong warning-bytes-read threshold '" . $self->{option_results}->{warning_bytes_read} . "'."); $self->{output}->option_exit(); } if (($self->{perfdata}->threshold_validate(label => 'critical-bytes-read', value => $self->{option_results}->{critical_bytes_read})) == 0) { $self->{output}->add_option_msg(short_msg => "Wrong critical-bytes-read threshold '" . $self->{option_results}->{critical_bytes_read} . "'."); $self->{output}->option_exit(); } if (($self->{perfdata}->threshold_validate(label => 'warning-bytes-write', value => $self->{option_results}->{warning_bytes_write})) == 0) { $self->{output}->add_option_msg(short_msg => "Wrong warning-bytes-write threshold '" . $self->{option_results}->{warning_bytes_write} . "'."); $self->{output}->option_exit(); } if (($self->{perfdata}->threshold_validate(label => 'critical-bytes-write', value => $self->{option_results}->{critical_bytes_write})) == 0) { $self->{output}->add_option_msg(short_msg => "Wrong critical-bytes-write threshold '" . $self->{option_results}->{critical_bytes_writes} . "'."); $self->{output}->option_exit(); } if (($self->{perfdata}->threshold_validate(label => 'warning-utils', value => $self->{option_results}->{warning_utils})) == 0) { $self->{output}->add_option_msg(short_msg => "Wrong warning-utils threshold '" . $self->{option_results}->{warning_utils} . "'."); $self->{output}->option_exit(); } if (($self->{perfdata}->threshold_validate(label => 'critical-utils', value => $self->{option_results}->{critical_utils})) == 0) { $self->{output}->add_option_msg(short_msg => "Wrong critical-utils threshold '" . $self->{option_results}->{critical_utils} . "'."); $self->{output}->option_exit(); } $self->{statefile_value}->check_options(%options); $self->{hostname} = $self->{option_results}->{hostname}; if (!defined($self->{hostname})) { $self->{hostname} = 'me'; } } sub manage_selection { my ($self, %options) = @_; my $stdout = centreon::plugins::misc::execute(output => $self->{output}, options => $self->{option_results}, sudo => $self->{option_results}->{sudo}, command => $self->{option_results}->{command}, command_path => $self->{option_results}->{command_path}, command_options => $self->{option_results}->{command_options}); $stdout =~ /\/proc\/stat(.*)\/proc\/diskstats(.*)/msg; my ($cpu_parts, $disk_parts) = ($1, $2); # Manage CPU Parts $cpu_parts =~ /^cpu\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)/ms; $self->{result}->{cpu}->{idle} = $4; $self->{result}->{cpu}->{system} = $3; $self->{result}->{cpu}->{user} = $1; $self->{result}->{cpu}->{iowait} = $5; while ($cpu_parts =~ /^cpu(\d+)/msg) { $self->{result}->{total_cpu}++; } # Manage Disk Parts while ($disk_parts =~ /^\s*(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+/msg) { my ($partition_name, $read_sector, $write_sector, $read_ms, $write_ms, $ms_ticks) = ($3, $6, $10, $7, $11, $13); next if (defined($self->{option_results}->{name}) && defined($self->{option_results}->{use_regexp}) && defined($self->{option_results}->{use_regexpi}) && $partition_name !~ /$self->{option_results}->{name}/i); next if (defined($self->{option_results}->{name}) && defined($self->{option_results}->{use_regexp}) && !defined($self->{option_results}->{use_regexpi}) && $partition_name !~ /$self->{option_results}->{name}/); next if (defined($self->{option_results}->{name}) && !defined($self->{option_results}->{use_regexp}) && !defined($self->{option_results}->{use_regexpi}) && $partition_name ne $self->{option_results}->{name}); if (defined($self->{option_results}->{skip}) && $read_sector == 0 && $write_sector == 0) { $self->{output}->output_add(long_msg => "Skipping partition '" . $partition_name . "': no read/write IO."); next; } $self->{result}->{disks}->{$partition_name} = { read_sectors => $read_sector, write_sectors => $write_sector, read_ms => $read_ms, write_ms => $write_ms, ticks => $ms_ticks}; } if (scalar(keys %{$self->{result}->{disks}}) <= 0) { if (defined($self->{option_results}->{name})) { $self->{output}->add_option_msg(short_msg => "No partition found for name '" . $self->{option_results}->{name} . "'."); } else { $self->{output}->add_option_msg(short_msg => "No partition found."); } $self->{output}->option_exit(); } } sub run { my ($self, %options) = @_; $self->manage_selection(); my $new_datas = {}; $self->{statefile_value}->read(statefile => "cache_linux_local_" . $self->{hostname} . '_' . $self->{mode} . '_' . (defined($self->{option_results}->{name}) ? md5_hex($self->{option_results}->{name}) : md5_hex('all'))); $new_datas->{last_timestamp} = time(); my $old_timestamp = $self->{statefile_value}->get(name => 'last_timestamp'); if (!defined($self->{option_results}->{name}) || defined($self->{option_results}->{use_regexp})) { $self->{output}->output_add(severity => 'OK', short_msg => 'All partitions are ok.'); } foreach my $name (sort(keys %{$self->{result}->{disks}})) { my $old_datas = {}; my $next = 0; foreach (keys %{$self->{result}->{disks}->{$name}}) { $new_datas->{$_ . '_' . $name} = $self->{result}->{disks}->{$name}->{$_}; $old_datas->{$_ . '_' . $name} = $self->{statefile_value}->get(name => $_ . '_' . $name); if (!defined($old_datas->{$_ . '_' . $name})) { $next = 1; } elsif ($new_datas->{$_ . '_' . $name} < $old_datas->{$_ . '_' . $name}) { # We set 0. has reboot $old_datas->{$_ . '_' . $name} = 0; } } foreach (keys %{$self->{result}->{cpu}}) { $new_datas->{'cpu_' . $_} = $self->{result}->{cpu}->{$_}; $old_datas->{'cpu_' . $_} = $self->{statefile_value}->get(name => 'cpu_' . $_); if (!defined($old_datas->{'cpu_' . $_})) { $next = 1; } elsif ($new_datas->{'cpu_' . $_} < $old_datas->{'cpu_' . $_}) { # We set 0. has reboot $old_datas->{'cpu_' . $_} = 0; } } if (!defined($old_timestamp) || $next == 1) { next; } my $time_delta = $new_datas->{last_timestamp} - $old_timestamp; if ($time_delta <= 0) { # At least one second. two fast calls ;) $time_delta = 1; } ############ # Do calc my $read_bytes_per_seconds = ($new_datas->{'read_sectors_' . $name} - $old_datas->{'read_sectors_' . $name}) * $self->{option_results}->{bytes_per_sector} / $time_delta; my $write_bytes_per_seconds = ($new_datas->{'write_sectors_' . $name} - $old_datas->{'write_sectors_' . $name}) * $self->{option_results}->{bytes_per_sector} / $time_delta; my $read_ms = $new_datas->{'read_ms_' . $name} - $old_datas->{'read_ms_' . $name}; my $write_ms = $new_datas->{'write_ms_' . $name} - $old_datas->{'write_ms_' . $name}; my $delta_ms = $self->{option_results}->{interrupt_frequency} * (($new_datas->{cpu_idle} + $new_datas->{cpu_iowait} + $new_datas->{cpu_user} + $new_datas->{cpu_system}) - ($old_datas->{cpu_idle} + $old_datas->{cpu_iowait} + $old_datas->{cpu_user} + $old_datas->{cpu_system})) / $self->{result}->{total_cpu} / 100; my $utils = 100 * ($new_datas->{'ticks_' . $name} - $old_datas->{'ticks_' . $name}) / $delta_ms; if ($utils > 100) { $utils = 100; } ########### # Manage Output ########### my $exit1 = $self->{perfdata}->threshold_check(value => $read_bytes_per_seconds, threshold => [ { label => 'critical-bytes-read', 'exit_litteral' => 'critical' }, { label => 'warning-bytes-read', exit_litteral => 'warning' } ]); my $exit2 = $self->{perfdata}->threshold_check(value => $write_bytes_per_seconds, threshold => [ { label => 'critical-bytes-write', 'exit_litteral' => 'critical' }, { label => 'warning-bytes-write', exit_litteral => 'warning' } ]); my $exit3 = $self->{perfdata}->threshold_check(value => $utils, threshold => [ { label => 'critical-utils', 'exit_litteral' => 'critical' }, { label => 'warning-utils', exit_litteral => 'warning' } ]); my $exit = $self->{output}->get_most_critical(status => [ $exit1, $exit2, $exit3 ]); my ($read_value, $read_unit) = $self->{perfdata}->change_bytes(value => $read_bytes_per_seconds); my ($write_value, $write_unit) = $self->{perfdata}->change_bytes(value => $write_bytes_per_seconds); $self->{output}->output_add(long_msg => sprintf("Partition '%s' Read I/O : %s/s, Write I/O : %s/s, Write Time : %s ms, Read Time : %s ms, %%Utils: %.2f %%", $name, $read_value . $read_unit, $write_value . $write_unit, $read_ms, $write_ms, $utils )); if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1) || (defined($self->{option_results}->{name}) && !defined($self->{option_results}->{use_regexp}))) { $self->{output}->output_add(severity => $exit, short_msg => sprintf("Partition '%s' Read I/O : %s/s, Write I/O : %s/s, Write Time : %s ms, Read Time : %s ms, %%Utils: %.2f %%", $name, $read_value . $read_unit, $write_value . $write_unit, $read_ms, $write_ms, $utils )); } my $extra_label = ''; $extra_label = '_' . $name if (!defined($self->{option_results}->{name}) || defined($self->{option_results}->{use_regexp})); $self->{output}->perfdata_add(label => 'readio' . $extra_label, unit => 'B/s', value => sprintf("%.2f", $read_bytes_per_seconds), warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-bytes-read'), critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-bytes-read'), min => 0); $self->{output}->perfdata_add(label => 'writeio' . $extra_label, unit => 'B/s', value => sprintf("%.2f", $write_bytes_per_seconds), warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-bytes-write'), critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-bytes-write'), min => 0); $self->{output}->perfdata_add(label => 'readtime' . $extra_label, unit => 'ms', value => $read_ms, min => 0); $self->{output}->perfdata_add(label => 'writetime' . $extra_label, unit => 'ms', value => $write_ms, min => 0); $self->{output}->perfdata_add(label => 'utils' . $extra_label, unit => '%', value => sprintf("%.2f", $utils), warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-utils'), critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-util'), min => 0, max => 100); } $self->{statefile_value}->write(data => $new_datas); if (!defined($old_timestamp)) { $self->{output}->output_add(severity => 'OK', short_msg => "Buffer creation..."); } $self->{output}->display(); $self->{output}->exit(); } 1; __END__ =head1 MODE Check some disk io counters: read and writes bytes per seconds, milliseconds time spent reading and writing, %util (like iostat) =over 8 =item B<--remote> Execute command remotely in 'ssh'. =item B<--hostname> Hostname to query (need --remote). =item B<--ssh-option> Specify multiple options like the user (example: --ssh-option='-l=centreon-engine' --ssh-option='-p=52'). =item B<--ssh-path> Specify ssh command path (default: none) =item B<--ssh-command> Specify ssh command (default: 'ssh'). Useful to use 'plink'. =item B<--timeout> Timeout in seconds for the command (Default: 30). =item B<--sudo> Use 'sudo' to execute the command. =item B<--command> Command to get information (Default: 'tail'). Can be changed if you have output in a file. =item B<--command-path> Command path (Default: none). =item B<--command-options> Command options (Default: '-n +1 /proc/stat /proc/diskstats 2>&1'). =item B<--warning-bytes-read> Threshold warning in bytes per seconds read. =item B<--critical-bytes-read> Threshold critical in bytes per seconds read. =item B<--warning-bytes-write> Threshold warning in bytes per seconds write. =item B<--critical-bytes-write> Threshold critical in bytes per seconds write. =item B<--warning-utils> Threshold warning in %utils. =item B<--critical-utils> Threshold critical in %utils. =item B<--name> Set the partition name (empty means 'check all partitions') =item B<--regexp> Allows to use regexp to filter partition name (with option --name). =item B<--regexp-isensitive> Allows to use regexp non case-sensitive (with --regexp). =item B<--bytes-per-sector> Bytes per sector (Default: 512) =item B<--interrupt-frequency> Linux Kernel Timer Interrupt Frequency (Default: 1000) =item B<--skip> Skip partitions with 0 sectors read/write. =back =cut
48.175711
239
0.515769
ed46d7c52749721bd36ea905c3304024b4799828
103
t
Perl
res/source/lab2/6.t
GableSonmer/Test-Compiler
07ea5a41237f34789e7f236194d798c517566910
[ "Apache-2.0" ]
null
null
null
res/source/lab2/6.t
GableSonmer/Test-Compiler
07ea5a41237f34789e7f236194d798c517566910
[ "Apache-2.0" ]
null
null
null
res/source/lab2/6.t
GableSonmer/Test-Compiler
07ea5a41237f34789e7f236194d798c517566910
[ "Apache-2.0" ]
null
null
null
{ int i; i = 0; while(i<10){ write i; write "Hello"; i = i + 1; } }
11.444444
22
0.320388
ed2b3d58662ac31072e0215b53900666bdb8800f
1,561
t
Perl
t/regression/object_position07.t
robertholl/excel-writer-xlsx
f6624ba598401f57d5d67de0f5db3c76b10266d7
[ "Artistic-1.0-Perl" ]
null
null
null
t/regression/object_position07.t
robertholl/excel-writer-xlsx
f6624ba598401f57d5d67de0f5db3c76b10266d7
[ "Artistic-1.0-Perl" ]
null
null
null
t/regression/object_position07.t
robertholl/excel-writer-xlsx
f6624ba598401f57d5d67de0f5db3c76b10266d7
[ "Artistic-1.0-Perl" ]
null
null
null
############################################################################### # # Tests the output of Excel::Writer::XLSX against Excel generated files. # # reverse ('(c)'), April 2019, John McNamara, jmcnamara@cpan.org # use lib 't/lib'; use TestFunctions qw(_compare_xlsx_files _is_deep_diff); use strict; use warnings; use Test::More tests => 1; ############################################################################### # # Tests setup. # my $filename = 'object_position07.xlsx'; my $dir = 't/regression/'; my $got_filename = $dir . "ewx_$filename"; my $exp_filename = $dir . 'xlsx_files/' . $filename; my $ignore_members = []; my $ignore_elements = {}; ############################################################################### # # Test the creation of a simple Excel::Writer::XLSX file with image(s). # use Excel::Writer::XLSX; my $workbook = Excel::Writer::XLSX->new( $got_filename ); my $worksheet = $workbook->add_worksheet(); $worksheet->insert_image( 'E9', $dir . 'images/red.png', 0, 0, 1, 1, 4 ); $worksheet->set_row( 8, 30, undef, 1 ); $workbook->close(); ############################################################################### # # Compare the generated and existing Excel files. # my ( $got, $expected, $caption ) = _compare_xlsx_files( $got_filename, $exp_filename, $ignore_members, $ignore_elements, ); _is_deep_diff( $got, $expected, $caption ); ############################################################################### # # Cleanup. # unlink $got_filename; __END__
22.3
79
0.494555
ed5bae4925a76af5905eccacf9f07062df995204
887
pm
Perl
lib/Tupa/Web/App/Controller/Report.pm
W3CBrasil/radardoalagamento
ec69c5e3096dc30433a027ce555ac30cc49a1fd7
[ "MIT" ]
1
2022-01-25T11:29:50.000Z
2022-01-25T11:29:50.000Z
lib/Tupa/Web/App/Controller/Report.pm
W3CBrasil/radardoalagamento
ec69c5e3096dc30433a027ce555ac30cc49a1fd7
[ "MIT" ]
null
null
null
lib/Tupa/Web/App/Controller/Report.pm
W3CBrasil/radardoalagamento
ec69c5e3096dc30433a027ce555ac30cc49a1fd7
[ "MIT" ]
null
null
null
package Tupa::Web::App::Controller::Report; use utf8; use Moose; use namespace::autoclean; BEGIN { extends 'Tupa::Web::App::Controller'; } sub base : Chained(/logged_in) PathPart('report') CaptureArgs(0) { my ($self, $c) = @_; $c->stash->{collection} = $c->model('DB::Report'); } sub report : Chained(base) : PathPart('') Args(0) POST { my ($self, $c) = @_; $self->status_created( $c, location => $c->req->uri->as_string, entity => scalar $c->stash->{collection}->execute( $c, for => create => with => {%{$c->req->data}, __user => {obj => $c->user->obj},}, ) ); } sub list : Chained(base) : PathPart('') Args(0) GET { my ($self, $c) = @_; $self->status_ok( $c, entity => $c->forward( _build_results => [$c->stash->{collection}->summary->with_geojson->as_hashref] ) ); } __PACKAGE__->meta->make_immutable; 1;
22.175
84
0.573844
73f8739d6a8fe7ccf8eaab406d79ce059febcebe
13,114
pm
Perl
modules/Bio/EnsEMBL/Variation/DBSQL/StructuralVariationAdaptor.pm
dbolser-ebi/ensembl-variation
ed5771eb927fca6fac8b977d9d36526c348d3498
[ "Apache-2.0" ]
null
null
null
modules/Bio/EnsEMBL/Variation/DBSQL/StructuralVariationAdaptor.pm
dbolser-ebi/ensembl-variation
ed5771eb927fca6fac8b977d9d36526c348d3498
[ "Apache-2.0" ]
null
null
null
modules/Bio/EnsEMBL/Variation/DBSQL/StructuralVariationAdaptor.pm
dbolser-ebi/ensembl-variation
ed5771eb927fca6fac8b977d9d36526c348d3498
[ "Apache-2.0" ]
null
null
null
=head1 LICENSE Copyright [1999-2014] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =cut =head1 CONTACT Please email comments or questions to the public Ensembl developers list at <http://lists.ensembl.org/mailman/listinfo/dev>. Questions may also be sent to the Ensembl help desk at <http://www.ensembl.org/Help/Contact>. =cut # Ensembl module for Bio::EnsEMBL::Variation::DBSQL::StructuralVariationAdaptor # # =head1 NAME Bio::EnsEMBL::Variation::DBSQL::StructuralVariationAdaptor =head1 SYNOPSIS $reg = 'Bio::EnsEMBL::Registry'; $reg->load_registry_from_db(-host => 'ensembldb.ensembl.org',-user => 'anonymous'); $sva = $reg->get_adaptor("human","variation","structuralvariation"); $sta = $reg->get_adaptor("human","variation","study"); # Get a StructuralVariation by its internal identifier $sv = $sva->fetch_by_dbID(145); # Get a StructuralVariation by its name $sv = $sva->fetch_by_name('esv1285'); # Get all StructuralVariation by a study $study = $sta->fetch_by_name('estd1'); foreach my $sv (@{$sva->fetch_all_by_Study($study)}){ print $sv->variation_name,"\n"; } # Modify the include_failed_variations flag in DBAdaptor to also return structural variations that have been flagged as failed $va->db->include_failed_variations(1); =head1 DESCRIPTION This adaptor provides database connectivity for StructuralVariation objects. Genomic locations of structural variations can be obtained from the database using this adaptor. See the base class BaseFeatureAdaptor for more information. =head1 METHODS =cut use strict; use warnings; package Bio::EnsEMBL::Variation::DBSQL::StructuralVariationAdaptor; use Bio::EnsEMBL::Variation::StructuralVariation; use Bio::EnsEMBL::Variation::DBSQL::BaseStructuralVariationAdaptor; use Bio::EnsEMBL::Utils::Exception qw(throw warning); use Bio::EnsEMBL::Utils::Scalar qw(assert_ref); use DBI qw(:sql_types); our @ISA = ('Bio::EnsEMBL::Variation::DBSQL::BaseStructuralVariationAdaptor'); my $DEFAULT_ITERATOR_CACHE_SIZE = 10000; sub _default_where_clause { my $self = shift; return $self->SUPER::_default_where_clause().' AND is_evidence=0'; } sub _objs_from_sth { my ($self, $sth) = @_; # # This code is ugly because an attempt has been made to remove as many # function calls as possible for speed purposes. Thus many caches and # a fair bit of gymnastics is used. # my @svs; my ($struct_variation_id, $variation_name, $validation_status, $source_name, $source_version, $source_description, $class_attrib_id, $study_id, $is_evidence, $is_somatic, $alias, $clin_sign_attrib_id); $sth->bind_columns(\$struct_variation_id, \$variation_name, \$validation_status, \$source_name, \$source_version, \$source_description, \$class_attrib_id, \$study_id, \$is_evidence, \$is_somatic, \$alias, \$clin_sign_attrib_id); my $aa = $self->db->get_AttributeAdaptor; my $sta = $self->db->get_StudyAdaptor(); while($sth->fetch()) { my $study; $study = $sta->fetch_by_dbID($study_id) if (defined($study_id)); # Get the validation status $validation_status ||= 0; my @states = split(/,/,$validation_status); push @svs, Bio::EnsEMBL::Variation::StructuralVariation->new( -dbID => $struct_variation_id, -VARIATION_NAME => $variation_name, -VALIDATION_STATES => \@states, -ADAPTOR => $self, -SOURCE => $source_name, -SOURCE_VERSION => $source_version, -SOURCE_DESCRIPTION => $source_description, -CLASS_SO_TERM => $aa->attrib_value_for_id($class_attrib_id), -STUDY => $study, -IS_EVIDENCE => $is_evidence || 0, -IS_SOMATIC => $is_somatic || 0, -ALIAS => $alias, -CLINICAL_SIGNIFICANCE => $aa->attrib_value_for_id($clin_sign_attrib_id) ); } return \@svs; } =head2 fetch_all_by_supporting_evidence Arg [1] : Bio::EnsEMBL::Variation::SupportingStructuralVariation or Bio::EnsEMBL::Variation::StructuralVariation $se Example : my $se = $ssv_adaptor->fetch_by_name('essv2585133'); foreach my $sv (@{$sv_adaptor->fetch_all_by_supporting_evidence($se)}){ print $sv->variation_name,"\n"; } Description : Retrieves all structural variations from a specified supporting evidence ReturnType : reference to list of Bio::EnsEMBL::Variation::StructuralVariation objects Exceptions : throw if incorrect argument is passed warning if provided supporting evidence does not have a dbID Caller : general Status : At Risk =cut sub fetch_all_by_supporting_evidence { my $self = shift; my $se = shift; if(!ref($se) || (!$se->isa('Bio::EnsEMBL::Variation::SupportingStructuralVariation') && !$se->isa('Bio::EnsEMBL::Variation::StructuralVariation')) ) { throw("Bio::EnsEMBL::Variation::SupportingStructuralVariation or Bio::EnsEMBL::Variation::StructuralVariation arg expected"); } if(!$se->dbID()) { warning("The supporting evidence does not have dbID, cannot retrieve supporting evidence"); return []; } my $cols = join ",", $self->_columns(); my $tables; foreach my $t ($self->_tables()) { next if ($t->[0] eq 'failed_structural_variation' and !$self->db->include_failed_variations()); $tables .= ',' if ($tables); $tables .= join(' ',@$t); # Adds a left join to the failed_structural_variation table if ($t->[0] eq 'structural_variation' and !$self->db->include_failed_variations()) { $tables .= qq{ LEFT JOIN failed_structural_variation fsv ON (fsv.structural_variation_id=sv.structural_variation_id)}; } } my $constraint = $self->_default_where_clause(); # Add the constraint for failed structural variant $constraint .= " AND " . $self->db->_exclude_failed_structural_variations_constraint(); my $sth = $self->prepare(qq{ SELECT $cols FROM $tables, structural_variation_association sa WHERE $constraint AND sa.structural_variation_id=sv.structural_variation_id AND sa.supporting_structural_variation_id = ?}); $sth->bind_param(1,$se->dbID,SQL_INTEGER); $sth->execute(); my $results = $self->_objs_from_sth($sth); $sth->finish(); return $results; } sub _generic_fetch_by_VariationSet { my $self = shift; my $want_iterator = shift; my $set = shift; assert_ref($set,'Bio::EnsEMBL::Variation::VariationSet'); if(!defined($set->dbID())) { warning("Cannot retrieve structural variations for variation set without a dbID"); return []; } # Get the unique dbIDs for all variations in this set and all of its subsets my $dbid_list = $self->fetch_all_dbIDs_by_VariationSet($set); my $num_vars = @$dbid_list; if ($num_vars > 100_000 && !$want_iterator) { warn "This set contains a large number ($num_vars) of structural variations, these may not fit". "into memory at once, considering using fetch_Iterator_by_VariationSet instead"; } # Use the dbIDs to get all variations and return them return $want_iterator ? $self->fetch_Iterator_by_dbID_list($dbid_list) : $self->fetch_all_by_dbID_list($dbid_list); } =head2 fetch_all_dbIDs_by_VariationSet Arg [1] : Bio::EnsEMBL::Variation::VariationSet Example : @sv_ids = @{$sva_adaptor->fetch_all_dbIDs_by_VariationSet($vs)}; Description: Gets an array of internal ids of all structural variations which are present in a specified variation set and its subsets. Returntype : listref of integers Exceptions : throw on incorrect argument Caller : general Status : At Risk =cut sub fetch_all_dbIDs_by_VariationSet { my $self = shift; my $set = shift; # First, get ids for all subsets, my @var_set_ids = ($set->dbID); foreach my $var_set (@{$set->adaptor->fetch_all_by_super_VariationSet($set)}) { push @var_set_ids, $var_set->dbID; } my $set_str = "(" . join(",",@var_set_ids) .")"; # Add the constraint for failed structural variations my $constraint = $self->_internal_exclude_failed_constraint; # Then get the dbIDs for all these sets my $stmt = qq{ SELECT DISTINCT vssv.structural_variation_id FROM variation_set_structural_variation vssv LEFT JOIN failed_structural_variation fsv ON ( fsv.structural_variation_id = vssv.structural_variation_id ) WHERE vssv.variation_set_id in $set_str $constraint }; my $sth = $self->prepare($stmt); $sth->execute(); my @result; my $dbID; $sth->bind_columns(\$dbID); while ($sth->fetch()) { push @result, $dbID; } return \@result; } =head2 fetch_all_by_VariationSet Arg [1] : Bio::EnsEMBL::Variation::VariationSet Example : @svs = @{$sva_adaptor->fetch_all_by_VariationSet($vs)}; Description: Retrieves all structural variations which are present in a specified variation set and its subsets. Returntype : listref of Bio::EnsEMBL::Variation::StructuralVariation Exceptions : throw on incorrect argument Caller : general Status : At Risk =cut sub fetch_all_by_VariationSet { my $self = shift; return $self->_generic_fetch_by_VariationSet(0, @_); } =head2 fetch_Iterator_by_VariationSet Arg [1] : Bio::EnsEMBL::Variation::VariationSet Example : $sv_iterator = $sva_adaptor->fetch_Iterator_by_VariationSet($vs); Description: Retrieves an iterator for all structural variations which are present in a specified variation set and its subsets. Returntype : Bio::EnsEMBL::Utils::Iterator object Exceptions : throw on incorrect argument Caller : general Status : Experimental =cut sub fetch_Iterator_by_VariationSet { my $self = shift; my $set = shift; my $cache_size = shift || $DEFAULT_ITERATOR_CACHE_SIZE; # First, get ids for all subsets, my @var_set_ids = ($set->dbID); map {push(@var_set_ids,$_->dbID())} @{$set->adaptor->fetch_all_by_super_VariationSet($set)}; my $var_set_id = join(",",@var_set_ids); # Prepare a query for getting the span of variation_ids my $stmt = qq{ FROM variation_set_structural_variation vssv LEFT JOIN failed_structural_variation fsv ON ( fsv.structural_variation_id = vssv.structural_variation_id ) WHERE vssv.variation_set_id IN ($var_set_id) }; # Add the constraint for failed structural variations my $constraint = $self->_internal_exclude_failed_constraint; my $sth = $self->prepare(qq{SELECT MIN(vssv.structural_variation_id), MAX(vssv.structural_variation_id) $stmt $constraint}); $sth->execute(); my ($min_sv_id,$max_sv_id); $sth->bind_columns(\$min_sv_id,\$max_sv_id); $sth->fetch(); $max_sv_id ||= 0; $min_sv_id ||= 1; # Prepare a statement for getting the ids in a range $sth = $self->prepare(qq{SELECT vssv.structural_variation_id $stmt AND vssv.structural_variation_id BETWEEN ? AND ? $constraint}); # Internally, we keep an Iterator that works on the dbID span we're at my $iterator; return Bio::EnsEMBL::Utils::Iterator->new(sub { # If the iterator is empty, get a new chunk of dbIDs, unless we've fetched all dbIDs unless (defined($iterator) && $iterator->has_next() && $min_sv_id <= $max_sv_id) { # Get the next chunk of dbIDs $sth->execute($min_sv_id,$min_sv_id+$cache_size); $min_sv_id += ($cache_size + 1); # Use a hash to keep track of the seen dbIDs my %seen; # Loop over the dbIDs and avoid duplicates my $dbID; my @dbIDs; $sth->bind_columns(\$dbID); while ($sth->fetch()) { push (@dbIDs,$dbID) unless ($seen{$dbID}++); } # Get a new Iterator based on the new dbID span $iterator = $self->fetch_Iterator_by_dbID_list(\@dbIDs); } return $iterator->next(); }); } 1;
32.703242
129
0.65899
ed55767c757579b3f66d4d4a54c6ed8ab127ba68
771
pl
Perl
logrotate.pl
bigmac12/aol
21476dbf9730bb31266d7c43d69124705a173e13
[ "Info-ZIP", "Unlicense" ]
1
2016-01-17T01:11:01.000Z
2016-01-17T01:11:01.000Z
logrotate.pl
bigmac12/aol
21476dbf9730bb31266d7c43d69124705a173e13
[ "Info-ZIP", "Unlicense" ]
23
2016-01-07T04:18:40.000Z
2016-05-08T06:31:17.000Z
logrotate.pl
bigmac12/aol
21476dbf9730bb31266d7c43d69124705a173e13
[ "Info-ZIP", "Unlicense" ]
1
2016-01-07T04:23:36.000Z
2016-01-07T04:23:36.000Z
#!/usr/bin/perl -w # This rotates the logs. Woo hoo! # --GAN, 9-27-2000 # not done! exit 0; # Declarations $log_dir = "log/"; $rotations = 3; $rot_index = 1; $raw_file_list = `/bin/ls -1 $log_dir`; @file_list = split(' ', $raw_file_list); @files = grep /\.log/, @file_list; while($rot_index < ($rotations + 1)) { @files = grep !/\.$rot_index/, @files; $rot_index++; } foreach $curr (@files) { unlink(sprintf("%s%s.%s", "$log_dir", "$curr", "$rotations")); $rot_index = 1; $curr_index = $rotations; while($curr_index > $rot_index) { $nf = sprintf("%s%s.%s", "$log_dir", "$curr", "$curr_index"); $curr_index--; $of = sprintf("%s%s.%s", "$log_dir", "$curr", "$curr_index"); rename $of, $nf; } print "$curr\n"; } exit 0;
21.416667
67
0.564202
ed2674dec3035bdaf6a96617c080c35dcfd3a2d4
3,516
t
Perl
t/lib/PgToolkit/OptionsTest.t
yuzic/pgtoolkit
5a20d3340ebedbb2e3f7a5b25336b987842f73b6
[ "PostgreSQL" ]
null
null
null
t/lib/PgToolkit/OptionsTest.t
yuzic/pgtoolkit
5a20d3340ebedbb2e3f7a5b25336b987842f73b6
[ "PostgreSQL" ]
null
null
null
t/lib/PgToolkit/OptionsTest.t
yuzic/pgtoolkit
5a20d3340ebedbb2e3f7a5b25336b987842f73b6
[ "PostgreSQL" ]
null
null
null
# -*- mode: Perl; -*- package PgToolkit::OptionsTest; use base qw(PgToolkit::Test); use strict; use warnings; use Test::Exception; use Test::More; use PgToolkit::Options; =head1 NAME Some name =head1 SYNOPSIS Some synopsis =head1 DESCRIPTION Some description =head1 OPTIONS Some options =cut sub test_help_and_man : Test(4) { my $data_hash_list = [ {'argv' => ['-?'], 'out' => <<EOF Name: Some name Usage: Some synopsis EOF }, {'argv' => ['--help'], 'out' => <<EOF Name: Some name Usage: Some synopsis EOF }, {'argv' => ['-m'], 'out' => <<EOF Name: Some name Usage: Some synopsis Description: Some description Options: Some options EOF }, {'argv' => ['--man'], 'out' => <<EOF Name: Some name Usage: Some synopsis Description: Some description Options: Some options EOF }]; for my $data_hash (@{$data_hash_list}) { my $out = ''; open(my $out_handle, '+<', \ $out); PgToolkit::Options->new( out_handle => $out_handle, argv => $data_hash->{'argv'}); is($out, $data_hash->{'out'}); } } sub test_extract_options : Test(6) { my $data_list = [ {'argv' => ['-a'], 'values' => {'option1' => 'some', 'option2' => 1234}}, {'argv' => ['-o', 'another', '-p', '4321'], 'values' => {'option1' => 'another', 'option2' => 4321}}, {'argv' => ['-o', 'yet-another'], 'values' => {'option1' => 'yet-another', 'option2' => 5678}}]; for my $data (@{$data_list}) { my $options = PgToolkit::Options->new( argv => $data->{'argv'}, definition_hash => { 'a|i' => 1, 'option1|o:s' => 'some', 'option2|p:i' => 1234}, transform_code => sub { my $option_hash = shift; if (defined $option_hash->{'option1'} and $option_hash->{'option1'} eq 'yet-another') { $option_hash->{'option2'} = 5678; } }); for my $name (keys %{$data->{'values'}}) { is($data->{'values'}->{$name}, $options->get(name => $name)); } } } sub test_get_wrong_name : Test { throws_ok( sub { PgToolkit::Options->new( argv => ['-a'], definition_hash => {'a|i' => 1})-> get(name => 'wrong-name'); }, qr/OptionsError Wrong name "wrong-name" is supplied in get\./); } sub test_get_wrong_definition : Test { throws_ok( sub { PgToolkit::Options->new( definition_hash => {'wrong-definition' => 0}); }, qr/OptionsError Wrong definition "wrong-definition"\./); } sub test_error_check : Test { my $out = ''; open(my $out_handle, '+<', \ $out); PgToolkit::Options->new( out_handle => $out_handle, argv => ['-a', '5'], definition_hash => {'aaa|a:i' => 1}, error_check_code => sub { my $option_hash = shift; return 'Some error '.$option_hash->{'aaa'}; }); is( $out, <<EOF OptionsTest.t: Some error 5 Try --help for short help, --man for full manual. EOF ); } sub test_unknown_options : Test { my $out = ''; open(my $out_handle, '+<', \ $out); PgToolkit::Options->new( out_handle => $out_handle, argv => ['--bla', '5'], definition_hash => {'aaa|a:i' => 1}); is( $out, <<EOF OptionsTest.t: Unknown option: bla Try --help for short help, --man for full manual. EOF ); } sub test_version : Test(2) { for my $arg ('--version', '-V') { my $out = ''; open(my $out_handle, '+<', \ $out); PgToolkit::Options->new( out_handle => $out_handle, argv => [$arg], definition_hash => {'aaa|a:i' => 1}, kit => 'SomeKit', version => 'v1.0'); is( $out, <<EOF OptionsTest.t (SomeKit) v1.0 EOF ); } } 1;
16.822967
65
0.568544
73e0ab9aba23b1745e52e02a4a6cb93cee4fdf18
1,433
pm
Perl
auto-lib/Paws/Kafka/OpenMonitoring.pm
0leksii/aws-sdk-perl
b2132fe3c79a06fd15b6137e8a0eb628de722e0f
[ "Apache-2.0" ]
164
2015-01-08T14:58:53.000Z
2022-02-20T19:16:24.000Z
auto-lib/Paws/Kafka/OpenMonitoring.pm
0leksii/aws-sdk-perl
b2132fe3c79a06fd15b6137e8a0eb628de722e0f
[ "Apache-2.0" ]
348
2015-01-07T22:08:38.000Z
2022-01-27T14:34:44.000Z
auto-lib/Paws/Kafka/OpenMonitoring.pm
0leksii/aws-sdk-perl
b2132fe3c79a06fd15b6137e8a0eb628de722e0f
[ "Apache-2.0" ]
87
2015-04-22T06:29:47.000Z
2021-09-29T14:45:55.000Z
# Generated by default/object.tt package Paws::Kafka::OpenMonitoring; use Moose; has Prometheus => (is => 'ro', isa => 'Paws::Kafka::Prometheus', request_name => 'prometheus', traits => ['NameInRequest'], required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::Kafka::OpenMonitoring =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::Kafka::OpenMonitoring object: $service_obj->Method(Att1 => { Prometheus => $value, ..., Prometheus => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Kafka::OpenMonitoring object: $result = $service_obj->Method(...); $result->Att1->Prometheus =head1 DESCRIPTION JMX and Node monitoring for the MSK cluster. =head1 ATTRIBUTES =head2 B<REQUIRED> Prometheus => L<Paws::Kafka::Prometheus> Prometheus settings. =head1 SEE ALSO This class forms part of L<Paws>, describing an object used in L<Paws::Kafka> =head1 BUGS and CONTRIBUTIONS The source code is located here: L<https://github.com/pplu/aws-sdk-perl> Please report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues> =cut
24.288136
141
0.730635
ed387e145a76d191d0db1bc45abb8600f270d0f5
297
pm
Perl
t/lib/IRC/Schema/Result/Mode.pm
git-the-cpan/DBIx-Class-Candy
c6b43fbae7adeedd890dd87c74f44eaf2a98e61e
[ "Artistic-1.0" ]
null
null
null
t/lib/IRC/Schema/Result/Mode.pm
git-the-cpan/DBIx-Class-Candy
c6b43fbae7adeedd890dd87c74f44eaf2a98e61e
[ "Artistic-1.0" ]
null
null
null
t/lib/IRC/Schema/Result/Mode.pm
git-the-cpan/DBIx-Class-Candy
c6b43fbae7adeedd890dd87c74f44eaf2a98e61e
[ "Artistic-1.0" ]
null
null
null
package IRC::Schema::Result::Mode; use IRC::Schema::Candy; primary_column id => { data_type => 'int', is_auto_increment => 1, }; unique_column name => { data_type => 'varchar', size => 30, }; unique_column code => { data_type => 'char', size => '1', }; 1;
14.142857
34
0.552189
ed57a4930debe0581ea0ac63633279ad1d1142b7
3,689
pm
Perl
extlib/lib/perl5/Bio/Location/CoordinatePolicyI.pm
Julianne95/Moringa_genome
3be4f736e80232cd4b29fdeb4efb0f97c2f1e23e
[ "Artistic-2.0" ]
null
null
null
extlib/lib/perl5/Bio/Location/CoordinatePolicyI.pm
Julianne95/Moringa_genome
3be4f736e80232cd4b29fdeb4efb0f97c2f1e23e
[ "Artistic-2.0" ]
7
2020-03-10T18:14:30.000Z
2022-03-25T18:53:36.000Z
extlib/lib/perl5/Bio/Location/CoordinatePolicyI.pm
Julboteroc/bidens_pilosa
8a8e2bb1449a2bb2e1dffc8856a77b6f4f4bf82a
[ "Artistic-2.0" ]
null
null
null
# # BioPerl module for Bio::Location::CoordinatePolicyI # Please direct questions and support issues to <bioperl-l@bioperl.org> # # Cared for by Hilmar Lapp <hlapp@gmx.net> # and Jason Stajich <jason@bioperl.org> # # Copyright Hilmar Lapp, Jason Stajich # # You may distribute this module under the same terms as perl itself # POD documentation - main docs before the code =head1 NAME Bio::Location::CoordinatePolicyI - Abstract interface for objects implementing a certain policy of computing integer-valued coordinates of a Location =head1 SYNOPSIS # get a location, e.g., from a SeqFeature $location = $feature->location(); # examine its coordinate computation policy print "Location of feature ", $feature->primary_tag(), " employs a ", ref($location->coordinate_policy()), " instance for coordinate computation\n"; # change the policy, e.g. because the user chose to do so $location->coordinate_policy(Bio::Location::NarrowestCoordPolicy->new()); =head1 DESCRIPTION Objects implementing this interface are used by Bio::LocationI implementing objects to determine integer-valued coordinates when asked for it. While this may seem trivial for simple locations, there are different ways to do it for fuzzy or compound (split) locations. Classes implementing this interface implement a certain policy, like 'always widest range', 'always smallest range', 'mean for BETWEEN locations', etc. By installing a different policy object in a Location object, the behaviour of coordinate computation can be changed on-the-fly, and with a single line of code client-side. =head1 FEEDBACK User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists =head2 Support Please direct usage questions or support issues to the mailing list: I<bioperl-l@bioperl.org> rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. =head2 Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: https://github.com/bioperl/bioperl-live/issues =head1 AUTHOR - Hilmar Lapp, Jason Stajich Email hlapp@gmx.net, jason@bioperl.org =head1 APPENDIX The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ =cut # Let the code begin... package Bio::Location::CoordinatePolicyI; $Bio::Location::CoordinatePolicyI::VERSION = '1.7.5'; use strict; use base qw(Bio::Root::RootI); =head2 start Title : start Usage : $start = $policy->start($location); Function: Get the integer-valued start coordinate of the given location as computed by this computation policy. Returns : A positive integer number. Args : A Bio::LocationI implementing object. =cut sub start { my ($self) = @_; $self->throw_not_implemented(); } =head2 end Title : end Usage : $end = $policy->end($location); Function: Get the integer-valued end coordinate of the given location as computed by this computation policy. Returns : A positive integer number. Args : A Bio::LocationI implementing object. =cut sub end { my ($self) = @_; $self->throw_not_implemented(); } 1;
30.237705
78
0.742749
73e37973b7daa73fa1e603b577445065297724e2
11,312
pm
Perl
modules/EnsEMBL/Web/Component/VariationImage.pm
amonida/ensembl-webcode
284a8c633fdcf72575f18c11ac0657ee0919e270
[ "Apache-2.0", "MIT" ]
null
null
null
modules/EnsEMBL/Web/Component/VariationImage.pm
amonida/ensembl-webcode
284a8c633fdcf72575f18c11ac0657ee0919e270
[ "Apache-2.0", "MIT" ]
null
null
null
modules/EnsEMBL/Web/Component/VariationImage.pm
amonida/ensembl-webcode
284a8c633fdcf72575f18c11ac0657ee0919e270
[ "Apache-2.0", "MIT" ]
null
null
null
=head1 LICENSE Copyright [1999-2014] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =cut package EnsEMBL::Web::Component::VariationImage; use strict; use base qw(EnsEMBL::Web::Component::Gene); sub _init { my $self = shift; $self->cacheable(0); $self->ajaxable(1); $self->has_image(1); } sub content { my $self = shift; my $no_snps = shift; my $ic_type = shift || 'gene_variation'; my $hub = $self->hub; my $object = $self->object; my $image_width = $self->image_width || 800; my $context = $hub->param('context') || 100; my $extent = $context eq 'FULL' ? 5000 : $context; my @confs = qw(gene transcripts_top transcripts_bottom); my ($image_configs, $config_type, $snp_counts, $gene_object, $transcript_object, @trans); if ($object->isa('EnsEMBL::Web::Object::Gene') || $object->isa('EnsEMBL::Web::Object::LRG')){ $gene_object = $object; $config_type = 'gene_variation'; } else { $transcript_object = $object; $gene_object = $self->hub->core_objects->{'gene'}; $config_type = $ic_type; } # Padding # Get 4 configs - and set width to width of context config # Get two slice - gene (4/3x) transcripts (+/-extent) push @confs, 'snps' unless $no_snps; foreach (@confs) { $image_configs->{$_} = $hub->get_imageconfig($_ eq 'gene' ? $ic_type : $config_type, $_); $image_configs->{$_}->set_parameters({ image_width => $image_width, context => $context }); } $gene_object->get_gene_slices( $image_configs->{'gene'}, [ 'gene', 'normal', '33%' ], [ 'transcripts', 'munged', $extent ] ); my $transcript_slice = $gene_object->__data->{'slices'}{'transcripts'}[1]; my $sub_slices = $gene_object->__data->{'slices'}{'transcripts'}[2]; # Fake SNPs # Grab the SNPs and map them to subslice co-ordinate # $snps contains an array of array each sub-array contains [fake_start, fake_end, B:E:Variation object] # Stores in $object->__data->{'SNPS'} my ($count_snps, $snps, $context_count); if (!$no_snps) { ($count_snps, $snps, $context_count) = $gene_object->getVariationsOnSlice($transcript_slice, $sub_slices); my $start_difference = $gene_object->__data->{'slices'}{'transcripts'}[1]->start - $gene_object->__data->{'slices'}{'gene'}[1]->start; my @fake_filtered_snps = map [ $_->[2]->start + $start_difference, $_->[2]->end + $start_difference, $_->[2] ], @$snps; $image_configs->{'gene'}->{'filtered_fake_snps'} = \@fake_filtered_snps unless $no_snps; } #my @domain_logic_names = qw(Pfam scanprosite Prints pfscan PrositePatterns PrositeProfiles Tigrfam Superfamily Smart PIRSF); my @domain_logic_names = @{$self->hub->species_defs->DOMAIN_LOGIC_NAMES||[]}; # Make fake transcripts $gene_object->store_TransformedTranscripts; # Stores in $transcript_object->__data->{'transformed'}{'exons'|'coding_start'|'coding_end'} $gene_object->store_TransformedDomains($_) for @domain_logic_names; # Stores in $transcript_object->__data->{'transformed'}{'Pfam_hits'} $gene_object->store_TransformedSNPS(undef,[ map $_->[2], @$snps]) unless $no_snps; # Stores in $transcript_object->__data->{'transformed'}{'snps'} # This is where we do the configuration of containers my (@transcripts, @containers_and_configs); # sort so trancsripts are displayed in same order as in transcript selector table my $strand = $object->Obj->strand; @trans = @{$gene_object->get_all_transcripts}; my @sorted_trans; if ($strand == 1) { @sorted_trans = sort { $b->Obj->external_name cmp $a->Obj->external_name || $b->Obj->stable_id cmp $a->Obj->stable_id } @trans; } else { @sorted_trans = sort { $a->Obj->external_name cmp $b->Obj->external_name || $a->Obj->stable_id cmp $b->Obj->stable_id } @trans; } foreach my $trans_obj (@sorted_trans) { next if $transcript_object && $trans_obj->stable_id ne $transcript_object->stable_id; my $image_config = $hub->get_imageconfig($ic_type, $trans_obj->stable_id); $image_config->init_transcript; # create config and store information on it $trans_obj->__data->{'transformed'}{'extent'} = $extent; $image_config->{'geneid'} = $gene_object->stable_id; $image_config->{'snps'} = $snps unless $no_snps; $image_config->{'subslices'} = $sub_slices; $image_config->{'extent'} = $extent; $image_config->{'_add_labels'} = 1; # Store transcript information on config my $transformed_slice = $trans_obj->__data->{'transformed'}; $image_config->{'transcript'} = { exons => $transformed_slice->{'exons'}, coding_start => $transformed_slice->{'coding_start'}, coding_end => $transformed_slice->{'coding_end'}, transcript => $trans_obj->Obj, gene => $gene_object->Obj }; $image_config->{'transcript'}{'snps'} = $transformed_slice->{'snps'} unless $no_snps; # Turn on track associated with this db/logic name $image_config->modify_configs( [ $image_config->get_track_key('gsv_transcript', $gene_object) ], { display => 'normal', show_labels => 'off', caption => '' } ); $image_config->{'transcript'}{lc($_) . '_hits'} = $transformed_slice->{lc($_) . '_hits'} for @domain_logic_names; $image_config->set_parameters({ container_width => $gene_object->__data->{'slices'}{'transcripts'}[3] }); if ($gene_object->seq_region_strand < 0) { push @containers_and_configs, $transcript_slice, $image_config; } else { unshift @containers_and_configs, $transcript_slice, $image_config; # If forward strand we have to draw these in reverse order (as forced on -ve strand) } push @transcripts, { exons => $transformed_slice->{'exons'} }; } # Map SNPs for the last SNP display my $snp_rel = 5; # relative length of snp to gap in bottom display my $fake_length = -1; # end of last drawn snp on bottom display my $slice_trans = $transcript_slice; # map snps to fake evenly spaced co-ordinates my @snps2; if (!$no_snps) { foreach (sort { $a->[0] <=> $b->[0] } @$snps) { $fake_length += $snp_rel + 1; push @snps2, [ $fake_length - $snp_rel + 1, $fake_length, $_->[2], $slice_trans->seq_region_name, $slice_trans->strand > 0 ? ( $slice_trans->start + $_->[2]->start - 1, $slice_trans->start + $_->[2]->end - 1 ) : ( $slice_trans->end - $_->[2]->end + 1, $slice_trans->end - $_->[2]->start + 1 ) ]; } $_->__data->{'transformed'}{'gene_snps'} = \@snps2 for @trans; # Cache data so that it can be retrieved later } # Tweak the configurations for the five sub images # Gene context block; my $gene_stable_id = $gene_object->stable_id; # Transcript block $image_configs->{'gene'}->{'geneid'} = $gene_stable_id; $image_configs->{'gene'}->set_parameters({ container_width => $gene_object->__data->{'slices'}{'gene'}[1]->length }); $image_configs->{'gene'}->modify_configs( [ $image_configs->{'gene'}->get_track_key('transcript', $gene_object) ], { display => 'transcript_nolabel', menu => 'no' } ); # Intronless transcript top and bottom (to draw snps, ruler and exon backgrounds) foreach(qw(transcripts_top transcripts_bottom)) { $image_configs->{$_}->{'extent'} = $extent; $image_configs->{$_}->{'geneid'} = $gene_stable_id; $image_configs->{$_}->{'transcripts'} = \@transcripts; $image_configs->{$_}->{'snps'} = $gene_object->__data->{'SNPS'} unless $no_snps; $image_configs->{$_}->{'subslices'} = $sub_slices; $image_configs->{$_}->{'fakeslice'} = 1; $image_configs->{$_}->set_parameters({ container_width => $gene_object->__data->{'slices'}{'transcripts'}[3] }); } $image_configs->{'transcripts_bottom'}->get_node('spacer')->set('display', 'off') if $no_snps; # SNP box track if (!$no_snps) { $image_configs->{'snps'}->{'fakeslice'} = 1; $image_configs->{'snps'}->{'snps'} = \@snps2; $image_configs->{'snps'}->set_parameters({ container_width => $fake_length }); $snp_counts = [ $count_snps, scalar @$snps, $context_count ]; } # Render image my $image = $self->new_image([ $gene_object->__data->{'slices'}{'gene'}[1], $image_configs->{'gene'}, $transcript_slice, $image_configs->{'transcripts_top'}, @containers_and_configs, $transcript_slice, $image_configs->{'transcripts_bottom'}, $no_snps ? () : ($transcript_slice, $image_configs->{'snps'}) ], [ $gene_object->stable_id ] ); return if $self->_export_image($image, 'no_text'); $image->imagemap = 'yes'; $image->{'panel_number'} = 'top'; $image->set_button( 'drag', 'title' => 'Drag to select region' ); my $html = $image->render; if ($no_snps) { $html .= $self->_info( 'Configuring the display', "<p>Tip: use the '<strong>Configure this page</strong>' link on the left to customise the protein domains displayed above.</p>" ); return $html; } my $info_text = $self->config_info($snp_counts); $html .= $self->_info( 'Configuring the display', qq{ <p> Tip: use the '<strong>Configure this page</strong>' link on the left to customise the protein domains and types of variations displayed above.<br /> Please note the default 'Context' settings will probably filter out some intronic SNPs.<br /> $info_text </p>} ); return $html; } sub config_info { my ($self, $counts) = @_; return unless ref $counts eq 'ARRAY'; my $info; if ($counts->[0] == 0) { $info = 'There are no SNPs within the context selected for this transcript.'; } elsif ($counts->[1] == 0) { $info = "The options set in the page configuration have filtered out all $counts->[0] variations in this region."; } elsif ($counts->[0] == $counts->[1]) { $info = 'None of the variations are filtered out by the Source, Class and Type filters.'; } else { $info = ($counts->[0] - $counts->[1]) . " of the $counts->[0] variations in this region have been filtered out by the Source, Class and Type filters."; } return $info unless defined $counts->[2]; # Context filter $info .= '<br />'; if ($counts->[2]== 0) { $info .= 'None of the intronic variations are removed by the Context filter.'; } elsif ($counts->[2] == 1) { $info .= "$counts->[2] intronic variation has been removed by the Context filter."; } else { $info .= "$counts->[2] intronic variations are removed by the Context filter."; } return $info; } 1;
38.345763
165
0.635785
ed5adc72c3782b43fd565b4b824a295ce46b2843
1,184
pl
Perl
scripts/parse-json.pl
DARMA-tasking/serialization-sanitizer
d8609a5e3839082c8ae4a6e0356c8f64bbb73a48
[ "BSD-3-Clause" ]
null
null
null
scripts/parse-json.pl
DARMA-tasking/serialization-sanitizer
d8609a5e3839082c8ae4a6e0356c8f64bbb73a48
[ "BSD-3-Clause" ]
11
2020-12-03T00:23:13.000Z
2021-02-05T17:44:18.000Z
scripts/parse-json.pl
DARMA-tasking/checkpoint-member-analyzer
d8609a5e3839082c8ae4a6e0356c8f64bbb73a48
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env perl use JSON::PP; use File::Basename; use strict; use warnings; die "./parse-json.pl <run> <sanitizer> <compile-database> <dir> <file> <ignore>" if @ARGV < 4; my ($run, $san, $json_file, $dir_match, $file_match) = (shift,shift,shift,shift,shift); my $has_ignore = 0; my $ignore = ""; if (@ARGV > 0) { $has_ignore = 1; $ignore = shift; } print STDERR "ARGV=@ARGV\n"; print STDERR "json=$json_file\n"; print STDERR "dir match=$dir_match\n"; print STDERR "file match=$file_match\n"; sub readFile { my $json = shift; open my $fd, "<", $json; my $lines = do { local $/; <$fd> }; close $fd; return $lines; } sub decodeFile { my $data = shift; my $json = decode_json $data; return $json; } my $raw = &readFile($json_file); my $json = &decodeFile($raw); my $dirname = dirname(__FILE__); map { my ($dir, $file) = ($_->{'directory'}, $_->{'file'}); my $cmd = "$dirname/transform.sh $san $json_file $file @ARGV"; if ($dir =~ /$dir_match/ && $file =~ /$file_match/) { if (!$has_ignore || !($file =~ /$ignore/)) { print "$cmd\n"; print `$cmd` if ($run == 1); } } } @{$json};
22.339623
94
0.565034
ed5e8f81df2b6936e00b1db4182e288bb7825fdf
5,285
pm
Perl
os/linux/local/mode/listpartitions.pm
Rico29/centreon-plugins
3fcaa41001c20fdc35df49db95e5ad0516137de6
[ "Apache-2.0" ]
null
null
null
os/linux/local/mode/listpartitions.pm
Rico29/centreon-plugins
3fcaa41001c20fdc35df49db95e5ad0516137de6
[ "Apache-2.0" ]
null
null
null
os/linux/local/mode/listpartitions.pm
Rico29/centreon-plugins
3fcaa41001c20fdc35df49db95e5ad0516137de6
[ "Apache-2.0" ]
null
null
null
# # Copyright 2017 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for # service performance. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # package os::linux::local::mode::listpartitions; use base qw(centreon::plugins::mode); use strict; use warnings; use centreon::plugins::misc; sub new { my ($class, %options) = @_; my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; $self->{version} = '1.0'; $options{options}->add_options(arguments => { "hostname:s" => { name => 'hostname' }, "remote" => { name => 'remote' }, "ssh-option:s@" => { name => 'ssh_option' }, "ssh-path:s" => { name => 'ssh_path' }, "ssh-command:s" => { name => 'ssh_command', default => 'ssh' }, "timeout:s" => { name => 'timeout', default => 30 }, "sudo" => { name => 'sudo' }, "command:s" => { name => 'command', default => 'cat' }, "command-path:s" => { name => 'command_path' }, "command-options:s" => { name => 'command_options', default => '/proc/partitions 2>&1' }, "filter-name:s" => { name => 'filter_name', }, }); $self->{result} = {}; return $self; } sub check_options { my ($self, %options) = @_; $self->SUPER::init(%options); } sub manage_selection { my ($self, %options) = @_; my $stdout = centreon::plugins::misc::execute(output => $self->{output}, options => $self->{option_results}, sudo => $self->{option_results}->{sudo}, command => $self->{option_results}->{command}, command_path => $self->{option_results}->{command_path}, command_options => $self->{option_results}->{command_options}); my @lines = split /\n/, $stdout; # Header not needed shift @lines; foreach my $line (@lines) { next if ($line !~ /^\s*(\S+)\s+(\S+)\s+(\S+)\s+(\S+)/); my ($major, $minor, $blocks, $name) = ($1, $2, $3, $4); if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && $name !~ /$self->{option_results}->{filter_name}/) { $self->{output}->output_add(long_msg => "Skipping partition '" . $name . "': no matching filter name"); next; } $self->{result}->{$name} = 1; } } sub run { my ($self, %options) = @_; $self->manage_selection(); foreach my $name (sort(keys %{$self->{result}})) { $self->{output}->output_add(long_msg => "'" . $name . "'"); } $self->{output}->output_add(severity => 'OK', short_msg => 'List partitions:'); $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); $self->{output}->exit(); } sub disco_format { my ($self, %options) = @_; $self->{output}->add_disco_format(elements => ['name']); } sub disco_show { my ($self, %options) = @_; $self->manage_selection(); foreach my $name (sort(keys %{$self->{result}})) { $self->{output}->add_disco_entry(name => $name, ); } } 1; __END__ =head1 MODE List partitions. =over 8 =item B<--remote> Execute command remotely in 'ssh'. =item B<--hostname> Hostname to query (need --remote). =item B<--ssh-option> Specify multiple options like the user (example: --ssh-option='-l=centreon-engine' --ssh-option='-p=52'). =item B<--ssh-path> Specify ssh command path (default: none) =item B<--ssh-command> Specify ssh command (default: 'ssh'). Useful to use 'plink'. =item B<--timeout> Timeout in seconds for the command (Default: 30). =item B<--sudo> Use 'sudo' to execute the command. =item B<--command> Command to get information (Default: 'cat'). Can be changed if you have output in a file. =item B<--command-path> Command path (Default: none). =item B<--command-options> Command options (Default: '/proc/partitions 2>&1'). =item B<--filter-name> Filter partition name (regexp can be used). =back =cut
30.906433
123
0.52299
ed64d1fd49dccc20bf03d1009bc2542fde4831e5
7,107
pm
Perl
auto-lib/Paws/S3/PutBucketNotification.pm
shogo82148/aws-sdk-perl
a87555a9d30dd1415235ebacd2715b2f7e5163c7
[ "Apache-2.0" ]
null
null
null
auto-lib/Paws/S3/PutBucketNotification.pm
shogo82148/aws-sdk-perl
a87555a9d30dd1415235ebacd2715b2f7e5163c7
[ "Apache-2.0" ]
null
null
null
auto-lib/Paws/S3/PutBucketNotification.pm
shogo82148/aws-sdk-perl
a87555a9d30dd1415235ebacd2715b2f7e5163c7
[ "Apache-2.0" ]
null
null
null
package Paws::S3::PutBucketNotification; use Moose; has Bucket => (is => 'ro', isa => 'Str', uri_name => 'Bucket', traits => ['ParamInURI'], required => 1); has ContentLength => (is => 'ro', isa => 'Int', header_name => 'Content-Length', traits => ['ParamInHeader']); has ContentMD5 => (is => 'ro', isa => 'Str', header_name => 'Content-MD5', auto => 'MD5', traits => ['AutoInHeader']); has NotificationConfiguration => (is => 'ro', isa => 'Paws::S3::NotificationConfigurationDeprecated', traits => ['ParamInBody'], required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'PutBucketNotification'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/{Bucket}?notification'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'PUT'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::API::Response'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::S3::PutBucketNotification - Arguments for method PutBucketNotification on L<Paws::S3> =head1 DESCRIPTION This class represents the parameters used for calling the method PutBucketNotification on the L<Amazon Simple Storage Service|Paws::S3> service. Use the attributes of this class as arguments to method PutBucketNotification. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to PutBucketNotification. =head1 SYNOPSIS my $s3 = Paws->service('S3'); $s3->PutBucketNotification( Bucket => 'MyBucketName', NotificationConfiguration => { CloudFunctionConfiguration => { CloudFunction => 'MyCloudFunction', # OPTIONAL Event => 's3:ReducedRedundancyLostObject' , # values: s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold; OPTIONAL Events => [ 's3:ReducedRedundancyLostObject', ... # values: s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold; OPTIONAL ], # OPTIONAL Id => 'MyNotificationId', # OPTIONAL InvocationRole => 'MyCloudFunctionInvocationRole', # OPTIONAL }, # OPTIONAL QueueConfiguration => { Event => 's3:ReducedRedundancyLostObject' , # values: s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold; OPTIONAL Events => [ 's3:ReducedRedundancyLostObject', ... # values: s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold; OPTIONAL ], # OPTIONAL Id => 'MyNotificationId', # OPTIONAL Queue => 'MyQueueArn', # OPTIONAL }, # OPTIONAL TopicConfiguration => { Event => 's3:ReducedRedundancyLostObject' , # values: s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold; OPTIONAL Events => [ 's3:ReducedRedundancyLostObject', ... # values: s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold; OPTIONAL ], # OPTIONAL Id => 'MyNotificationId', # OPTIONAL Topic => 'MyTopicArn', # OPTIONAL }, # OPTIONAL }, ContentLength => 1, # OPTIONAL ContentMD5 => 'MyContentMD5', # OPTIONAL ); Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L<https://docs.aws.amazon.com/goto/WebAPI/s3/PutBucketNotification> =head1 ATTRIBUTES =head2 B<REQUIRED> Bucket => Str The name of the bucket. =head2 ContentLength => Int Size of the body in bytes. =head2 ContentMD5 => Str The MD5 hash of the C<PutPublicAccessBlock> request body. =head2 B<REQUIRED> NotificationConfiguration => L<Paws::S3::NotificationConfigurationDeprecated> The container for the configuration. =head1 SEE ALSO This class forms part of L<Paws>, documenting arguments for method PutBucketNotification in L<Paws::S3> =head1 BUGS and CONTRIBUTIONS The source code is located here: L<https://github.com/pplu/aws-sdk-perl> Please report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues> =cut
59.225
538
0.725201
ed5215d2126bf55e3fa72fcabd24bb5c8d769ca3
108
t
Perl
t/basic.t
fayland/perl-WWW-Baidu-ZhanZhang
b0fea5416b3a57dc7bbaa24faa8cc4497ae932e9
[ "Artistic-1.0" ]
null
null
null
t/basic.t
fayland/perl-WWW-Baidu-ZhanZhang
b0fea5416b3a57dc7bbaa24faa8cc4497ae932e9
[ "Artistic-1.0" ]
null
null
null
t/basic.t
fayland/perl-WWW-Baidu-ZhanZhang
b0fea5416b3a57dc7bbaa24faa8cc4497ae932e9
[ "Artistic-1.0" ]
null
null
null
use strict; use Test::More; use WWW::Baidu::ZhanZhang; # replace with the actual test ok 1; done_testing;
12
30
0.731481
73df844aa05ba1c1d604cac77f21a5a98a5fa1f5
1,036
pl
Perl
lm/build.pl
yuvarajbora/demo
82edce9b2f40611e59207787fb71806c4e8a37fc
[ "Apache-2.0" ]
null
null
null
lm/build.pl
yuvarajbora/demo
82edce9b2f40611e59207787fb71806c4e8a37fc
[ "Apache-2.0" ]
4
2021-04-28T20:02:39.000Z
2021-04-29T00:59:20.000Z
lm/build.pl
yuvarajbora/demo
82edce9b2f40611e59207787fb71806c4e8a37fc
[ "Apache-2.0" ]
1
2021-07-05T18:55:19.000Z
2021-07-05T18:55:19.000Z
#!/usr/bin/perl -w # *.lm = old format, uses '_' as separator # *.ln = new format, uses NULL as separator # # <@LICENSE> # Copyright 2004 Apache Software Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # </@LICENSE> @files = <*.l[mn]>; open(STDOUT, "> ../rules/languages"); foreach $file (sort @files) { $lang = $file; $lang =~ s@(.*/)?(.*)\.l[mn]$@$2@; open(L, $file); while(<L>) { s/^([^0-9\s]+).*/$1/; if ($file =~ /\.lm$/) { s/^_/\000/; s/_$/\000/; } print; } close(L); print "0 $lang\n"; }
26.564103
74
0.640927
ed6a4bbbc5997eb42f476705361586434c5d8618
281
t
Perl
t/00_basic.t
mojotoad/Finance-QuoteHist
4c045cf40b6d3c7fe0722a5ef43cb48466fc083b
[ "Artistic-1.0" ]
3
2016-01-18T04:47:04.000Z
2019-11-05T19:01:21.000Z
t/00_basic.t
mojotoad/Finance-QuoteHist
4c045cf40b6d3c7fe0722a5ef43cb48466fc083b
[ "Artistic-1.0" ]
3
2017-06-19T03:26:19.000Z
2022-02-23T00:46:11.000Z
t/00_basic.t
mojotoad/Finance-QuoteHist
4c045cf40b6d3c7fe0722a5ef43cb48466fc083b
[ "Artistic-1.0" ]
1
2017-11-05T22:17:47.000Z
2017-11-05T22:17:47.000Z
use FindBin; use lib $FindBin::RealBin; use testload; my $tcount; BEGIN { my @mods = modules(); $tcount = scalar @mods + 2; } use Test::More tests => $tcount; BEGIN { use_ok('Finance::QuoteHist'); use_ok('Finance::QuoteHist::Generic'); use_ok($_) foreach modules(); }
15.611111
40
0.651246
73fe6bf879a2bc1706b10781580c4130115f1b84
318
al
Perl
perl/vendor/lib/auto/Net/SSLeay/post_http.al
luiscarlosg27/xampp
c295dbdd435c9c62fbd4cc6fc42097bea7a900a0
[ "Apache-2.0" ]
2
2021-07-24T12:46:49.000Z
2021-08-02T08:37:53.000Z
perl/vendor/lib/auto/Net/SSLeay/post_http.al
luiscarlosg27/xampp
c295dbdd435c9c62fbd4cc6fc42097bea7a900a0
[ "Apache-2.0" ]
3
2021-01-27T10:09:28.000Z
2021-05-11T21:20:12.000Z
perl/vendor/lib/auto/Net/SSLeay/post_http.al
luiscarlosg27/xampp
c295dbdd435c9c62fbd4cc6fc42097bea7a900a0
[ "Apache-2.0" ]
null
null
null
# NOTE: Derived from blib\lib\Net\SSLeay.pm. # Changes made here will be lost when autosplit is run again. # See AutoSplit.pm. package Net::SSLeay; #line 1448 "blib\lib\Net\SSLeay.pm (autosplit into blib\lib\auto\Net\SSLeay\post_http.al)" sub post_http { do_httpx2(POST => 0, @_) } # end of Net::SSLeay::post_http 1;
31.8
90
0.72956
ed6efd38b12cd9c68bde54b64d1a3cc213f456fa
346
pl
Perl
tools/wrapper/marelle/02-fs.pl
aarroyoc/logtalk3
c737a00f0293cfc1fdd85e5b704a6d2524b6d29a
[ "Apache-2.0" ]
279
2015-01-06T14:04:01.000Z
2022-03-24T08:11:00.000Z
tools/wrapper/marelle/02-fs.pl
aarroyoc/logtalk3
c737a00f0293cfc1fdd85e5b704a6d2524b6d29a
[ "Apache-2.0" ]
65
2015-01-06T14:22:52.000Z
2022-03-15T10:59:17.000Z
tools/wrapper/marelle/02-fs.pl
aarroyoc/logtalk3
c737a00f0293cfc1fdd85e5b704a6d2524b6d29a
[ "Apache-2.0" ]
57
2015-01-29T17:49:56.000Z
2022-02-02T17:15:13.000Z
% % 02-fs.pl % marelle-deps % :- multifile symlink_step/3. pkg(P) :- symlink_step(P, _, _). met(P, _) :- symlink_step(P, Dest0, Link0), !, expand_path(Dest0, Dest), expand_path(Link0, Link), read_link(Link, _, Dest). meet(P, _) :- symlink_step(P, Dest, Link), !, join(['ln -s ', Dest, ' ', Link], Cmd), bash(Cmd).
19.222222
43
0.566474
ed038155a968cae01f55d4c077134595786943fc
3,420
pm
Perl
lib/Perl/ToPerl6/Transformer/Variables/ReplaceNegativeIndex.pm
git-the-cpan/Perl-ToPerl6
fc17ca080310a60971cefbb9d4d94abbf19d8893
[ "Artistic-1.0" ]
null
null
null
lib/Perl/ToPerl6/Transformer/Variables/ReplaceNegativeIndex.pm
git-the-cpan/Perl-ToPerl6
fc17ca080310a60971cefbb9d4d94abbf19d8893
[ "Artistic-1.0" ]
null
null
null
lib/Perl/ToPerl6/Transformer/Variables/ReplaceNegativeIndex.pm
git-the-cpan/Perl-ToPerl6
fc17ca080310a60971cefbb9d4d94abbf19d8893
[ "Artistic-1.0" ]
null
null
null
package Perl::ToPerl6::Transformer::Variables::ReplaceNegativeIndex; use 5.006001; use strict; use warnings; use Readonly; use Perl::ToPerl6::Utils qw{ :severities }; use Perl::ToPerl6::Utils::PPI qw{ is_ppi_token_word }; use base 'Perl::ToPerl6::Transformer'; #----------------------------------------------------------------------------- Readonly::Scalar my $DESC => q{Negative array indexes now need [*-1] notation}; Readonly::Scalar my $EXPL => q{Negative array indexes now need [*-1] notation}; #----------------------------------------------------------------------------- # # That way we don't have to deal with the integer conversions. # sub run_before { return 'BasicTypes::Integers::RewriteBinaryNumbers', 'BasicTypes::Integers::RewriteOctalNumbers', 'BasicTypes::Integers::RewriteHexNumbers' } sub supported_parameters { return () } sub default_necessity { return $NECESSITY_HIGHEST } sub default_themes { return qw( core ) } # # Don't test the subscript type because the [-N] may be after a {}. # sub applies_to { return sub { $_[1]->isa('PPI::Token::Symbol') and $_[1]->snext_sibling and ( $_[1]->snext_sibling->isa('PPI::Structure::Subscript') or $_[1]->snext_sibling->isa('PPI::Token::Operator') ) } } #----------------------------------------------------------------------------- sub transform { my ($self, $elem, $doc) = @_; my $head = $elem; while ( $head = $head->snext_sibling ) { next unless $head->isa('PPI::Structure::Subscript') and $head->start eq '['; if ( $head->schild(0)->isa('PPI::Statement::Expression') ) { if ( $head->schild(0)->schild(0)->isa('PPI::Token::Number') and $head->schild(0)->schild(0)->content =~ /^ [-] /x ) { # # Don't use the operator '*' lest it get confused. This way # the code is still syntactically correct. # $head->schild(0)->schild(0)->insert_before( PPI::Token::Word->new('*') ); } } } return $self->transformation( $DESC, $EXPL, $elem ); } 1; #----------------------------------------------------------------------------- __END__ =pod =head1 NAME Perl::ToPerl6::Transformer::Variables::ReplaceNegativeIndex - Perl6 now uses [*-1] notation to represent negative indices. =head1 AFFILIATION This Transformer is part of the core L<Perl::ToPerl6|Perl::ToPerl6> distribution. =head1 DESCRIPTION Perl6 uses the new open-ended range notation C<[*-1]> to access the last element of an array: $x[-1] --> $x[*-1] $x->[-1] --> $x->[*-1] Transforms variables outside of comments, heredocs, strings and POD. =head1 CONFIGURATION This Transformer is not configurable except for the standard options. =head1 AUTHOR Jeffrey Goff <drforr@pobox.com> =head1 COPYRIGHT Copyright (c) 2015 Jeffrey Goff This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut ############################################################################## # Local Variables: # mode: cperl # cperl-indent-level: 4 # fill-column: 78 # indent-tabs-mode: nil # c-indentation-style: bsd # End: # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :
27.580645
122
0.549415
ed31541278af209bccbb9fb4200363d879f1d750
3,601
pm
Perl
wifi_diag/PeerConn.pm
meterup/lanforge-scripts
06beca75aa498b3ca2d3d905a8a13cefd8932f94
[ "BSD-2-Clause-FreeBSD", "BSD-3-Clause" ]
11
2017-10-09T13:15:53.000Z
2022-02-10T15:43:20.000Z
wifi_diag/PeerConn.pm
meterup/lanforge-scripts
06beca75aa498b3ca2d3d905a8a13cefd8932f94
[ "BSD-2-Clause-FreeBSD", "BSD-3-Clause" ]
5
2017-10-16T14:27:46.000Z
2021-10-13T13:15:33.000Z
wifi_diag/PeerConn.pm
meterup/lanforge-scripts
06beca75aa498b3ca2d3d905a8a13cefd8932f94
[ "BSD-2-Clause-FreeBSD", "BSD-3-Clause" ]
11
2020-03-26T06:43:24.000Z
2022-03-18T19:18:21.000Z
package PeerConn; use warnings; use strict; use Tid; sub new { my $class = shift; my %options = @_; my $self = { %options, tids => [], }; bless($self, $class); my $mcs_fname = $self->{report_prefix} . "conn-" . $self->hash_str() . "-rpt.txt"; open(my $MCS, ">", $mcs_fname) or die("Can't open $mcs_fname for writing: $!\n"); $self->{mcs_fh} = $MCS; return $self; } sub hash_str { my $self = shift; return $self->{local_addr} . "." . $self->{peer_addr}; } sub local_addr { my $self = shift; return $self->{local_addr}; } sub peer_addr { my $self = shift; return $self->{peer_addr}; } sub add_pkt { my $self = shift; my $pkt = shift; my $tidno = $pkt->tid(); my $tid = $self->find_or_create_tid($tidno); $tid->add_pkt($pkt); $pkt->{tid} = $tid; # Generate reporting data for this pkt my $ln = "" . $pkt->timestamp() . "\t$tidno\t" . $pkt->datarate() . "\t" . $pkt->retrans() . "\n"; my $fh = $self->{mcs_fh}; print $fh $ln; } sub find_or_create_tid { my $self = shift; my $tidno = shift; if ($tidno =~ m/^0x/) { print STDERR "PeerConn::find_or_create_tid: converting hex tidno $tidno to dec: ".hex($tidno)."\n"; $tidno = hex($tidno); } my $tid; if (exists $self->{tids}[$tidno]) { $tid = $self->{tids}[$tidno]; } else { $tid = Tid->new(glb_fh_ba_tx => $self->{glb_fh_ba_tx}, glb_fh_ba_rx => $self->{glb_fh_ba_rx}, tidno => $tidno, report_prefix => $self->{report_prefix}, addr_a => $self->local_addr(), addr_b => $self->peer_addr(), ); $self->{tids}[$tidno] = $tid; } return $tid; } sub sum_tids { my $self = shift; my $var = shift; my $tid_count = @{$self->{tids}}; my $rv = 0; my $i; for ($i = 0; $i < $tid_count; $i++) { if (exists $self->{tids}[$i]) { if ($var == 0) { $rv += $self->{tids}[$i]->tx_no_ack_found_all(); } elsif ($var == 1) { $rv += $self->{tids}[$i]->tx_no_ack_found_big(); } elsif ($var == 2) { $rv += $self->{tids}[$i]->rx_no_ack_found_all(); } elsif ($var == 3) { $rv += $self->{tids}[$i]->rx_no_ack_found_big(); } } } return $rv; } sub tx_no_ack_found_all { my $self = shift; return $self->sum_tids(0); } sub tx_no_ack_found_big { my $self = shift; return $self->sum_tids(1); } sub rx_no_ack_found_all { my $self = shift; return $self->sum_tids(2); } sub rx_no_ack_found_big { my $self = shift; return $self->sum_tids(3); } sub notify_done { my $self = shift; my $tid_count = @{$self->{tids}}; my $i; for ($i = 0; $i < $tid_count; $i++) { #print "Checking tid: $i\n"; if (exists $self->{tids}[$i]) { $self->{tids}[$i]->check_remaining_pkts(); } } } sub printme { my $self = shift; my $tid_count = @{$self->{tids}}; print "hash-key: " . $self->hash_str() . " tid-count: " . $tid_count . "\n"; my $i; for ($i = 0; $i < $tid_count; $i++) { #print "Checking tid: $i\n"; if (exists $self->{tids}[$i]) { #print "Printing tid: $i\n"; $self->{tids}[$i]->printme(); #print "Done printing tid: $i\n"; } } #print "Done peer-conn printme\n"; return; } sub gen_graphs { my $self = shift; my $tid_count = @{$self->{tids}}; my $i; for ($i = 0; $i < $tid_count; $i++) { #print "Checking tid: $i\n"; if (exists $self->{tids}[$i]) { #print "Printing tid: $i\n"; $self->{tids}[$i]->printme(); #print "Done printing tid: $i\n"; } } #print "Done peer-conn printme\n"; return; } 1;
19.785714
104
0.531797
ed4d0007e9784c79fcb1625da9308e6531c0040d
1,728
pl
Perl
perl/hz_make_bolometric_filter.pl
drphilmarshall/scriptutils
3868e3ca4cbb0bbd46e44f31eff26629935f86c0
[ "MIT" ]
4
2015-01-19T15:47:57.000Z
2021-06-24T10:08:31.000Z
perl/hz_make_bolometric_filter.pl
drphilmarshall/scriptutils
3868e3ca4cbb0bbd46e44f31eff26629935f86c0
[ "MIT" ]
2
2015-07-06T16:17:21.000Z
2015-07-06T16:21:45.000Z
perl/hz_make_bolometric_filter.pl
drphilmarshall/scriptutils
3868e3ca4cbb0bbd46e44f31eff26629935f86c0
[ "MIT" ]
3
2015-07-17T22:43:22.000Z
2018-02-26T03:05:25.000Z
#!/usr/local/bin/perl -w # ============================================================================= #+ $usage = " NAME hz_make_bolometric_filter.pl PURPOSE Write a 200-point FILTER.RES entry for appending to hyperz filter set. USAGE hz_make_bolometric_filter.pl FLAGS -u Print this message INPUTS OPTIONAL INPUTS OUTPUTS OPTIONAL OUTPUTS COMMENTS EXAMPLES BUGS REVISION HISTORY: 2007-02-27 Started Marshall (UCSB) 2007-02-28 Switched to more standard 2-column plain text Marshall (UCSB) \n"; #- # ====================================================================== # $\="\n"; use Getopt::Long; GetOptions("u", \$help ); (defined($help)) and die "$usage\n"; # Default numbers - make sure they are within range of spectra [91:97400]!: $xmin = 100.0; $xmax = 95000.0; $n = 200; $outfile = "Bolometric.res"; # Write to files: open (OUT, ">$outfile") or die "Couldn't open $outfile: $!"; # print OUT "\t$n\tBolometric\n"; for ($i = 0; $i < $n; $i++){ # $j = $i + 1; if ($i == 0) { $x = int($xmin); $t = 0.0; } elsif ($i == 1) { $x = int($xmin + 1.0); $t = 1.0; } elsif ($i == ($n-2)) { $x = int($xmax - 1.0); $t = 1.0; } elsif ($i == ($n-1)) { $x = int($xmax); $t = 0.0; } else { $a = 1.0*$i/(1.0*$n); # Logarithmic/geometric spacing $x = int(($xmin**(1.0-$a)) * ($xmax**$a)); # # Uniform [0:20000] spacing redshifted to z=4: # $x = int($xmin + $a * ($xmax - $xmin)); $t = 1.0; } # print OUT "\t$j\t$x\t$t\n"; print OUT "\t$x\t\t$t\n"; } close(OUT); print "New filter.res file written to $outfile\n"; # ======================================================================
19.2
79
0.476273
ed5a87f426065d1aa30a8f24634f00205792acb3
1,395
pm
Perl
lib/Test2/Formatter/QVF.pm
bleargh45/Test2-Harness
f56efe2f19119b738669edc61774f004793eec15
[ "Artistic-1.0" ]
1
2021-04-23T04:52:15.000Z
2021-04-23T04:52:15.000Z
lib/Test2/Formatter/QVF.pm
bleargh45/Test2-Harness
f56efe2f19119b738669edc61774f004793eec15
[ "Artistic-1.0" ]
null
null
null
lib/Test2/Formatter/QVF.pm
bleargh45/Test2-Harness
f56efe2f19119b738669edc61774f004793eec15
[ "Artistic-1.0" ]
null
null
null
package Test2::Formatter::QVF; use strict; use warnings; our $VERSION = '0.001100'; BEGIN { require Test2::Formatter::Test2; our @ISA = qw(Test2::Formatter::Test2) } use Test2::Util::HashBase qw{ -job_buffers }; sub init { my $self = shift; $self->SUPER::init(); $self->{+VERBOSE} = 100; } sub write { my ($self, $e, $num, $f) = @_; $f ||= $e->facet_data; my $job_id = $f->{harness}->{job_id}; push @{$self->{+JOB_BUFFERS}->{$job_id}} => [$e, $num, $f] if $job_id; my $show = $self->update_active_disp($f); if ($f->{harness_job_end} || !$job_id) { $show = 1; my $buffer = delete $self->{+JOB_BUFFERS}->{$job_id}; if($f->{harness_job_end}->{fail}) { $self->SUPER::write(@{$_}) for @$buffer; } else { $self->SUPER::write($e, $num, $f) } } $self->{+ECOUNT}++; return unless $self->{+TTY}; return unless $self->{+PROGRESS}; $show ||= 1 unless $self->{+ECOUNT} % 10; if ($show) { # Local is expensive! Only do it if we really need to. local($\, $,) = (undef, '') if $\ || $,; my $io = $self->{+IO}; if ($self->{+_BUFFERED}) { print $io "\r\e[K"; $self->{+_BUFFERED} = 0; } print $io $self->render_ecount($f); $self->{+_BUFFERED} = 1; } return; } 1;
20.514706
81
0.487455
73f5fd4732b8bde8335ba5b6acbedf5081e722b3
162
al
Perl
results/alignments_translated/Bo9g183540_exon9.al
naturalis/brassica-genes
e060d0938407566b6a7d0f30d61a61eea0c37f1c
[ "MIT" ]
null
null
null
results/alignments_translated/Bo9g183540_exon9.al
naturalis/brassica-genes
e060d0938407566b6a7d0f30d61a61eea0c37f1c
[ "MIT" ]
null
null
null
results/alignments_translated/Bo9g183540_exon9.al
naturalis/brassica-genes
e060d0938407566b6a7d0f30d61a61eea0c37f1c
[ "MIT" ]
null
null
null
>geneid:Bo9g183540;contig:C9;feature:exon9;seqstart:54264163;seqstop:54264231 LSKDMHDENEDISYTWVREYLWD >seqstart:54309539;seqstop54309607+ LSKDMHDENEDISYTWVREYLWD
32.4
77
0.888889
ed6067f2b9ceed699d033b7a37bd4fde8f51754b
3,663
pl
Perl
maint/upgrade-fatlib.pl
pause-play/cplay
9e5db1335a16123989879cf6b88c50a4836a1ca5
[ "Artistic-1.0" ]
4
2020-05-15T18:19:05.000Z
2022-01-07T12:49:53.000Z
maint/upgrade-fatlib.pl
pause-play/cplay
9e5db1335a16123989879cf6b88c50a4836a1ca5
[ "Artistic-1.0" ]
2
2020-05-19T16:48:02.000Z
2020-05-22T16:11:42.000Z
maint/upgrade-fatlib.pl
pause-play/cplay
9e5db1335a16123989879cf6b88c50a4836a1ca5
[ "Artistic-1.0" ]
null
null
null
#!/usr/bin/env perl use strict; use Capture::Tiny qw(capture_stdout); use Config; use Cwd; use CPAN::Meta; use File::Copy qw(copy); use File::Path; use File::Find; use File::pushd; use Carton::Snapshot; use Module::CPANfile; use Tie::File; # use 5.8.1 to see core version numbers my $core_version = "5.008001"; # use 5.8.5 to run Carton since 5.8.1 is not supported there my $plenv_version = "5.8.5"; sub run_command { #local $ENV{PLENV_VERSION} = $plenv_version; system @_; } sub rewrite_version_pm { my $file = shift; die "$file: $!" unless -e $file; tie my @file, 'Tie::File', $file or die $!; for ( 0 .. $#file ) { if ( $file[$_] =~ /^\s*eval "use version::vxs.*/ ) { splice @file, $_, 2, " if (1) { # always pretend there's no XS"; last; } } } sub build_snapshot { my $dir = shift; { my $pushd = pushd $dir; my $out = qx{carton install}; $? == 0 or die $out; } my $snapshot = Carton::Snapshot->new( path => "$dir/cpanfile.snapshot" ); $snapshot->load; return $snapshot; } sub required_modules { my ( $snapshot, $dir ) = @_; my $requires = CPAN::Meta::Requirements->new; my $finder; $finder = sub { my $prereqs = shift; my $reqs = $prereqs->requirements_for( 'runtime' => 'requires' ); for my $module ( $reqs->required_modules ) { next if $module eq 'perl'; my $core = $Module::CoreList::version{$core_version}{$module}; next if $core && $reqs->accepts_module( $module, $core ); $requires->add_string_requirement( $module => $reqs->requirements_for_module($module) ); my $dist = $snapshot->find($module); if ($dist) { my $name = $dist->name; my $path = "$dir/local/lib/perl5/$Config{archname}/.meta/$name/MYMETA.json"; my $meta = CPAN::Meta->load_file($path); $finder->( $meta->effective_prereqs ); } } }; my $cpanfile = Module::CPANfile->load("./fatpack-build/cpanfile"); $finder->( $cpanfile->prereqs ); $requires->clear_requirement($_) for qw( Module::CoreList ExtUtils::MakeMaker Carp ); return map { s!::!/!g; "$_.pm" } $requires->required_modules; } sub pack_modules { my ( $dir, @modules ) = @_; my $stdout = capture_stdout { local $ENV{PERL5LIB} = cwd . "/$dir/local/lib/perl5"; run_command "fatpack", "packlists-for", @modules; }; my @packlists = split /\n/, $stdout; for my $packlist (@packlists) { warn "Packing $packlist\n"; } run_command "fatpack", "tree", @packlists; } sub run { my ($fresh) = @_; my $dir = "fatpack-build"; mkdir $dir, 0777; if ($fresh) { rmtree $dir; mkpath $dir; } my $snapshot = build_snapshot($dir); my @modules = required_modules( $snapshot, $dir ); #use Test::More; note explain \@modules; pack_modules( $dir, @modules ); mkpath "fatlib/version"; for my $file ( glob("fatlib/$Config{archname}/version.pm*"), glob("fatlib/$Config{archname}/version/*.pm"), ) { next if $file =~ /\bvxs\.pm$/; ( my $target = $file ) =~ s!^fatlib/$Config{archname}/!fatlib/!; rename $file => $target or die "$file => $target: $!"; } #rewrite_version_pm("fatlib/version.pm"); rmtree("fatlib/$Config{archname}"); rmtree("fatlib/POD2"); find( { wanted => \&want, no_chdir => 1 }, "fatlib" ); } sub want { if (/\.p(od|l)$/) { print "rm $_\n"; unlink $_; } } run(@ARGV);
23.632258
100
0.552553
ed648e99ac132aa75934943f817d59a6116237cb
54,044
pl
Perl
XML_Generators/ARE_params.pl
ecometer/infoaria
5fcf06d6bef8cae9c2dc1bbda04d32bdf8c719f3
[ "MIT" ]
null
null
null
XML_Generators/ARE_params.pl
ecometer/infoaria
5fcf06d6bef8cae9c2dc1bbda04d32bdf8c719f3
[ "MIT" ]
null
null
null
XML_Generators/ARE_params.pl
ecometer/infoaria
5fcf06d6bef8cae9c2dc1bbda04d32bdf8c719f3
[ "MIT" ]
null
null
null
#!/usr/bin/perl # ----------------------_------------------------------------------- # ___ __ ___ _ __ ___| |_ ___ _ _ # / -_) _/ _ \ ' \/ -_) _/ -_) '_| # \___\__\___/_|_|_\___|\__\___|_| s.n.c. # # Script : ARE_params.pl # Author : Paolo Saudin & Hillary Martello # Date : 2018-03-28 # Last Edited: 2018-05-31 # Description: Data input to create XML for InfoAria DATASETS # Location : Arpa vda # ------------------------------------------------------------------ our %ARE_elements = ( IT0204_5012_H_LV_aMean_2017_retro => { SPO => { fixed => [ 'IT2233A_5012_ICP-MS_2015-01-01_00:00:00', 'IT2234A_5012_ICP-MS_2015-01-01_00:00:00', 'IT0983A_5012_ICP-MS_2015-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_5_H_LV_daysAbove_2017_retro' => { SPO => { fixed => [ 'IT2233A_5_BETA_2015-01-01_00:00:00', 'IT0988A_5_BETA_2011-01-01_00:00:00', 'IT0983A_5_BETA_2012-01-01_00:00:00', 'IT2234A_5_BETA_2015-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_8_H_LV_aMean_2017_retro' => { SPO => { fixed => [ 'IT0988A_8_chemi_2001-11-15_00:00:00', 'IT2233A_8_chemi_2015-01-01_00:00:00', 'IT2234A_8_chemi_2015-01-01_00:00:00', 'IT0980A_8_chemi_2007-09-01_00:00:00', 'IT0983A_8_chemi_2005-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_6001_H_LV_aMean_2017_retro' => { SPO => { fixed => [ 'IT0983A_6001_BETA_2012-01-01_00:00:00', 'IT2233A_6001_BETA_2015-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0205_8_H_LV_hrsAbove_2017_retro' => { SPO => { fixed => [ 'IT0977A_8_chemi_2008-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_8_H_LV_hrsAbove_2017_retro' => { SPO => { fixed => [ 'IT0988A_8_chemi_2001-11-15_00:00:00', 'IT2233A_8_chemi_2015-01-01_00:00:00', 'IT2234A_8_chemi_2015-01-01_00:00:00', 'IT0980A_8_chemi_2007-09-01_00:00:00', 'IT0983A_8_chemi_2005-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0206_7_V_TV_AOT40c-5yr_2017_retro' => { SPO => { fixed => [ 'IT0977A_7_UV-P_1994-10-02_00:00:00', 'IT0980A_7_UV-P_1996-06-01_00:00:00', 'IT0988A_7_UV-P_2001-11-15_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_10_H_LV_daysAbove_2017_retro' => { SPO => { fixed => [ 'IT0983A_10_NDIR_1999-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0206_7_H_LTO_daysAbove_2017_retro' => { SPO => { fixed => [ 'IT0977A_7_UV-P_1994-10-02_00:00:00', 'IT0980A_7_UV-P_1996-06-01_00:00:00', 'IT2233A_7_UV-P_2015-01-01_00:00:00', 'IT0988A_7_UV-P_2001-11-15_00:00:00', 'IT0983A_7_UV-P_1994-10-02_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_20_H_LV_aMean_2017_retro' => { SPO => { fixed => [ 'IT0983A_20_GC-FID_1996-06-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_6001_H_TV_aMean_2017_retro' => { SPO => { fixed => [ 'IT0983A_6001_BETA_2012-01-01_00:00:00', 'IT2233A_6001_BETA_2015-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_5015_H_TV_aMean_2017_retro' => { SPO => { fixed => [ 'IT0983A_5015_ICP-MS_2015-01-01_00:00:00', 'IT2233A_5015_ICP-MS_2015-01-01_00:00:00', 'IT2234A_5015_ICP-MS_2015-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0206_7_V_LTO_AOT40c_2017_retro' => { SPO => { fixed => [ 'IT0977A_7_UV-P_1994-10-02_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_5018_H_TV_aMean_2017_retro' => { SPO => { fixed => [ 'IT2233A_5018_ICP-MS_2015-01-01_00:00:00', 'IT2234A_5018_ICP-MS_2015-01-01_00:00:00', 'IT0983A_5018_ICP-MS_2015-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0206_9_V_CL_aMean_2017_retro' => { SPO => { fixed => [ 'IT0977A_9_chemi_2008-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_5029_H_TV_aMean_2017_retro' => { SPO => { fixed => [ 'IT2233A_5029_HPLC-FLD_2015-01-01_00:00:00', 'IT0983A_5029_HPLC-FLD_2005-01-01_00:00:00', 'IT2234A_5029_HPLC-FLD_2015-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_5_H_LV_aMean_2017_retro' => { SPO => { fixed => [ 'IT2233A_5_BETA_2015-01-01_00:00:00', 'IT0988A_5_BETA_2011-01-01_00:00:00', 'IT0983A_5_BETA_2012-01-01_00:00:00', 'IT2234A_5_BETA_2015-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0204_5014_H_TV_aMean_2017_retro' => { SPO => { fixed => [ 'IT2233A_5014_ICP-MS_2015-01-01_00:00:00', 'IT2234A_5014_ICP-MS_2015-01-01_00:00:00', 'IT0983A_5014_ICP-MS_2015-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0205_8_H_LV_aMean_2017_retro' => { SPO => { fixed => [ 'IT0977A_8_chemi_2008-01-01_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 }, 'IT0206_7_H_TV_daysAbove-3yr_2017_retro' => { SPO => { fixed => [ 'IT0977A_7_UV-P_1994-10-02_00:00:00', 'IT0980A_7_UV-P_1996-06-01_00:00:00', 'IT0988A_7_UV-P_2001-11-15_00:00:00', 'IT0983A_7_UV-P_1994-10-02_00:00:00' ] }, assessmentTypeDescription => 'Descrizione di default', classificationDate => '2017-01-01T00:00:00.000Z', classificationReport => 'link del classification report', comment => undef, exceedanceAttainment => 'belowLAT', exceedanceDescriptionAdjustment => undef, exceedanceDescriptionBase => undef, exceedanceDescriptionFinal => { comment => undef, deductionAssessmentMethod => 'noneApplied', exceedance => 'false', exceedanceArea => { administrativeUnits => undef, areaClassifications => undef, modelUsed => undef, roadLength => undef, spatialExtent => undef, stationsUsed => undef, surfaceArea => undef }, exceedanceExposure => { ecosystemAreaExposed => undef, infrastructureServices => undef, populationExposed => undef, sensitivePopulation => undef }, numberExceedances => undef, numericalExceedance => undef, reason => undef, reasonOther => undef }, flag_changed => 1 } );
64.956731
101
0.298405
73da387323107e8e87cd885f7d912af189ba28be
677
al
Perl
windows10/git-bash-zsh/usr/lib/perl5/vendor_perl/auto/Net/SSLeay/debug_read.al
Allen-LPL/dotfiles
9bc894fc6c9d32b1a0c84812c66fb5133484eff4
[ "MIT" ]
null
null
null
windows10/git-bash-zsh/usr/lib/perl5/vendor_perl/auto/Net/SSLeay/debug_read.al
Allen-LPL/dotfiles
9bc894fc6c9d32b1a0c84812c66fb5133484eff4
[ "MIT" ]
null
null
null
windows10/git-bash-zsh/usr/lib/perl5/vendor_perl/auto/Net/SSLeay/debug_read.al
Allen-LPL/dotfiles
9bc894fc6c9d32b1a0c84812c66fb5133484eff4
[ "MIT" ]
4
2021-12-01T19:21:28.000Z
2021-12-16T12:12:20.000Z
# NOTE: Derived from blib/lib/Net/SSLeay.pm. # Changes made here will be lost when autosplit is run again. # See AutoSplit.pm. package Net::SSLeay; #line 575 "blib/lib/Net/SSLeay.pm (autosplit into blib/lib/auto/Net/SSLeay/debug_read.al)" ### ### read and write helpers that block ### sub debug_read { my ($replyr, $gotr) = @_; my $vm = $trace>2 && $linux_debug ? (split ' ', `cat /proc/$$/stat`)[22] : 'vm_unknown'; warn " got " . blength($$gotr) . ':' . blength($$replyr) . " bytes (VM=$vm).\n" if $trace == 3; warn " got `$$gotr' (" . blength($$gotr) . ':' . blength($$replyr) . " bytes, VM=$vm)\n" if $trace>3; } # end of Net::SSLeay::debug_read 1;
29.434783
90
0.60709
ed2ab4d6d1fd0c6603c24ce04abe9d747d1cb5e7
1,836
al
Perl
Apps/W1/HybridGP/app/src/Migration/Vendors/GPVendorTransactions.table.al
MiguelMercadoActual/ALAppExtensions
97ee3823053eb32fa7e38dc3d1e7a89bdcca8d7b
[ "MIT" ]
337
2019-05-07T06:04:40.000Z
2022-03-31T10:07:42.000Z
Apps/W1/HybridGP/app/src/Migration/Vendors/GPVendorTransactions.table.al
MiguelMercadoActual/ALAppExtensions
97ee3823053eb32fa7e38dc3d1e7a89bdcca8d7b
[ "MIT" ]
14,850
2019-05-07T06:04:27.000Z
2022-03-31T19:53:28.000Z
Apps/W1/HybridGP/app/src/Migration/Vendors/GPVendorTransactions.table.al
MiguelMercadoActual/ALAppExtensions
97ee3823053eb32fa7e38dc3d1e7a89bdcca8d7b
[ "MIT" ]
374
2019-05-09T10:08:14.000Z
2022-03-31T17:48:32.000Z
table 4097 "GP Vendor Transactions" { ReplicateData = false; Extensible = false; fields { field(1; Id; Text[40]) { Caption = 'Id Number'; DataClassification = CustomerContent; } field(2; VENDORID; Text[16]) { Caption = 'Vendor ID'; DataClassification = CustomerContent; TableRelation = Vendor; ValidateTableRelation = false; } field(3; DOCNUMBR; Text[22]) { Caption = 'Document Number'; DataClassification = CustomerContent; } field(4; DOCDATE; Date) { Caption = 'Document Date'; DataClassification = CustomerContent; } field(5; DUEDATE; Date) { Caption = 'Due Date'; DataClassification = CustomerContent; } field(6; CURTRXAM; Decimal) { Caption = 'Transaction Amount'; DataClassification = CustomerContent; } field(7; DOCTYPE; Integer) { Caption = 'Document Type'; DataClassification = CustomerContent; } field(8; GLDocNo; Text[30]) { Caption = 'General Ledger Document Number'; DataClassification = CustomerContent; } field(9; TransType; Option) { OptionMembers = " ",Payment,Invoice,"Credit Memo"; Caption = 'Transaction Type'; DataClassification = CustomerContent; } field(11; PYMTRMID; Text[21]) { Caption = 'Payment Terms ID'; DataClassification = CustomerContent; } } keys { key(Key1; Id) { Clustered = true; } } fieldgroups { } }
24.810811
62
0.496187
73d14a513c31356727e95071cb8703802ff61b67
347
pl
Perl
Task/Sequence-of-primes-by-Trial-Division/Perl/sequence-of-primes-by-trial-division.pl
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Sequence-of-primes-by-Trial-Division/Perl/sequence-of-primes-by-trial-division.pl
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Sequence-of-primes-by-Trial-Division/Perl/sequence-of-primes-by-trial-division.pl
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
sub isprime { my $n = shift; return ($n >= 2) if $n < 4; return unless $n % 2 && $n % 3; my $sqrtn = int(sqrt($n)); for (my $i = 5; $i <= $sqrtn; $i += 6) { return unless $n % $i && $n % ($i+2); } 1; } print join(" ", grep { isprime($_) } 0 .. 100 ), "\n"; print join(" ", grep { isprime($_) } 12345678 .. 12345678+100 ), "\n";
24.785714
70
0.463977
73ff97bdb187a9dc95a70769593c426080236686
1,514
pm
Perl
auto-lib/Paws/Quicksight/AuroraParameters.pm
0leksii/aws-sdk-perl
b2132fe3c79a06fd15b6137e8a0eb628de722e0f
[ "Apache-2.0" ]
164
2015-01-08T14:58:53.000Z
2022-02-20T19:16:24.000Z
auto-lib/Paws/Quicksight/AuroraParameters.pm
0leksii/aws-sdk-perl
b2132fe3c79a06fd15b6137e8a0eb628de722e0f
[ "Apache-2.0" ]
348
2015-01-07T22:08:38.000Z
2022-01-27T14:34:44.000Z
auto-lib/Paws/Quicksight/AuroraParameters.pm
0leksii/aws-sdk-perl
b2132fe3c79a06fd15b6137e8a0eb628de722e0f
[ "Apache-2.0" ]
87
2015-04-22T06:29:47.000Z
2021-09-29T14:45:55.000Z
# Generated by default/object.tt package Paws::Quicksight::AuroraParameters; use Moose; has Database => (is => 'ro', isa => 'Str', required => 1); has Host => (is => 'ro', isa => 'Str', required => 1); has Port => (is => 'ro', isa => 'Int', required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::Quicksight::AuroraParameters =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::Quicksight::AuroraParameters object: $service_obj->Method(Att1 => { Database => $value, ..., Port => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Quicksight::AuroraParameters object: $result = $service_obj->Method(...); $result->Att1->Database =head1 DESCRIPTION Amazon Aurora parameters. =head1 ATTRIBUTES =head2 B<REQUIRED> Database => Str Database. =head2 B<REQUIRED> Host => Str Host. =head2 B<REQUIRED> Port => Int Port. =head1 SEE ALSO This class forms part of L<Paws>, describing an object used in L<Paws::Quicksight> =head1 BUGS and CONTRIBUTIONS The source code is located here: L<https://github.com/pplu/aws-sdk-perl> Please report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues> =cut
21.323944
105
0.706737
73f22cf55b8f700123d1cc035f5b5d8649ed8a8b
342
al
Perl
tools/perl/lib/auto/posix/sigsetjmp.al
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
tools/perl/lib/auto/posix/sigsetjmp.al
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
tools/perl/lib/auto/posix/sigsetjmp.al
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
# NOTE: Derived from ..\..\lib\POSIX.pm. # Changes made here will be lost when autosplit is run again. # See AutoSplit.pm. package POSIX; #line 210 "..\..\lib\POSIX.pm (autosplit into ..\..\lib\auto\POSIX\sigsetjmp.al)" sub sigsetjmp { unimpl "sigsetjmp() is C-specific: use eval {} instead"; } # end of POSIX::sigsetjmp 1;
26.307692
82
0.654971
ed26e155484d4a89ca3092f2cdc4207671a22340
217,477
pm
Perl
vendor/Image-ExifTool-11.80/lib/Image/ExifTool/JPEGDigest.pm
zealot128-os/mini_exiftool_vendored
433b686f16a2ca3fcbbb9770922f842cfd2df5b7
[ "MIT" ]
1
2020-01-27T18:05:11.000Z
2020-01-27T18:05:11.000Z
vendor/Image-ExifTool-11.80/lib/Image/ExifTool/JPEGDigest.pm
zealot128-os/mini_exiftool_vendored
433b686f16a2ca3fcbbb9770922f842cfd2df5b7
[ "MIT" ]
15
2019-06-12T22:35:58.000Z
2020-01-10T22:40:47.000Z
vendor/Image-ExifTool-11.80/lib/Image/ExifTool/JPEGDigest.pm
zealot128-os/mini_exiftool_vendored
433b686f16a2ca3fcbbb9770922f842cfd2df5b7
[ "MIT" ]
3
2019-05-23T09:46:31.000Z
2020-05-11T21:03:20.000Z
#------------------------------------------------------------------------------ # File: JPEGDigest.pm # # Description: Calculate JPEGDigest and JPEGQualityEstimate # # Revisions: 2008/09/15 - P. Harvey Created # 2016/01/05 - PH Added calculation of JPEGQualityEstimate # # References: JD) Jens Duttke # 2) Franz Buchinger private communication # 3) https://github.com/ImageMagick/ImageMagick/blob/master/coders/jpeg.c #------------------------------------------------------------------------------ package Image::ExifTool::JPEGDigest; use strict; use vars qw($VERSION); $VERSION = '1.06'; # the print conversion for the JPEGDigest tag my %PrintConv = ( #JD # No DQT defined 'd41d8cd98f00b204e9800998ecf8427e' => 'No DQT defined', # Tested with: # - Independent JPEG Group library (used by many applications) X3 (Win) # - Different subsamplings possible # - Dynamic Photo HDR 3.0 (Win) # - Fixed to quality 92? # - Fixed subsampling of 111111? # - FixFoto (Win) # - These DQTs are only used for the Quality settings 24 to 100 # - Different subsamplings possible # - Subsampling of 221111 is default # - GraphicConverter 4.4.4 (Mac) # - Using the JPEG 6.0 library # - Fixed subsampling to 221111 # - IrfanView 4.10 (Win) # - Subsampling 111111 with option "Disable subsampling", otherwise 221111 # - Quality mode 0 doesn't exist here # - Jasc Paint Shop Pro Version 5.01 (Win) # - Fixed subsampling of 221111 # - Use reversed Quality values (0 or 1 = 99; 2 = 98; 3 = 97 etc.) # - Microsoft GDI+ Version 5.1.3102.2180 (Win) # - Fixed subsampling of 221111 (or is that just the default subsampling?) # - Photomatix pro 3.0 (Win) # - Fixed subsampling to 221111 # IJG library 'f83c5bc303fa1f74265863c2c6844edf' => 'Independent JPEG Group library (used by many applications), Quality 0 or 1', '1e81ee25c96cdf46f44a9b930780f8c0' => 'Independent JPEG Group library (used by many applications), Quality 2', '205d4a597e68f2da78137e52f39d2728' => 'Independent JPEG Group library (used by many applications), Quality 3', '81a936d8371a7d59da428fcfc349850f' => 'Independent JPEG Group library (used by many applications), Quality 4', '610772f3cf75c2fd89214fafbd7617a6' => 'Independent JPEG Group library (used by many applications), Quality 5', '577ec8895d884612d064771e84cf231f' => 'Independent JPEG Group library (used by many applications), Quality 6', '7dc25cc528116e25dd1aeb590dd7cb66' => 'Independent JPEG Group library (used by many applications), Quality 7', 'e3cc8a85db1a32e81650b9668b98644a' => 'Independent JPEG Group library (used by many applications), Quality 8', 'e2408846813c1f5c7f5ce3cf69e741c4' => 'Independent JPEG Group library (used by many applications), Quality 9', 'e800426d2ef8d3cda13a0b41f1b2cc5a' => 'Independent JPEG Group library (used by many applications), Quality 10', '8ef467e72e5006d1b48209e7b5d94541' => 'Independent JPEG Group library (used by many applications), Quality 11', 'af6a08d0742aa8ed6bae2f1c374e7931' => 'Independent JPEG Group library (used by many applications), Quality 12', 'e002d9728c73f60e4d0509e1cea9af43' => 'Independent JPEG Group library (used by many applications), Quality 13', '1eb8b98bef8b062e4bc10cffea2d8372' => 'Independent JPEG Group library (used by many applications), Quality 14', '99d933a8a9ece6f2ee65757aa81ef5bd' => 'Independent JPEG Group library (used by many applications), Quality 15', 'c7d0f7dee5631d01bc55b7c598805d98' => 'Independent JPEG Group library (used by many applications), Quality 16', '71555bee8d64c9dfca3cefa9dd332472' => 'Independent JPEG Group library (used by many applications), Quality 17', '5009778c2a1df1deeb040c85fb9d0db2' => 'Independent JPEG Group library (used by many applications), Quality 18', '81339d89e8294729c69fc096f1a448f3' => 'Independent JPEG Group library (used by many applications), Quality 19', '82028a770d9e45d64d6aa26faee97e72' => 'Independent JPEG Group library (used by many applications), Quality 20', '3ebb7aa9113b3e1628f55732de7dae7f' => 'Independent JPEG Group library (used by many applications), Quality 21', '704c1868fe865f1038aa2bd0697f71a0' => 'Independent JPEG Group library (used by many applications), Quality 22', '555fd108ab97e641fcfefee4bda6a306' => 'Independent JPEG Group library (used by many applications), Quality 23', 'f1d9a0410c5ea11613569783625f5cf3' => 'Independent JPEG Group library (used by many applications), Quality 24', 'ce378a14d52ee5752ded23b5a444f75e' => 'Independent JPEG Group library (used by many applications), Quality 25', '3f243aacd371617b69f1e1eacadbbe2e' => 'Independent JPEG Group library (used by many applications), Quality 26', 'c70a1df73760a88deb890003cdab3bfe' => 'Independent JPEG Group library (used by many applications), Quality 27', 'aa5e05f96c53f6bc498f5016b1113651' => 'Independent JPEG Group library (used by many applications), Quality 28', '740d4a06f4d0f774c6aac95719673793' => 'Independent JPEG Group library (used by many applications), Quality 29', '1426dd9c1c8098936f395e201f1eb56d' => 'Independent JPEG Group library (used by many applications), Quality 30', '891a53bb6a5261a2c076cf8931c3660e' => 'Independent JPEG Group library (used by many applications), Quality 31', '1c87cb13f4b7a5ed45b09fc4f0e52d68' => 'Independent JPEG Group library (used by many applications), Quality 32', '2457f78378c5efdac8e1ef619a4285cd' => 'Independent JPEG Group library (used by many applications), Quality 33', '20f79a557d4edb1917d243d00a7a9ba8' => 'Independent JPEG Group library (used by many applications), Quality 34', 'e06d44ffef23792c88f215a5b2ed9478' => 'Independent JPEG Group library (used by many applications), Quality 35', 'df1b50991b82b66c82dc856cf82383da' => 'Independent JPEG Group library (used by many applications), Quality 36', 'ffd6e30af6d99997d38ec3e303687e25' => 'Independent JPEG Group library (used by many applications), Quality 37', 'ed923fdb1e5009215a49c0d92061c3b0' => 'Independent JPEG Group library (used by many applications), Quality 38', 'aaf1ebc6949569327f95cf7da78ee7bc' => 'Independent JPEG Group library (used by many applications), Quality 39', '0fe5225afaf055efd8453426c00e81e1' => 'Independent JPEG Group library (used by many applications), Quality 40', 'a79e66299883be78b02ceaaf9159c320' => 'Independent JPEG Group library (used by many applications), Quality 41', 'c9f10fb6d352cc8a8967e7e96a64862c' => 'Independent JPEG Group library (used by many applications), Quality 42', '6dc3abbdd52b2f26b790ddb33b82099a' => 'Independent JPEG Group library (used by many applications), Quality 43', '29572be1991c210fabacaeb658a74844' => 'Independent JPEG Group library (used by many applications), Quality 44', '0c9f89a3728234e0e85645c968d1d84a' => 'Independent JPEG Group library (used by many applications), Quality 45', 'a5e5355ae60c569dec306eb971a49276' => 'Independent JPEG Group library (used by many applications), Quality 46', '4a2605b7c5b1bc99b6715342de7b6562' => 'Independent JPEG Group library (used by many applications), Quality 47', '6af4053465275c1b1b2d5c97f4d841aa' => 'Independent JPEG Group library (used by many applications), Quality 48', '905a0b1688644902f6a65d872d68a9db' => 'Independent JPEG Group library (used by many applications), Quality 49', 'ffcd5eab8daeced571d59d4cdcc002c4' => 'Independent JPEG Group library (used by many applications), Quality 50', '76806382fa57818da2e406a0dc23ce20' => 'Independent JPEG Group library (used by many applications), Quality 51', '7c71a5eb9408b93be3ea6cf9be1d31ea' => 'Independent JPEG Group library (used by many applications), Quality 52', 'ccf3f63196092667f97c2ff723481a21' => 'Independent JPEG Group library (used by many applications), Quality 53', 'acc5e596cc4eb156b83eb89190b289a7' => 'Independent JPEG Group library (used by many applications), Quality 54', 'a16e53aa41aa66124557c0b976d73734' => 'Independent JPEG Group library (used by many applications), Quality 55', '2101fdf5c6f6e92943bc16ccf8aa46a8' => 'Independent JPEG Group library (used by many applications), Quality 56', 'aaa2026d750590e466d9198f20b888e4' => 'Independent JPEG Group library (used by many applications), Quality 57', 'fcd8c97cf6004230444ce21dab8a167f' => 'Independent JPEG Group library (used by many applications), Quality 58', '318081abf5329c90d984c2214d69f097' => 'Independent JPEG Group library (used by many applications), Quality 59', '95348adff2bf5a88f3967e9237fc571e' => 'Independent JPEG Group library (used by many applications), Quality 60; Pentax Better', 'e22b26930415798b7ecf2b060c1cdc2a' => 'Independent JPEG Group library (used by many applications), Quality 61', '3e646bfadb62d25ae8404b179e93e74e' => 'Independent JPEG Group library (used by many applications), Quality 62', '34bf5c46342f2a514f8ae562e520ece0' => 'Independent JPEG Group library (used by many applications), Quality 63', 'fc9f2bd278075ea89d482e1f9e66738f' => 'Independent JPEG Group library (used by many applications), Quality 64', 'b55f27c368f119f25957c8e0036b27f8' => 'Independent JPEG Group library (used by many applications), Quality 65', '5f7b9af6d66eaf12874aa680e7b0d31b' => 'Independent JPEG Group library (used by many applications), Quality 66', 'a78fd0f1183b268b2fdfa23308c3ad44' => 'Independent JPEG Group library (used by many applications), Quality 67', '61814a2eca233e10b0ba26881551fb50' => 'Independent JPEG Group library (used by many applications), Quality 68', 'ce0f36a3d870b24f9816634000ea2d2e' => 'Independent JPEG Group library (used by many applications), Quality 69', 'f7cba1affebd362a322abd45ce580e56' => 'Independent JPEG Group library (used by many applications), Quality 70', '7b85fffdf97680de53e49788712c50de' => 'Independent JPEG Group library (used by many applications), Quality 71', '4abd7dbca7735c987eb899b0f8646ce4' => 'Independent JPEG Group library (used by many applications), Quality 72', '167959a11aff7940df84ed9f3379ed0a' => 'Independent JPEG Group library (used by many applications), Quality 73', 'd61807da54a72c4651466049c9f67541' => 'Independent JPEG Group library (used by many applications), Quality 74', '2851eea5e15f1b977c1496a77c884b4f' => 'Independent JPEG Group library (used by many applications), Quality 75', 'b095631a0665a515d9aa290639f6672b' => 'Independent JPEG Group library (used by many applications), Quality 76', '0ee4ea4687d3c57d060e3afd2559b7bb' => 'Independent JPEG Group library (used by many applications), Quality 77', '37e999828e5bc43ee4a470bf29ea97b7' => 'Independent JPEG Group library (used by many applications), Quality 78', 'dd9b9d09a624deab730d9bd5b8825baa' => 'Independent JPEG Group library (used by many applications), Quality 79', '5319a82dc93c1ee5c8d2265e4f1fb60e' => 'Independent JPEG Group library (used by many applications), Quality 80', '6fa04ba1184e986c4da3df8141e05a42' => 'Independent JPEG Group library (used by many applications), Quality 81', '1d099901cfe37674e4aeb2cdbddf0703' => 'Independent JPEG Group library (used by many applications), Quality 82', '8cc04e05813c028683e3cb8e6eab79eb' => 'Independent JPEG Group library (used by many applications), Quality 83', '3eafbf05c0dd233b385856065e456c11' => 'Independent JPEG Group library (used by many applications), Quality 84', '98dec36fe95ed7c1772d9ed67a67e260' => 'Independent JPEG Group library (used by many applications), Quality 85', 'a1ee06d19dcb62c7467768d1ba73cf12' => 'Independent JPEG Group library (used by many applications), Quality 86', '643ad95753c261eacc5ea3f4c9e4d469' => 'Independent JPEG Group library (used by many applications), Quality 87', '2557828257dd798ad636df350c685a26' => 'Independent JPEG Group library (used by many applications), Quality 88', 'a5b4bbf018828a3d00e54ab72a175fdc' => 'Independent JPEG Group library (used by many applications), Quality 89', '50325a7b6e0a9b7f9aea8f5a6f7f31aa' => 'Independent JPEG Group library (used by many applications), Quality 90', 'c0cf6b0c508a35a13acd8c912548a269' => 'Independent JPEG Group library (used by many applications), Quality 91', 'ff0aa07a220cd8973a4b86f3ecd4325b' => 'Independent JPEG Group library (used by many applications), Quality 92', 'f251d4554524d22f94a34668ab17957c' => 'Independent JPEG Group library (used by many applications), Quality 93', 'cd993be55bad60bb539df0cc2d7f9f6f' => 'Independent JPEG Group library (used by many applications), Quality 94', 'adf507352f9ce218a4605700459d597f' => 'Independent JPEG Group library (used by many applications), Quality 95', '9e9e3e22af4e41ea4ec1b8f656f28f42' => 'Independent JPEG Group library (used by many applications), Quality 96', 'b9f5c003ef62cbd8fc93be6679c1c3bc' => 'Independent JPEG Group library (used by many applications), Quality 97', '95b6a316836182441b12039279872ec3' => 'Independent JPEG Group library (used by many applications), Quality 98', 'b9b1ce23552e2f82b95b48de20065ed3' => 'Independent JPEG Group library (used by many applications), Quality 99', 'a97591462e9b2339efd4f88ca97bb471' => 'Independent JPEG Group library (used by many applications), Quality 100', # Independent JPEG Group library (Grayscale) # # Tested with: # - Corel PhotoImpact X3 (Win) # - IrfanView (Win) # - Quality mode 0 doesn't exist here '185893c53196f6156d458a84e1135c43:11' => 'Independent JPEG Group library (used by many applications), Quality 0 or 1 (Grayscale)', 'b41ccbe66e41a05de5e68832c07969a7:11' => 'Independent JPEG Group library (used by many applications), Quality 2 (Grayscale)', 'efa024d741ecc5204e7edd4f590a7a25:11' => 'Independent JPEG Group library (used by many applications), Quality 3 (Grayscale)', '3396344724a1868ada2330ebaeb9448e:11' => 'Independent JPEG Group library (used by many applications), Quality 4 (Grayscale)', '14276fffb98deb42b7dbce30abb8425f:11' => 'Independent JPEG Group library (used by many applications), Quality 5 (Grayscale)', 'a99e2826c10d0922ce8942c5437f53a6:11' => 'Independent JPEG Group library (used by many applications), Quality 6 (Grayscale)', '0d3de456aa5cbb8a2578208250aa9b88:11' => 'Independent JPEG Group library (used by many applications), Quality 7 (Grayscale)', 'fa987940fdedbe883cc0e9fcc907f89e:11' => 'Independent JPEG Group library (used by many applications), Quality 8 (Grayscale)', '1c9bb67190ee64e82d3c67f7943bf4a4:11' => 'Independent JPEG Group library (used by many applications), Quality 9 (Grayscale)', '57d20578d190b04c7667b10d3df241bb:11' => 'Independent JPEG Group library (used by many applications), Quality 10 (Grayscale)', '619fd49197f0403ce13d86cffec46419:11' => 'Independent JPEG Group library (used by many applications), Quality 11 (Grayscale)', '327f47dd8f999b2bbb3bb25c43cf5be5:11' => 'Independent JPEG Group library (used by many applications), Quality 12 (Grayscale)', 'e4e5bc705c40cfaffff6565f16fe98a9:11' => 'Independent JPEG Group library (used by many applications), Quality 13 (Grayscale)', '6c64fa9ad302624a826f04ecc80459be:11' => 'Independent JPEG Group library (used by many applications), Quality 14 (Grayscale)', '039a3f0e101f1bcdb6bb81478cf7ae6b:11' => 'Independent JPEG Group library (used by many applications), Quality 15 (Grayscale)', 'c23b08c94d7537c9447691d54ae1080c:11' => 'Independent JPEG Group library (used by many applications), Quality 16 (Grayscale)', '200107bc0174104bbf1d4653c4b05058:11' => 'Independent JPEG Group library (used by many applications), Quality 17 (Grayscale)', '72abfdc6e65b32ded2cd7ac77a04f447:11' => 'Independent JPEG Group library (used by many applications), Quality 18 (Grayscale)', '1799a236c36da0b30729d9005ca7c7f9:11' => 'Independent JPEG Group library (used by many applications), Quality 19 (Grayscale)', 'c33a667bff7f590655d196010c5e39f3:11' => 'Independent JPEG Group library (used by many applications), Quality 20 (Grayscale)', 'b1dc98f6a2f8828f8432872da43e7d94:11' => 'Independent JPEG Group library (used by many applications), Quality 21 (Grayscale)', '07318a0acfebe9086f0e04a4c4f5398a:11' => 'Independent JPEG Group library (used by many applications), Quality 22 (Grayscale)', 'a295b7163305f327a5a45ae177a0a19c:11' => 'Independent JPEG Group library (used by many applications), Quality 23 (Grayscale)', 'c741c1b134cf81ab69acc81f15a67137:11' => 'Independent JPEG Group library (used by many applications), Quality 24 (Grayscale)', 'a68893776502a591548c7b5bece13e1b:11' => 'Independent JPEG Group library (used by many applications), Quality 25 (Grayscale)', '111848d9e41f6f408ef70841f90c0519:11' => 'Independent JPEG Group library (used by many applications), Quality 26 (Grayscale)', '886374ceebcfd4dfed200b0b34b4baca:11' => 'Independent JPEG Group library (used by many applications), Quality 27 (Grayscale)', '666dd95fd0e20f5c20bc44d78d528869:11' => 'Independent JPEG Group library (used by many applications), Quality 28 (Grayscale)', '1aa58cb85dda84de2ddf436667124dcd:11' => 'Independent JPEG Group library (used by many applications), Quality 29 (Grayscale)', '9d321ab2bdda6f3cb76d2d88838aa8c3:11' => 'Independent JPEG Group library (used by many applications), Quality 30 (Grayscale)', '6ad87d648101c268f83fa379d4c773f2:11' => 'Independent JPEG Group library (used by many applications), Quality 31 (Grayscale)', 'cdf8e921300f27a4af7661a2de16e91a:11' => 'Independent JPEG Group library (used by many applications), Quality 32 (Grayscale)', '3f48672e37b6dd2e571b222e4b7ff97d:11' => 'Independent JPEG Group library (used by many applications), Quality 33 (Grayscale)', 'a53a7d4cc86d01f4c1b867270c9c078f:11' => 'Independent JPEG Group library (used by many applications), Quality 34 (Grayscale)', '09ec03f5096df106c692123f3fd34296:11' => 'Independent JPEG Group library (used by many applications), Quality 35 (Grayscale)', 'a946498fd1902c9de87a1f5182966742:11' => 'Independent JPEG Group library (used by many applications), Quality 36 (Grayscale)', '5d650a1d38108fd79d4f336ba8e254c2:11' => 'Independent JPEG Group library (used by many applications), Quality 37 (Grayscale)', '81d620f1b470fd535b26544b4ea20643:11' => 'Independent JPEG Group library (used by many applications), Quality 38 (Grayscale)', '892788bdf8cbef5c6fbd7019a079bf8e:11' => 'Independent JPEG Group library (used by many applications), Quality 39 (Grayscale)', 'cf3929fd4c1e5c28b7f137f982178ad1:11' => 'Independent JPEG Group library (used by many applications), Quality 40 (Grayscale)', '31f288945896ed839f1d936bff06fb03:11' => 'Independent JPEG Group library (used by many applications), Quality 41 (Grayscale)', 'e0c38f0c5e6562445d4e92bae51713be:11' => 'Independent JPEG Group library (used by many applications), Quality 42 (Grayscale)', '18fa29d1164984883a6af76377b60d5a:11' => 'Independent JPEG Group library (used by many applications), Quality 43 (Grayscale)', 'eff737b226fbce48c42625c5bf9dabb6:11' => 'Independent JPEG Group library (used by many applications), Quality 44 (Grayscale)', 'b900f91ee8697255d5daebce858caaeb:11' => 'Independent JPEG Group library (used by many applications), Quality 45 (Grayscale)', 'ab2f8513823067af242f7e3c04a88a9c:11' => 'Independent JPEG Group library (used by many applications), Quality 46 (Grayscale)', '60b682c4d412f5255efbaa32787c46ca:11' => 'Independent JPEG Group library (used by many applications), Quality 47 (Grayscale)', 'ea50813e06203c2ad1165252bcb99a1d:11' => 'Independent JPEG Group library (used by many applications), Quality 48 (Grayscale)', 'f6308a717437d3653b0751ebf511db0f:11' => 'Independent JPEG Group library (used by many applications), Quality 49 (Grayscale)', '7c8242581553e818ef243fc680879a19:11' => 'Independent JPEG Group library (used by many applications), Quality 50 (Grayscale)', 'fc41ab8251718977bc6676f502f457e0:11' => 'Independent JPEG Group library (used by many applications), Quality 51 (Grayscale)', '606c4c78c0226646bf4d3c5a5898fb17:11' => 'Independent JPEG Group library (used by many applications), Quality 52 (Grayscale)', '0e6c6a5440d33d25f1c25836a45cfa69:11' => 'Independent JPEG Group library (used by many applications), Quality 53 (Grayscale)', '7464b2361e5b5f5a9ba74a87475dda91:11' => 'Independent JPEG Group library (used by many applications), Quality 54 (Grayscale)', 'aeaa2ca48eabb3088ebb713b3c4e1a67:11' => 'Independent JPEG Group library (used by many applications), Quality 55 (Grayscale)', '3f36450b0ba074578391e77f7340cef0:11' => 'Independent JPEG Group library (used by many applications), Quality 56 (Grayscale)', 'be232444027e83db6f8d8b79d078442e:11' => 'Independent JPEG Group library (used by many applications), Quality 57 (Grayscale)', '712c145d6472a2b315b2ecfb916d1590:11' => 'Independent JPEG Group library (used by many applications), Quality 58 (Grayscale)', 'ae3dd4568cc71c47d068cf831c66b59d:11' => 'Independent JPEG Group library (used by many applications), Quality 59 (Grayscale)', 'b290e52c21a435fede4586636ef5e287:11' => 'Independent JPEG Group library (used by many applications), Quality 60 (Grayscale)', 'a09ca4c4391e0221396a08f229a65f9d:11' => 'Independent JPEG Group library (used by many applications), Quality 61 (Grayscale)', '0818578fc5fc571b4f8d5ffefc9dc0d8:11' => 'Independent JPEG Group library (used by many applications), Quality 62 (Grayscale)', '7c685e2916555eda34cb37a1e71adc6a:11' => 'Independent JPEG Group library (used by many applications), Quality 63 (Grayscale)', '69c6b9440342adfc0db89a6c91aba332:11' => 'Independent JPEG Group library (used by many applications), Quality 64 (Grayscale)', 'd5d484b68e25b44288e67e699829695c:11' => 'Independent JPEG Group library (used by many applications), Quality 65 (Grayscale)', 'de8310d09116a7a62965f3e0e43ef525:11' => 'Independent JPEG Group library (used by many applications), Quality 66 (Grayscale)', 'e4735f63e88baf04599afc034e690845:11' => 'Independent JPEG Group library (used by many applications), Quality 67 (Grayscale)', 'b4ef810b14dee9c6d6d8cace98f799a6:11' => 'Independent JPEG Group library (used by many applications), Quality 68 (Grayscale)', '52886ef80147c9a136e20b2bc3b76f52:11' => 'Independent JPEG Group library (used by many applications), Quality 69 (Grayscale)', '9c62dbc848be82ef91219ba9843998be:11' => 'Independent JPEG Group library (used by many applications), Quality 70 (Grayscale)', 'bfe8c1c73eea84b85673487a82f67627:11' => 'Independent JPEG Group library (used by many applications), Quality 71 (Grayscale)', 'ea445840d29c51009a2a8cd49b96ccee:11' => 'Independent JPEG Group library (used by many applications), Quality 72 (Grayscale)', '71c1a56890fff9b0a095fa5a1c96132b:11' => 'Independent JPEG Group library (used by many applications), Quality 73 (Grayscale)', 'f080b02331ac8adf03de2281042d2b49:11' => 'Independent JPEG Group library (used by many applications), Quality 74 (Grayscale)', 'd0eaa368737f17f6037757d393a22599:11' => 'Independent JPEG Group library (used by many applications), Quality 75 (Grayscale)', '303663905d055b77bb547fe0b0beb9c5:11' => 'Independent JPEG Group library (used by many applications), Quality 76 (Grayscale)', '5cdf1d5bbe19375ad5c7237273dddede:11' => 'Independent JPEG Group library (used by many applications), Quality 77 (Grayscale)', 'd64e7ff8292fd77131932864d3c9ce7c:11' => 'Independent JPEG Group library (used by many applications), Quality 78 (Grayscale)', '12b4cc13891c5aef3dadb3405b6fa65d:11' => 'Independent JPEG Group library (used by many applications), Quality 79 (Grayscale)', 'b008cd63591f8fd366f77d2b224b9c9c:11' => 'Independent JPEG Group library (used by many applications), Quality 80 (Grayscale)', '49b6e472c7d5ecead593c6009768e765:11' => 'Independent JPEG Group library (used by many applications), Quality 81 (Grayscale)', 'bce6fa61623ad4f65ff3fec1528cb026:11' => 'Independent JPEG Group library (used by many applications), Quality 82 (Grayscale)', 'c2b037bf9f5e5baba804d7bbbb2dc73b:11' => 'Independent JPEG Group library (used by many applications), Quality 83 (Grayscale)', '7fe7b339c6ffc62b984eeab4b0df9168:11' => 'Independent JPEG Group library (used by many applications), Quality 84 (Grayscale)', '274bbeb0ac3939f90c578ebb1f5a9eef:11' => 'Independent JPEG Group library (used by many applications), Quality 85 (Grayscale)', '0a0268c655d616b0e4af2851533aa3af:11' => 'Independent JPEG Group library (used by many applications), Quality 86 (Grayscale)', '52318e260c0d6b3dbee85c87f9b94e63:11' => 'Independent JPEG Group library (used by many applications), Quality 87 (Grayscale)', 'b64cc19a0f81a506ed5bcfb9c131c8fe:11' => 'Independent JPEG Group library (used by many applications), Quality 88 (Grayscale)', 'd8c54333eb475b8db9f32f11fe96337e:11' => 'Independent JPEG Group library (used by many applications), Quality 89 (Grayscale)', '12fe6b9bfd20f4d7f0ac2a221c566c45:11' => 'Independent JPEG Group library (used by many applications), Quality 90 (Grayscale)', '12aefbf7689633c83da714c9f0e90e05:11' => 'Independent JPEG Group library (used by many applications), Quality 91 (Grayscale)', 'a3a96add050fc51a2b3ce59a9a491034:11' => 'Independent JPEG Group library (used by many applications), Quality 92 (Grayscale)', '7b0242bd9aaeab4962f5d5b39b9a4027:11' => 'Independent JPEG Group library (used by many applications), Quality 93 (Grayscale)', '12fc29c1d8940c93a47ee9d927a17561:11' => 'Independent JPEG Group library (used by many applications), Quality 94 (Grayscale)', 'e1fedef5184beeb7b0f5c055c7ae1d31:11' => 'Independent JPEG Group library (used by many applications), Quality 95 (Grayscale)', 'ae9202355f603776794d3e62c43578d6:11' => 'Independent JPEG Group library (used by many applications), Quality 96 (Grayscale)', '36da00bae6cd81d1f97e32748c07e33f:11' => 'Independent JPEG Group library (used by many applications), Quality 97 (Grayscale)', '54dc50b16e7cc9bc383eb9e73e85e199:11' => 'Independent JPEG Group library (used by many applications), Quality 98 (Grayscale)', '23a59c4f9ec045faf9f8379b3ca302bb:11' => 'Independent JPEG Group library (used by many applications), Quality 99 (Grayscale)', 'bbd2dbcfe20b59e981e9a42cd1eb6ece:11' => 'Independent JPEG Group library (used by many applications), Quality 100 (Grayscale)', # Tested with Adobe Photoshop Lightroom 1.4.1 (Win) - "Export" '683506a889c78d9bc230a0c7ee5f62f3:221111' => 'Adobe Lightroom, Quality 0% - 7%', 'bc490651af6592cd1dbbbc4fa2cfa1fb:221111' => 'Adobe Lightroom, Quality 8% - 15%', 'ce4286d9f07999524c3c7472b065c5ab:221111' => 'Adobe Lightroom, Quality 16% - 23%', 'cbfbfef12aead8841585ef605c789b9f:221111' => 'Adobe Lightroom, Quality 24% - 30%', 'a0772e73dec2bdc4057c27da47bff376:221111' => 'Adobe Lightroom, Quality 31% - 38%', '7ef06dbde538346b8b01c6b538ca70c6:221111' => 'Adobe Lightroom, Quality 39% - 46%', '0ff225f58a214f79d1d85d78f6f5dab8:221111' => 'Adobe Lightroom, Quality 47% - 53%', '8a8603650fa5ae5fdcf4b2eaf0b23638:111111' => 'Adobe Lightroom, Quality 54% - 61%', '44f583ed6b65cb8ba915ec5df051616c:111111' => 'Adobe Lightroom, Quality 62% - 69%', 'de94c5591bafc7456ccaef430271b907:111111' => 'Adobe Lightroom, Quality 70% - 76%', 'a6841b35e9ffefa5d83a0445dddd2621:111111' => 'Adobe Lightroom, Quality 77% - 84%', '6e3f6a3a5a1eae6155331d42d6f968dd:111111' => 'Adobe Lightroom, Quality 85% - 92%', '5379e0133d4439b6f7c7039fc7f7734f:111111' => 'Adobe Lightroom, Quality 93% - 100%', # Adobe Photoshop Lightroom 2.1 (Win) - "Export" # (0-23% equal to Lightroom 1.4.1) '8453391d3adf377c46a1a0cee08c35c3:221111' => 'Adobe Lightroom, Quality 24% - 30%', 'f8ede291b1272576d1580e333d30103e:221111' => 'Adobe Lightroom, Quality 31% - 38%', 'de0fb6d13e12e8df26140dd74691bf0f:221111' => 'Adobe Lightroom, Quality 39% - 46%', '0d5b0af72561f68c671731f22d9e41e2:221111' => 'Adobe Lightroom, Quality 47% - 53%', 'b9fd15fd52408af5ea2a5045227233d8:111111' => 'Adobe Lightroom, Quality 54% - 61%', '27472e3714251402d5509438505611c3:111111' => 'Adobe Lightroom, Quality 62% - 69%', '34a599dff2b6aaed12143938b7374f2f:111111' => 'Adobe Lightroom, Quality 70% - 76%', '5c508e529d045b6f0c800e29ba2d6ab5:111111' => 'Adobe Lightroom, Quality 77% - 84%', '42bfe52476bf07f1ed0e6451903cc9ee:111111' => 'Adobe Lightroom, Quality 85% - 92%', '4c3c425b4024b68c0de03904a825bc35:111111' => 'Adobe Lightroom, Quality 93% - 100%', # Tested with Adobe Photoshop CS2 Version 9.0.2 (Win) - "Save as..." (RGB/CYMK) '683506a889c78d9bc230a0c7ee5f62f3:221111' => 'Adobe Photoshop, Quality 0', 'bc490651af6592cd1dbbbc4fa2cfa1fb:221111' => 'Adobe Photoshop, Quality 1', 'ce4286d9f07999524c3c7472b065c5ab:221111' => 'Adobe Photoshop, Quality 2', 'cbfbfef12aead8841585ef605c789b9f:221111' => 'Adobe Photoshop, Quality 3', 'a0772e73dec2bdc4057c27da47bff376:221111' => 'Adobe Photoshop, Quality 4', '7ef06dbde538346b8b01c6b538ca70c6:221111' => 'Adobe Photoshop, Quality 5', '0ff225f58a214f79d1d85d78f6f5dab8:221111' => 'Adobe Photoshop, Quality 6', '8a8603650fa5ae5fdcf4b2eaf0b23638:111111' => 'Adobe Photoshop, Quality 7', '44f583ed6b65cb8ba915ec5df051616c:111111' => 'Adobe Photoshop, Quality 8', 'de94c5591bafc7456ccaef430271b907:111111' => 'Adobe Photoshop, Quality 9', 'a6841b35e9ffefa5d83a0445dddd2621:111111' => 'Adobe Photoshop, Quality 10', '6e3f6a3a5a1eae6155331d42d6f968dd:111111' => 'Adobe Photoshop, Quality 11', '5379e0133d4439b6f7c7039fc7f7734f:111111' => 'Adobe Photoshop, Quality 12', # Tested with Adobe Photoshop CS2 Version 9.0.2 (Win) - "Save as..." (Grayscale) '3b0b5975a0e1c9d732c93e1b37a6978b:11' => 'Adobe Photoshop, Quality 0', 'f4d19ed563e2d0519d6a547088771ddb:11' => 'Adobe Photoshop, Quality 1', 'e9ef286567fd84a1f479b35ca00db43c:11' => 'Adobe Photoshop, Quality 2', 'b39cafdb459a42749be3f6459a596677:11' => 'Adobe Photoshop, Quality 3', 'b3f215deea48e982e205619af279205f:11' => 'Adobe Photoshop, Quality 4', 'fccd63ce166e198065eaae05c8d78407:11' => 'Adobe Photoshop, Quality 5', '0a50266ad8d1dff11c90cd1480c0a2be:11' => 'Adobe Photoshop, Quality 6', '6579941db0216f41f0a20de9b626538a:11' => 'Adobe Photoshop, Quality 7', '57aa47876e10c6b4f35ecb8889e55ad9:11' => 'Adobe Photoshop, Quality 8', '076598d43c5186f6d7a1020b64b93625:11' => 'Adobe Photoshop, Quality 9', '37132e8ea81137fdf26ce30926ab8100:11' => 'Adobe Photoshop, Quality 10', '46f55ee294723cee9faa816549b3cfa7:11' => 'Adobe Photoshop, Quality 11', '7b83284f61decf47ab3f8f7361c18943:11' => 'Adobe Photoshop, Quality 12', # Tested with Adobe Photoshop CS2 Version 9.0.2 (Win) - "Save for web..." '9ac881c536e509675e5cf3795a85d9de:221111' => 'Adobe Photoshop, Save for web, Quality 0', '3521d793fd9d2d9aac85dc4f0be40290:221111' => 'Adobe Photoshop, Save for web, Quality 1', '041c9e3cf0d34a8b89539e3115bca31b:221111' => 'Adobe Photoshop, Save for web, Quality 2', '029b3a6f0b92af6786d753788eafabfe:221111' => 'Adobe Photoshop, Save for web, Quality 3', '6cdd3762e346b16a59af4bddb213b07a:221111' => 'Adobe Photoshop, Save for web, Quality 4', '84a69c0b43505dd0cbc25d640873b5b9:221111' => 'Adobe Photoshop, Save for web, Quality 5', '7254c012821f2bc866d7d6dd7906c92d:221111' => 'Adobe Photoshop, Save for web, Quality 6', '428ba2c747ea4e495ff3c7ff44a988d2:221111' => 'Adobe Photoshop, Save for web, Quality 7', '42cb001aea7e24d239f6c2fcbd861862:221111' => 'Adobe Photoshop, Save for web, Quality 8', 'a3698813ce90772a30b6eb9a7deb3f4a:221111' => 'Adobe Photoshop, Save for web, Quality 9', '301158b292e3232856a765486da26fa6:221111' => 'Adobe Photoshop, Save for web, Quality 10', '8d9edea9287aa919e433b620f61468dc:221111' => 'Adobe Photoshop, Save for web, Quality 11', 'c1e0554d8a6ed003eb98e068429b56b9:221111' => 'Adobe Photoshop, Save for web, Quality 12', '0e0a151e0a52097cbd7683c9385e3a7c:221111' => 'Adobe Photoshop, Save for web, Quality 13', '911e66f21fe242cc74e0a5738b0330bd:221111' => 'Adobe Photoshop, Save for web, Quality 14', '028fafd94aa66ee269f58d800c89d838:221111' => 'Adobe Photoshop, Save for web, Quality 15', '866b8adb1ce7c9dc0e58b7c1e013280f:221111' => 'Adobe Photoshop, Save for web, Quality 16', '7f712aecf513621f635a007aadda61af:221111' => 'Adobe Photoshop, Save for web, Quality 17', '38f26622a54ba22accac05f7c0a3b307:221111' => 'Adobe Photoshop, Save for web, Quality 18', 'd241d5165e64e98024b47dfbf76be88c:221111' => 'Adobe Photoshop, Save for web, Quality 19', 'afb31cfed194d4e125bde8fd4755bb8a:221111' => 'Adobe Photoshop, Save for web, Quality 20', '0d501a036c984d2caf49fd298b2d0d16:221111' => 'Adobe Photoshop, Save for web, Quality 21', '9e992f35767c4aa023b8afd243b247bf:221111' => 'Adobe Photoshop, Save for web, Quality 22', '0a80e5bf01a9c5650384dfe1a428f61d:221111' => 'Adobe Photoshop, Save for web, Quality 23', '2501aad23cdf94b25c6df0ab6984b6e0:221111' => 'Adobe Photoshop, Save for web, Quality 24', '09c168d2e075070d3a2535e7f2e455df:221111' => 'Adobe Photoshop, Save for web, Quality 25', '63190207beeb805306f7d0bcc3898cb3:221111' => 'Adobe Photoshop, Save for web, Quality 26', 'e47902bc7ba3037921010c568648c8c3:221111' => 'Adobe Photoshop, Save for web, Quality 27', '410ed63b6e5225d8b99da6272fd6069b:221111' => 'Adobe Photoshop, Save for web, Quality 28', 'b40f3f3c46d70a560e2033fadd8c7bb5:221111' => 'Adobe Photoshop, Save for web, Quality 29', '45148ae63b12ccaa6fb5a487ca7620e9:221111' => 'Adobe Photoshop, Save for web, Quality 30', '5180e51bd58432c7b51a305ed0c24d1b:221111' => 'Adobe Photoshop, Save for web, Quality 31', 'c5c472d899462bbe31da9aa8c072c0bc:221111' => 'Adobe Photoshop, Save for web, Quality 32', '28cdbc95898e02dd0ffc45ba48596ca7:221111' => 'Adobe Photoshop, Save for web, Quality 33', '42cd88e0eb3c14a705b952550ec2eacd:221111' => 'Adobe Photoshop, Save for web, Quality 34', '78a2a442aac5cca7fa2ef5a8bd96219e:221111' => 'Adobe Photoshop, Save for web, Quality 35', '96bce854134a2fccfcb68dca6687cd51:221111' => 'Adobe Photoshop, Save for web, Quality 36', 'fefd00ec4610895e4294de690f5977e9:221111' => 'Adobe Photoshop, Save for web, Quality 37', 'd71c8ddb9117920304d83a6f8b7832a4:221111' => 'Adobe Photoshop, Save for web, Quality 38', '1727e720300403e5f315b5e17ef84d3f:221111' => 'Adobe Photoshop, Save for web, Quality 39', '8fb05e3c3b0a7404ff6ca54f952d2a5e:221111' => 'Adobe Photoshop, Save for web, Quality 40', '328ab751ea48f5a8bc7c4b8628138ce0:221111' => 'Adobe Photoshop, Save for web, Quality 41', 'd9653333a3af8842dd4b72856ac4ef4e:221111' => 'Adobe Photoshop, Save for web, Quality 42', '276da99e50e1b39134e13826789d655e:221111' => 'Adobe Photoshop, Save for web, Quality 43', '23f2bd2d96ec531815609503dae4a2b0:221111' => 'Adobe Photoshop, Save for web, Quality 44', 'bafe2a89809f23bc7367e9a819570728:221111' => 'Adobe Photoshop, Save for web, Quality 45', '6bfdcd36327406f801be86d0e8ca6b60:221111' => 'Adobe Photoshop, Save for web, Quality 46', 'eb8e5c42d31b916737ac21dffd6f012b:221111' => 'Adobe Photoshop, Save for web, Quality 47', 'e57a9878be74473990343573c6585f79:221111' => 'Adobe Photoshop, Save for web, Quality 48', '91dfacd928ce717cb135c6da03afd907:221111' => 'Adobe Photoshop, Save for web, Quality 49', '16c443478b9417d44893f8748d49b790:221111' => 'Adobe Photoshop, Save for web, Quality 50', '84de345dcf710f937a39a0b631b87fc4:111111' => 'Adobe Photoshop, Save for web, Quality 51', 'bdd6043e7f5a5f1512b99b2394a075e2:111111' => 'Adobe Photoshop, Save for web, Quality 52', 'c7614d3d384a02630721be335062ef75:111111' => 'Adobe Photoshop, Save for web, Quality 53', '42d6f71aace3de2ccfdd8348b0198704:111111' => 'Adobe Photoshop, Save for web, Quality 54', '84d5f059ce3e1b78d91355e1e86e2d1a:111111' => 'Adobe Photoshop, Save for web, Quality 55', '5881004f575752d77ee00e767d848e51:111111' => 'Adobe Photoshop, Save for web, Quality 56', '0cb697537acde3d2e85078377461a8e0:111111' => 'Adobe Photoshop, Save for web, Quality 57', 'b2762ffa5c0a1799fb2e9ad6dfd2171a:111111' => 'Adobe Photoshop, Save for web, Quality 58', '2b7a6a83259aa9967e098d3e70f1ee09:111111' => 'Adobe Photoshop, Save for web, Quality 59', '6123a3685e1012af5a0d024de1ce0304:111111' => 'Adobe Photoshop, Save for web, Quality 60', 'd08c8435de33f2c186aa2dd9cba3e874:111111' => 'Adobe Photoshop, Save for web, Quality 61', 'e69be2174dbbfb952e54576fbdfe6c14:111111' => 'Adobe Photoshop, Save for web, Quality 62', '2ec2d5c10641952fce5c435b331b8872:111111' => 'Adobe Photoshop, Save for web, Quality 63', '98201e1185b7069f1247ac3cdc56c824:111111' => 'Adobe Photoshop, Save for web, Quality 64', '8fc0325d05c9199bc1e2dec417c3a55e:111111' => 'Adobe Photoshop, Save for web, Quality 65', '016600f44a61cc5a5673c9bad85e23a3:111111' => 'Adobe Photoshop, Save for web, Quality 66', '91d7b4300c98c726aff7b19cbe098a3e:111111' => 'Adobe Photoshop, Save for web, Quality 67', 'f9b83ba21b86a3d4ddb507e3edce490c:111111' => 'Adobe Photoshop, Save for web, Quality 68', 'd312a23c8ecb3bf59bc11bbe17d79e55:111111' => 'Adobe Photoshop, Save for web, Quality 69', '240fffe5f8e2d8f3345b8175f9cb0a40:111111' => 'Adobe Photoshop, Save for web, Quality 70', 'ba60a642bfb1a184c11e5561581d7115:111111' => 'Adobe Photoshop, Save for web, Quality 71', 'c901580e589f58d309f8b50590cfe214:111111' => 'Adobe Photoshop, Save for web, Quality 72', 'c244f94d84a016840c6ef06250c58ade:111111' => 'Adobe Photoshop, Save for web, Quality 73', '3589227bdd85f880f3337b492e895c5d:111111' => 'Adobe Photoshop, Save for web, Quality 74', 'cae6fd91a423ff181d50bb9c26a0d392:111111' => 'Adobe Photoshop, Save for web, Quality 75', '7d8ee11ca66d2c22ff9ed1f778b5dbac:111111' => 'Adobe Photoshop, Save for web, Quality 76', 'a16371762ce48953d42dfb5b77d1bfc6:111111' => 'Adobe Photoshop, Save for web, Quality 77', '204b111d4aaa85b430e86273a63fd004:111111' => 'Adobe Photoshop, Save for web, Quality 78', '6a243ac0b8575c2ed962070cd7d39e04:111111' => 'Adobe Photoshop, Save for web, Quality 79', '51879d6e5178d2282d5e8276ed4e2439:111111' => 'Adobe Photoshop, Save for web, Quality 80', 'ca683ab6caaa3132bf661a0ebf32ef4e:111111' => 'Adobe Photoshop, Save for web, Quality 81', '5399adc3f21ecb30c96d6a94b38ab74c:111111' => 'Adobe Photoshop, Save for web, Quality 82', '43eb3b161279ccc1fb4f9cbe7b92398f:111111' => 'Adobe Photoshop, Save for web, Quality 83', '2d387641f4e94b6986908b3770fb762e:111111' => 'Adobe Photoshop, Save for web, Quality 84', '75ee5a0fd61559c6bf8e6ebc920c93b0:111111' => 'Adobe Photoshop, Save for web, Quality 85', '60d17e041a23d47b96c5aac86180a022:111111' => 'Adobe Photoshop, Save for web, Quality 86', '8e5290b1d12832ad259de92a53e1ef4e:111111' => 'Adobe Photoshop, Save for web, Quality 87', 'dc19a48af9051bbdc54cf7e88c03f13e:111111' => 'Adobe Photoshop, Save for web, Quality 88', 'c3fbc85c803ddc81c8882c03330b5b15:111111' => 'Adobe Photoshop, Save for web, Quality 89', '5e016a2d28f8ad3e7e27e4e2981031d2:111111' => 'Adobe Photoshop, Save for web, Quality 90', 'ef4fa43f4d548e0687c4d4151a0bf1bd:111111' => 'Adobe Photoshop, Save for web, Quality 91', '00f03e367cd316b71de360c6e7af0e6b:111111' => 'Adobe Photoshop, Save for web, Quality 92', '982fc46fd167df238fbf23494a1ce761:111111' => 'Adobe Photoshop, Save for web, Quality 93', '6fd7b56ac6b58dc861e6021815fb5704:111111' => 'Adobe Photoshop, Save for web, Quality 94', 'c6d9120293c8435cf6b40574b45756bb:111111' => 'Adobe Photoshop, Save for web, Quality 95', '1e133f4bf9f7c7c1e0accf44c0b1107d:111111' => 'Adobe Photoshop, Save for web, Quality 96', 'fb91d6a8a1b72388d68130f551698865:111111' => 'Adobe Photoshop, Save for web, Quality 97', '4ea4e07900e04a3bd7572d4b59aa7a74:111111' => 'Adobe Photoshop, Save for web, Quality 98', '15e1d2321b96b355d4ad109a8d2fe882:111111' => 'Adobe Photoshop, Save for web, Quality 99', '234d8f310d75effc9f77beb1d3847f49:111111' => 'Adobe Photoshop, Save for web, Quality 100', # Adobe Photoshop Express (Release build number: 481589) 'aeb34eb083acc888770d65e691497bcf:111111' => 'Adobe Photoshop Express, Original Size', # Apple QuickTime (Color) # # Tested with: # - QuickTime 7.5.0 (Win) # - QuickTime 7.5.0 (Mac) # - QuickTime 7.4.1 (Mac) # - GraphicConverter 4.4.4 (Mac) # - Using the QuickTime library # - Fixed subsampling to 221111 # - Use a subset of 101 of the 1024 values 'dbdc6a6f3c9ffff19e67cfad2cc51ae4:221111' => 'Apple QuickTime, Quality 0-63 (0-6%)', '23bd5edb6224e03e2f7c282e04986553:221111' => 'Apple QuickTime, Quality 64-80 (6-8%)', '69747272d4079b78c2ee2ef0f5e63f30:221111' => 'Apple QuickTime, Quality 81-92 (8-9%)', '4f50903ec9314f739e460c79552a20c5:221111' => 'Apple QuickTime, Quality 93-101 (9-10%)', '2535e621267a9ff2e2d09148643e3389:221111' => 'Apple QuickTime, Quality 102-109 (10-11%)', '46a125048b572576eed271816b2cbad2:221111' => 'Apple QuickTime, Quality 110-116 (11%)', 'ce05e4b45c53a6e321d9cf1061c62128:221111' => 'Apple QuickTime, Quality 117-122 (11-12%)', 'c3b80241282d06ac5114f2750089589a:221111' => 'Apple QuickTime, Quality 123-127 (12%)', '9d91481900305fb9ad09339f0924f690:221111' => 'Apple QuickTime, Quality 128-133 (13%)', '348f4874d57ae6aae04ef96132374913:221111' => 'Apple QuickTime, Quality 134-137 (13%)', '4e3daadebe0517955b1c86fb1fbc1dc1:221111' => 'Apple QuickTime, Quality 138-142 (13-14%)', '599b6ad93f32b9d5ce67e1622338c379:221111' => 'Apple QuickTime, Quality 143-146 (14%)', '66aeb0f03343673eeed6462e0ce9e1aa:221111' => 'Apple QuickTime, Quality 147-150 (14-15%)', '13570e05da917fe51235ef66a295bc78:221111' => 'Apple QuickTime, Quality 151-154 (15%)', '25e399a9cf70fe7a13867b40ac2c3416:221111' => 'Apple QuickTime, Quality 155-157 (15%)', '25eb3d27e65659435a89e401edfab65f:221111' => 'Apple QuickTime, Quality 158-161 (15-16%)', 'c3bb3c557e70b56a890b07236348518b:221111' => 'Apple QuickTime, Quality 162-164 (16%)', '792e93c41ac63451068b887b11ad0c2e:221111' => 'Apple QuickTime, Quality 165-167 (16%)', '35af99d11406974cf2ffa6676801b10c:221111' => 'Apple QuickTime, Quality 168-170 (16-17%)', '606e5652fc33c6a02328f0bd23ee9751:221111' => 'Apple QuickTime, Quality 171-173 (17%)', '9b62a9e4544cbc1033c67732ea0bbb08:221111' => 'Apple QuickTime, Quality 174-176 (17%)', '93ef48999d5659763a33c45a2a0fa784:221111' => 'Apple QuickTime, Quality 177-179 (17%)', '01b48291bfeccf2fadab996816225b9b:221111' => 'Apple QuickTime, Quality 180-182 (18%)', '613ef896fc4af5baad36e2680968a7ba:221111' => 'Apple QuickTime, Quality 183-184 (18%)', '758d37a9d3b91c0ba383d23f5a080d8f:221111' => 'Apple QuickTime, Quality 185-187 (18%)', '34457d32b9531f04696a52969e02dc1a:221111' => 'Apple QuickTime, Quality 188-189 (18%)', '6634cdad61e7a8e6fb3a4ba1a0416256:221111' => 'Apple QuickTime, Quality 190-191 (19%)', 'e5b0739f8e02c6d481e0cdafe7326ae2:221111' => 'Apple QuickTime, Quality 192-194 (19%)', 'fca91c73d4275748587f97b472b59280:221111' => 'Apple QuickTime, Quality 195-196 (19%)', '7dc9316230c4f197fb5d1b36f09cd883:221111' => 'Apple QuickTime, Quality 197-198 (19%)', '13d6536913342860ab993be8b141f644:221111' => 'Apple QuickTime, Quality 199-201 (19-20%)', 'd835580b2be669d4aa6c68ead27c0c2f:221111' => 'Apple QuickTime, Quality 202-203 (20%)', '1e91365abfe1d9f7a008c363c834a66e:221111' => 'Apple QuickTime, Quality 204-205 (20%)', '6f7825365b673f9eb2ac050d27a21d1b:221111' => 'Apple QuickTime, Quality 206-207 (20%)', '2a98c0b884281080eefcdf98dd33fd6b:221111' => 'Apple QuickTime, Quality 208-209 (20%)', '0ffe7e9fc17393a338b95c345052b7c5:221111' => 'Apple QuickTime, Quality 210-211 (21%)', '9dd5c9717d0fd45486af4d26e59ebb35:221111' => 'Apple QuickTime, Quality 212-213 (21%)', '0ef85155f08194f8fed3f4e7197126e6:221111' => 'Apple QuickTime, Quality 214-215 (21%)', '35886289b5c8921f7932f895d7f1855d:221111' => 'Apple QuickTime, Quality 216-217 (21%)', '1d7ac617d70b1880be9c7ba16f96a3ec:221111' => 'Apple QuickTime, Quality 218 (21%)', 'b26a53dce1477ac3970335df110bb240:221111' => 'Apple QuickTime, Quality 219-220 (21%)', 'a333be9f2b13b53bfdf64bf5665f8e55:221111' => 'Apple QuickTime, Quality 221-222 (22%)', 'f1e8d9b3d66fa34ec9a51a987b48a159:221111' => 'Apple QuickTime, Quality 223-224 (22%)', '20f37f34a9fd18089aa58fe77493a7b7:221111' => 'Apple QuickTime, Quality 225 (22%)', 'b80e56d3ed0c4a8e1c6bb0c5a1d45ca9:221111' => 'Apple QuickTime, Quality 226-227 (22%)', 'd14411ab659ac68209ee8c75b941cb48:221111' => 'Apple QuickTime, Quality 228-229 (22%)', 'a5da49ac5bfe27aafda44bae107ae1c5:221111' => 'Apple QuickTime, Quality 230 (22%)', '9aa9359126240c0712610121371f870c:221111' => 'Apple QuickTime, Quality 231-232 (23%)', '5975500a23ab9a547ba149bf1aaa1893:221111' => 'Apple QuickTime, Quality 233-234 (23%)', 'd03a4790dd96a862113b1a2408103ad6:221111' => 'Apple QuickTime, Quality 235 (23%)', '44d2a7baaf1e3f8c3d45e4e6272a39b1:221111' => 'Apple QuickTime, Quality 236-237 (23%)', '7755ba223679105c184be0ada8c99f92:221111' => 'Apple QuickTime, Quality 238 (23%)', '1ea3f373d0adf989e8416ecb11c38608:221111' => 'Apple QuickTime, Quality 239-240 (23%)', '12196a46c697fbb88d8bef279b52b106:221111' => 'Apple QuickTime, Quality 241 (24%)', '2183a6f77fe72f5c70726244dcabc963:221111' => 'Apple QuickTime, Quality 242-243 (24%)', 'd1ca3a3723c1385d2989b199a7a30557:221111' => 'Apple QuickTime, Quality 244 (24%)', 'd83207842d60965f9d194d89f3281ccd:221111' => 'Apple QuickTime, Quality 245-246 (24%)', '6ae041573525edd42e800e1b61d4313c:221111' => 'Apple QuickTime, Quality 247 (24%)', '6c42d12564d1c5706653a8ddb5375192:221111' => 'Apple QuickTime, Quality 248-249 (24%)', '671a071a1b17f49a774da3893f7199c7:221111' => 'Apple QuickTime, Quality 250 (24%)', 'fb3c0cc15ad21b6c19576dd8d7d29a0e:221111' => 'Apple QuickTime, Quality 251 (25%)', 'c9ce3dc3d0567f631e463cc3ff1b2e30:221111' => 'Apple QuickTime, Quality 252-253 (25%)', 'b309a0dc90b16ac01f0798a04c3127e8:221111' => 'Apple QuickTime, Quality 254 (25%)', 'cd15038a76bd8752c3afd14669816c2e:221111' => 'Apple QuickTime, Quality 255 (25%)', 'd275e9aebd39cf411496caf6e54d0c5f:221111' => 'Apple QuickTime, Quality 256-257 (25%)', '5e75328df5dadca132bb83e0883ce522:221111' => 'Apple QuickTime, Quality 258 (25%)', 'b04cbc1812939770d59461982cd9d32d:221111' => 'Apple QuickTime, Quality 259 (25%)', 'ddf1f3b922ea51f6f4ca3cb6863eeae0:221111' => 'Apple QuickTime, Quality 260-261 (25%)', '5532e398abb0a455b528659e59c7cfd7:221111' => 'Apple QuickTime, Quality 262 (26%)', 'f9bff3eeb4e94fb9ab4820184b0b6058:221111' => 'Apple QuickTime, Quality 263 (26%)', '081da80ed314194b571ff9880a7c11d3:221111' => 'Apple QuickTime, Quality 264-265 (26%)', '178aa0138d7a08be081aeff794956a71:221111' => 'Apple QuickTime, Quality 266 (26%)', '78bb04e3ced3eee51c78e94b421ecc26:221111' => 'Apple QuickTime, Quality 267 (26%)', '17782e930dc2cba42da909d95278fe9b:221111' => 'Apple QuickTime, Quality 268 (26%)', '093b011ce21ae794d3eca7c64eecf5b6:221111' => 'Apple QuickTime, Quality 269 (26%)', '4bf515768d1a06e4c529ebae3e03b4b5:221111' => 'Apple QuickTime, Quality 270-271 (26%)', '3dd79429ada0455422ff6605c1727456:221111' => 'Apple QuickTime, Quality 272 (27%)', '4be1504b9732d1d9f6265d0616bad21b:221111' => 'Apple QuickTime, Quality 273 (27%)', 'b2118dc8e8b1762cc634e135a2a1893c:221111' => 'Apple QuickTime, Quality 274 (27%)', '70d843457698f46db30181ac616deb75:221111' => 'Apple QuickTime, Quality 275 (27%)', 'f3c42f077883313db21c72bd240de05f:221111' => 'Apple QuickTime, Quality 276 (27%)', '56e9a02eb25508a9f71ad1a7cb9f9f4d:221111' => 'Apple QuickTime, Quality 277-278 (27%)', '1d956197da5eb19ffe8855a0e2a52c98:221111' => 'Apple QuickTime, Quality 279 (27%)', '3e37de5c00962684feba769939fce685:221111' => 'Apple QuickTime, Quality 280 (27%)', '5628aeb29bb04d9c5073bc1caf371f01:221111' => 'Apple QuickTime, Quality 281 (27%)', 'a2e7b219d18177294378485759215f72:221111' => 'Apple QuickTime, Quality 282 (28%)', '537f40d0aae588fbce4cde9ba148604d:221111' => 'Apple QuickTime, Quality 283 (28%)', '14b7d58b539ad8d6f1c4f8fd82c91358:221111' => 'Apple QuickTime, Quality 284 (28%)', '58b302794024b9842657bbe7cb667577:221111' => 'Apple QuickTime, Quality 285 (28%)', '4be64c2782cbb36b757cdcadd756498a:221111' => 'Apple QuickTime, Quality 286 (28%)', '6c947f09bc02f87b257a26f9f5c77a77:221111' => 'Apple QuickTime, Quality 287 (28%)', '663b8a9dbd00efa78281f5028b35c503:221111' => 'Apple QuickTime, Quality 288 (28%)', 'e5deb190a5e17492a01e8136afdfd6c1:221111' => 'Apple QuickTime, Quality 289 (28%)', 'ba36e1298ce7fed908ee3e02b83ae7c3:221111' => 'Apple QuickTime, Quality 290 (28%)', 'bc4abc4600f2efc0bdead1e4be78801b:221111' => 'Apple QuickTime, Quality 291-292 (28-29%)', '43887ad276efb9ca8e8110498b38d814:221111' => 'Apple QuickTime, Quality 293 (29%)', '3050624718ce9acc06f85c2fa0208cc7:221111' => 'Apple QuickTime, Quality 294 (29%)', 'f6d9c8699e54823040b66c4b8e1361aa:221111' => 'Apple QuickTime, Quality 295 (29%)', 'a9b2875fc3c21e7b998969c57f74fa7a:221111' => 'Apple QuickTime, Quality 296 (29%)', 'b9be740b8a374a52808ad5ef6db2bfe7:221111' => 'Apple QuickTime, Quality 297 (29%)', '63f9786c6a9b8ef87c791818ddaba058:221111' => 'Apple QuickTime, Quality 298 (29%)', 'a65113fd3b66ef137f9b1144367f731b:221111' => 'Apple QuickTime, Quality 299 (29%)', 'ee58773aa7b774040d650365937cf173:221111' => 'Apple QuickTime, Quality 300 (29%)', '29a9ee0cae41784d90fa74d7cd240a3e:221111' => 'Apple QuickTime, Quality 301 (29%)', '369e1cfc338b45a239cb7db09778037e:221111' => 'Apple QuickTime, Quality 302 (29%)', '131ddd6eec5f51e825cf7afd9c7ab3b2:221111' => 'Apple QuickTime, Quality 303 (30%)', '88a2772be7b74a5a9b7ebbea28ddde47:221111' => 'Apple QuickTime, Quality 304 (30%)', '83e206dafb515f20a4b9a0c16f770940:221111' => 'Apple QuickTime, Quality 305 (30%)', 'dddc3adae44a64457b05416affc2502e:221111' => 'Apple QuickTime, Quality 306 (30%)', 'ff0758d87a0cbdb323fb93bf9ed1fdff:221111' => 'Apple QuickTime, Quality 307 (30%)', 'b1b1a08ebaf13142b731c95771d97226:221111' => 'Apple QuickTime, Quality 308 (30%)', 'd6e206f8224d6a3582fb1066b511437b:221111' => 'Apple QuickTime, Quality 309 (30%)', '2926d6bf5a27174bd9057bd6198413cd:221111' => 'Apple QuickTime, Quality 310 (30%)', '5d1b5e80f9777a636d1d5cb402fcfc32:221111' => 'Apple QuickTime, Quality 311 (30%)', 'ae39c8775a10e34accdf2bba3bffc483:221111' => 'Apple QuickTime, Quality 312 (30%)', 'bc6d3a9f349a97c5cde3f8fa4e1b5beb:221111' => 'Apple QuickTime, Quality 313 (31%)', '91bd468ca96fe548a7df9646b51880d1:221111' => 'Apple QuickTime, Quality 314 (31%)', '104c3b63e4ca667a4ee2e4250340052c:221111' => 'Apple QuickTime, Quality 315 (31%)', '64b80be38604eaecc99236b1f74a99f8:221111' => 'Apple QuickTime, Quality 316 (31%)', '284efada45882694778e65969f761478:221111' => 'Apple QuickTime, Quality 317 (31%)', 'd8bd88390c27b2b05a0784eafd4b31ef:221111' => 'Apple QuickTime, Quality 318 (31%)', '99bf8158a4060d354b521f3d6f5648ac:221111' => 'Apple QuickTime, Quality 319 (31%)', '96c9e3cd827097ec03edc458fc1053e4:221111' => 'Apple QuickTime, Quality 320 (31%)', '272b5b12f7701be4cceba51e9d5dbf13:221111' => 'Apple QuickTime, Quality 321 (31%)', 'dcc3ffcda228ab283d53e1dc2cb739ef:221111' => 'Apple QuickTime, Quality 322-324 (31-32%)', 'c44701e8185306f5e6d09be16a2b0fbd:221111' => 'Apple QuickTime, Quality 325 (32%)', '476a1ebd043ed59e56d18dd6d08777d7:221111' => 'Apple QuickTime, Quality 326 (32%)', '26831dfc8d0dc1d202d50d6cf7b4f4a4:221111' => 'Apple QuickTime, Quality 327 (32%)', '00f929d549fdd9f89fbb10303445cc2c:221111' => 'Apple QuickTime, Quality 328 (32%)', '030736cda242f0583a7064cb60cc026e:221111' => 'Apple QuickTime, Quality 329 (32%)', '825fb58744c6c2432d232f5fb83a9597:221111' => 'Apple QuickTime, Quality 330 (32%)', '0bac94d5b6ef090da7875e294a7f8040:221111' => 'Apple QuickTime, Quality 331 (32%)', '16de07616490b8439576d837c74aefbe:221111' => 'Apple QuickTime, Quality 332 (32%)', '8190e844832ee8ea97492b509c728de4:221111' => 'Apple QuickTime, Quality 333 (33%)', '0bb6bf7365676f75d285bb38a40b8e3f:221111' => 'Apple QuickTime, Quality 334 (33%)', '04710d4ba5233b4f82bd260263f9e992:221111' => 'Apple QuickTime, Quality 335 (33%)', 'fcb49e821b83f8436d450b03f1b1f182:221111' => 'Apple QuickTime, Quality 336 (33%)', '1bca645051a125cd2c3af262074f70e7:221111' => 'Apple QuickTime, Quality 337 (33%)', '7a5c04b63f9fe6af176efef387ba1f03:221111' => 'Apple QuickTime, Quality 338 (33%)', '24fff8dcfdc8640225fff020ad869c18:221111' => 'Apple QuickTime, Quality 339 (33%)', '08549fa433585b86d6eab75b6dcb1fe3:221111' => 'Apple QuickTime, Quality 340 (33%)', 'caabe462a50217592c74902def037c07:221111' => 'Apple QuickTime, Quality 341 (33%)', '757e97f3490ebc5b74fd63792fb23992:221111' => 'Apple QuickTime, Quality 342 (33%)', 'aa6072a632f7bae361c8d371aa022c57:221111' => 'Apple QuickTime, Quality 343 (33%)', '03809d08372d3a9fd86ff254854f45b7:221111' => 'Apple QuickTime, Quality 344 (34%)', 'bdebcafc7b5f6b7fea114943e042df5e:221111' => 'Apple QuickTime, Quality 345 (34%)', '555dc90fb10df448f37c67ee7ec31bc2:221111' => 'Apple QuickTime, Quality 346 (34%)', 'a2f2a404cd1c2278ef65f2a27c0365e0:221111' => 'Apple QuickTime, Quality 347 (34%)', 'aee867276d6dc4ed4b682a454815acd1:221111' => 'Apple QuickTime, Quality 348 (34%)', '8f2f9e8433104cedb50c3e54577fcd00:221111' => 'Apple QuickTime, Quality 349 (34%)', '84c2067991afbb6851204f21f5d132ea:221111' => 'Apple QuickTime, Quality 350 (34%)', '2d2a77bf6078ab4f07261c76b637b597:221111' => 'Apple QuickTime, Quality 351 (34%)', 'fc9d0f82571701e8b4cf764125ac0d2e:221111' => 'Apple QuickTime, Quality 352 (34%)', '75d4ffdc6c10675cb1b5bd002d4e0e41:221111' => 'Apple QuickTime, Quality 353 (34%)', '4b96c3457701c201f90d56af1a82d43b:221111' => 'Apple QuickTime, Quality 354 (35%)', 'a56edeb9e571dc790a429c26ebc59976:221111' => 'Apple QuickTime, Quality 355 (35%)', '3673ce9ec4f6f916009d39282ff3a8d7:221111' => 'Apple QuickTime, Quality 356 (35%)', 'b7279ade733ff1c88073971cebe6edd8:221111' => 'Apple QuickTime, Quality 357 (35%)', 'b35f3358027aa4d2cca0c64425aa8f1b:221111' => 'Apple QuickTime, Quality 358 (35%)', '854d2e536bc92a9e2e3db3ff2c18e138:221111' => 'Apple QuickTime, Quality 359 (35%)', '48b6aa4f0258162cceb9d43e19c96043:221111' => 'Apple QuickTime, Quality 360 (35%)', '1dfb48b5955cf2a50011f52b9a05f1a4:221111' => 'Apple QuickTime, Quality 361 (35%)', 'd67da3fcbac8975acffe7f1ab088f646:221111' => 'Apple QuickTime, Quality 362 (35%)', '7be7bded72d0ade6f907e3adcf62b391:221111' => 'Apple QuickTime, Quality 363 (35%)', '02c0554e4a004ceaddd0d7772e68a38b:221111' => 'Apple QuickTime, Quality 364 (36%)', 'e7b9303f785f78a2cb27f83616c18726:221111' => 'Apple QuickTime, Quality 365 (36%)', '4a4a154781db3f5f500e8cf177a4b446:221111' => 'Apple QuickTime, Quality 366 (36%)', '7e4b44f2900a405e7b85090af7d40298:221111' => 'Apple QuickTime, Quality 367 (36%)', '76aa290370382de8a3516f73389f9350:221111' => 'Apple QuickTime, Quality 368 (36%)', '912779b5b7c935f2b533af0f400402f3:221111' => 'Apple QuickTime, Quality 369 (36%)', '91c7f694fbf07321037a838c3a4d6e7d:221111' => 'Apple QuickTime, Quality 370 (36%)', 'f98a4286abf1cbe8bf46fba1e78cec61:221111' => 'Apple QuickTime, Quality 371 (36%)', '2fbbcce5a035d6215e4851a0ae63481f:221111' => 'Apple QuickTime, Quality 372 (36%)', '8d8fab3b6b7386a4e81f10c15a7abaa5:221111' => 'Apple QuickTime, Quality 373 (36%)', '82e672854d7e00d47a988855b95d2f7f:221111' => 'Apple QuickTime, Quality 374 (37%)', '9fffe6b2fbbce23598c19e6cd177adb0:221111' => 'Apple QuickTime, Quality 375 (37%)', '3f69293a4abeb2201004e7241fe22c75:221111' => 'Apple QuickTime, Quality 376 (37%)', 'a01d3a7766c7c593a79ff6c63433860a:221111' => 'Apple QuickTime, Quality 377 (37%)', '787ed74c3d5570c03f98804bc9d0c448:221111' => 'Apple QuickTime, Quality 378 (37%)', '12239aa16bb4091d8f873f9536e40371:221111' => 'Apple QuickTime, Quality 379 (37%)', 'f45d495d3b470eadba70bcca888042b3:221111' => 'Apple QuickTime, Quality 380 (37%)', '97346edee67c3afea7823c72e57cb6c5:221111' => 'Apple QuickTime, Quality 381 (37%)', '5b35e4bc9cbbc353b8e4b73132324088:221111' => 'Apple QuickTime, Quality 382 (37%)', 'a43b370edaaee853bb16e46ee4a002e8:221111' => 'Apple QuickTime, Quality 383 (37%)', '7f3d110973a4d7d5824724c4e577b407:221111' => 'Apple QuickTime, Quality 384 (38%)', '0e36104efe90a5a77e9b686d0a6528ab:221111' => 'Apple QuickTime, Quality 385 (38%)', '0bc0941c2a59d9a12b66d1d34117cfd7:221111' => 'Apple QuickTime, Quality 386 (38%)', '342e3bddb81140ea9df00400a46461d7:221111' => 'Apple QuickTime, Quality 387 (38%)', 'ad8bbd6b23b87950d1b76278fbb7de87:221111' => 'Apple QuickTime, Quality 388 (38%)', 'd58f5d339b69e1296911a3387cc664a4:221111' => 'Apple QuickTime, Quality 389 (38%)', 'c740804ef8493bb467744e1cdb8882c1:221111' => 'Apple QuickTime, Quality 390 (38%)', 'ab975404bdb713bb6a58ac560330aaf1:221111' => 'Apple QuickTime, Quality 391 (38%)', 'eb68a0ff9c83267e5fb5e998365b4480:221111' => 'Apple QuickTime, Quality 392 (38%)', '9c1865e7fdc0289dc5fe8f4c1f65577e:221111' => 'Apple QuickTime, Quality 393 (38%)', '21db4122ad8183006542018e53e0c653:221111' => 'Apple QuickTime, Quality 394 (38%)', '734255167cbd052200fb4c474f05bcd9:221111' => 'Apple QuickTime, Quality 395 (39%)', 'e5dcd017a9734f9f0e18b515c7fa1787:221111' => 'Apple QuickTime, Quality 396 (39%)', 'c58a47c2e3dc737b9591420812b9cc27:221111' => 'Apple QuickTime, Quality 397 (39%)', 'ea25d0beaa91434a14348fb60f5cff31:221111' => 'Apple QuickTime, Quality 398 (39%)', '21f8a4a67742edcde0ac854522028c9f:221111' => 'Apple QuickTime, Quality 399 (39%)', '8b8dc34912d8b18742a7670be4b1c867:221111' => 'Apple QuickTime, Quality 400 (39%)', 'f7adac1fb54bb1fc566b66822122a9c6:221111' => 'Apple QuickTime, Quality 401 (39%)', '0fe0c7e65c0696d9e76ad819d61e44ae:221111' => 'Apple QuickTime, Quality 402 (39%)', '6dabf05ddc213b650ff08aa9a8cb9f50:221111' => 'Apple QuickTime, Quality 403 (39%)', '226788e417078cdcc5aa989379b9e824:221111' => 'Apple QuickTime, Quality 404 (39%)', '9366dde6c37f4cac36a8e8cea4d5f51c:221111' => 'Apple QuickTime, Quality 405 (40%)', '3ce5057aaf0ff155ee69d66591c8290d:221111' => 'Apple QuickTime, Quality 406 (40%)', '58fe81014a9ee26a7bd393c8e31f4011:221111' => 'Apple QuickTime, Quality 407 (40%)', '41e44bae14ab49d1b0f06438d34cb316:221111' => 'Apple QuickTime, Quality 408 (40%)', '80ccbe5645cc62ebd4ae7b2128b42d91:221111' => 'Apple QuickTime, Quality 409 (40%)', 'b08af3cffd1904e8a8cfbbba71077069:221111' => 'Apple QuickTime, Quality 410 (40%)', 'abb56efe234d4b8fdf50016a19c63684:221111' => 'Apple QuickTime, Quality 411 (40%)', 'e41806d0928fbb5552225e10db7b55d0:221111' => 'Apple QuickTime, Quality 412 (40%)', 'ae9de0a8343d730e2e6a358849c29a4e:221111' => 'Apple QuickTime, Quality 413 (40%)', 'b83146f54d17b2c8e242f7f36dc36f19:221111' => 'Apple QuickTime, Quality 414 (40%)', 'a748fdfe8d6dc9493253908410e517eb:221111' => 'Apple QuickTime, Quality 415 (41%)', 'd4bb4c59b5284630a4c716a0290d9091:221111' => 'Apple QuickTime, Quality 416 (41%)', 'de93dd8ab7918b25f191923f4a43a5c2:221111' => 'Apple QuickTime, Quality 417 (41%)', '0807f8b3b41b01054509858fa74dcf4d:221111' => 'Apple QuickTime, Quality 418 (41%)', 'efd780e10dcd0ab8ca0a0f4f3cb215d3:221111' => 'Apple QuickTime, Quality 419 (41%)', '2ec3d0ec37690e40f009b7a9f9b17c49:221111' => 'Apple QuickTime, Quality 420 (41%)', 'a4680e71907e5c6f7b18e20e46286412:221111' => 'Apple QuickTime, Quality 421 (41%)', '8e54abf2320cca661b6dd67b7658c9f3:221111' => 'Apple QuickTime, Quality 422 (41%)', '00f76480eafd05aa5267053aec3aa122:221111' => 'Apple QuickTime, Quality 423 (41%)', '849bce1254b14d44e24a6b419c385597:221111' => 'Apple QuickTime, Quality 424 (41%)', '8a91452f2df82874183be50601242106:221111' => 'Apple QuickTime, Quality 425 (42%)', 'a670182cd48f37dd16652db878791a7a:221111' => 'Apple QuickTime, Quality 426 (42%)', 'c2afe9aca67de0276a6fb507861c3e80:221111' => 'Apple QuickTime, Quality 427 (42%)', '18836b72e5399e2a19cd6420562ab1ff:221111' => 'Apple QuickTime, Quality 428 (42%)', 'cb207af75faf8ee1ef0ca3caa593bb69:221111' => 'Apple QuickTime, Quality 429 (42%)', '7a318965f27e3c09d11f53cbb10a872b:221111' => 'Apple QuickTime, Quality 430 (42%)', 'b0a501129cb83e54f97006610ec9ed64:221111' => 'Apple QuickTime, Quality 431 (42%)', 'f1a8af8c0abe4b3423d5ac8c6273a7ca:221111' => 'Apple QuickTime, Quality 432 (42%)', '56224ea0ac2fccb92cbe9702896f9796:221111' => 'Apple QuickTime, Quality 433 (42%)', '2f2101a8450c617a09ccad472c275b88:221111' => 'Apple QuickTime, Quality 434 (42%)', '13e218420429e2c94d4b9474ab03f8e4:221111' => 'Apple QuickTime, Quality 435 (42%)', '41061e1cdb97926ed5bded3da11af209:221111' => 'Apple QuickTime, Quality 436 (43%)', 'cc3e4dc4e190d00a12bd03199efdcc6d:221111' => 'Apple QuickTime, Quality 437 (43%)', '36b2371ec6df13143af12d600232c2ab:221111' => 'Apple QuickTime, Quality 438 (43%)', '71d0e3444a4c82cf39048ba8cf7b1d5f:221111' => 'Apple QuickTime, Quality 439 (43%)', '9f48e71f610caa47b94d3e474608cb3d:221111' => 'Apple QuickTime, Quality 440 (43%)', 'dcecd4f366d521e118e94d87ef915caa:221111' => 'Apple QuickTime, Quality 441 (43%)', 'cf0a070dc9b4a8983b50f8e3f105b857:221111' => 'Apple QuickTime, Quality 442 (43%)', '5504a428191bc87e5c1ba4b5e9984a37:221111' => 'Apple QuickTime, Quality 443 (43%)', 'de6a322383022ee8d966e848a2df4f28:221111' => 'Apple QuickTime, Quality 444 (43%)', '163be99e863436e9b3d32615785ec8e1:221111' => 'Apple QuickTime, Quality 445 (43%)', '958185c48000065b5b8d03b0f975d95b:221111' => 'Apple QuickTime, Quality 446 (44%)', '2d719cb263e284fc8621bbec1fe52cd5:221111' => 'Apple QuickTime, Quality 447 (44%)', '8f0f54955cf19689f38df36715908b76:221111' => 'Apple QuickTime, Quality 448 (44%)', '737c61e006222488645fa2e007f83f3c:221111' => 'Apple QuickTime, Quality 449 (44%)', 'bb342113b57cf66ce0cf3a09fae5fd16:221111' => 'Apple QuickTime, Quality 450 (44%)', 'cd3ed5b396580d8e9f0cb7b78baed8b8:221111' => 'Apple QuickTime, Quality 451 (44%)', 'e7914fbf6c9b2a127af3676726e6bd8b:221111' => 'Apple QuickTime, Quality 452 (44%)', '377a7b50c2d7484255bbbf537bf9fa86:221111' => 'Apple QuickTime, Quality 453 (44%)', '09f9009406d2fe8dfa1b35236f8b1bdb:221111' => 'Apple QuickTime, Quality 454 (44%)', '78b0e590ea36cb11c495097049022d2e:221111' => 'Apple QuickTime, Quality 455 (44%)', '984c0f34636e6197b508265f17cbd6c9:221111' => 'Apple QuickTime, Quality 456 (45%)', '7fca22065811c0efe6599a15ca38f05e:221111' => 'Apple QuickTime, Quality 457 (45%)', 'd55d9744065708d7b6fa7fb6e8eb2453:221111' => 'Apple QuickTime, Quality 458 (45%)', '63ef900bf59d41003a0e0602baa60681:221111' => 'Apple QuickTime, Quality 459 (45%)', 'e8b31dbd18c91229a3c40356efeb2622:221111' => 'Apple QuickTime, Quality 460 (45%)', '8cb1bb16c6fa524199dad5513386d225:221111' => 'Apple QuickTime, Quality 461 (45%)', 'c53438ece0552cedb1ec0d50ad2d5dbe:221111' => 'Apple QuickTime, Quality 462 (45%)', '5db6302d7e68c1a274139033681b8fcc:221111' => 'Apple QuickTime, Quality 463 (45%)', 'acd1d5ec1787c9d346d87c281a7b6da0:221111' => 'Apple QuickTime, Quality 464-465 (45%)', 'e66c03f97b19213f385136f014c78ac1:221111' => 'Apple QuickTime, Quality 466-467 (46%)', '23816ed847127a41e3c7f52e04072e41:221111' => 'Apple QuickTime, Quality 468 (46%)', 'ebce337e9ef5a07775cebe40d7623862:221111' => 'Apple QuickTime, Quality 469 (46%)', '09563e47ab174b05fb19f722e9aa43c3:221111' => 'Apple QuickTime, Quality 470 (46%)', '545e14e832fb81f032526a9efcbf2450:221111' => 'Apple QuickTime, Quality 471 (46%)', 'edda5d6ae456d4cdccec80e390ac9279:221111' => 'Apple QuickTime, Quality 472 (46%)', '9a43fc0aa6223673c32a49fb76d6525c:221111' => 'Apple QuickTime, Quality 473 (46%)', 'bdaf3e68c2925cbaad3864359fdbbb77:221111' => 'Apple QuickTime, Quality 474 (46%)', '4f83a1a8338a8e6e70eaa58cd236f62a:221111' => 'Apple QuickTime, Quality 475 (46%)', '879b320cfd6e27b2e283b573483bda81:221111' => 'Apple QuickTime, Quality 476 (46%)', '2748fa249a86361b1b5f0662a88abdb3:221111' => 'Apple QuickTime, Quality 477 (47%)', '32eb803f68d72719267a1313548e7180:221111' => 'Apple QuickTime, Quality 478 (47%)', '771eeb43856b1821a271b0aa8398a243:221111' => 'Apple QuickTime, Quality 479 (47%)', '653c5006512bb3aaa1e6a4e77078b630:221111' => 'Apple QuickTime, Quality 480 (47%)', 'c5c102ba5f004d49656f424d89e9773c:221111' => 'Apple QuickTime, Quality 481 (47%)', 'd5220fcfa99764e440684fbac6273cff:221111' => 'Apple QuickTime, Quality 482 (47%)', 'd300f18258f46060d89c994dbc370131:221111' => 'Apple QuickTime, Quality 483 (47%)', '60258dcc1e3a81858d176080ef774730:221111' => 'Apple QuickTime, Quality 484 (47%)', '8bda9fb1ed75249ac5b2feaad7b51d2f:221111' => 'Apple QuickTime, Quality 485 (47%)', '9e334af92d75ab7d4ea1a9816840ea73:221111' => 'Apple QuickTime, Quality 486 (47%)', 'c40a38c96832a6042c6ddfc9754c1d6d:221111' => 'Apple QuickTime, Quality 487 (48%)', '30be130aa27d0b91d6f55ed9b1cd6c84:221111' => 'Apple QuickTime, Quality 488 (48%)', '3601e95d6cd507065d46b3f058229d91:221111' => 'Apple QuickTime, Quality 489 (48%)', '9127f8ddd20e583523bc848e99061126:221111' => 'Apple QuickTime, Quality 490 (48%)', '0d605d279c48a74ef71a24e89ca426a8:221111' => 'Apple QuickTime, Quality 491 (48%)', 'a5cd2d8592e1c45b67cfb3009d07fb49:221111' => 'Apple QuickTime, Quality 492 (48%)', 'e346ce6e3bee6abff16420f5ba95ceb9:221111' => 'Apple QuickTime, Quality 493 (48%)', '03295b26893cab9c7dea4ec15ed56d08:221111' => 'Apple QuickTime, Quality 494 (48%)', '76af24fe94edf8f3992e38c1dd6eebce:221111' => 'Apple QuickTime, Quality 495 (48%)', '3c58e82299d87346d37023ea015f3e80:221111' => 'Apple QuickTime, Quality 496 (48%)', 'aa8940194463b7adc14f20dbee9c6a75:221111' => 'Apple QuickTime, Quality 497 (49%)', '68a808b23bfa8096e04006171926b72c:221111' => 'Apple QuickTime, Quality 498 (49%)', '34c0043b98d09193beda0cf5d1ada274:221111' => 'Apple QuickTime, Quality 499 (49%)', '5881bb3c6e7e2ac43983b4b1e947a6c3:221111' => 'Apple QuickTime, Quality 500 (49%)', 'a0a7061bc100f051a3c5470559661138:221111' => 'Apple QuickTime, Quality 501 (49%)', '62e6812d1f7935adddd1a69227cdf626:221111' => 'Apple QuickTime, Quality 502 (49%)', '94f6dbd754fb4ba3c92698d5f08084f9:221111' => 'Apple QuickTime, Quality 503 (49%)', 'b7257ba67e4b38b7ccdca2a65d60c970:221111' => 'Apple QuickTime, Quality 504 (49%)', '5a19d6130b03080dfedef45b6415f4f8:221111' => 'Apple QuickTime, Quality 505 (49%)', '2b3262e10b1563600a5f0738fec342ed:221111' => 'Apple QuickTime, Quality 506 (49%)', '295cb1e2772312ba5cd546966d1aa70d:221111' => 'Apple QuickTime, Quality 507 (50%)', 'c910bcb7b9e8967b87cfa08229d9ca34:221111' => 'Apple QuickTime, Quality 508 (50%)', '61c8506b490d5e596151b951ffa7a14f:221111' => 'Apple QuickTime, Quality 509 (50%)', 'ae15629cecc940fef9f24ad9f207fa10:221111' => 'Apple QuickTime, Quality 510 (50%)', 'c8ef3c50ca99c44ea13f1692ac1190dc:221111' => 'Apple QuickTime, Quality 511 (50%)', '50500b1272433ef5c9c96f16069fbdf1:221111' => 'Apple QuickTime, Quality 512 (50%)', 'e41e5416e21dbfb5a41f006b3485f5bb:221111' => 'Apple QuickTime, Quality 513 (50%)', 'd606add3e7590885ac8978af6d09a2aa:221111' => 'Apple QuickTime, Quality 514 (50%)', 'cc3936c39c298ef67d9196d0254b0c19:221111' => 'Apple QuickTime, Quality 515 (50%)', 'e83f8505dc3f5f46b37e22b590f71b98:221111' => 'Apple QuickTime, Quality 516 (50%)', '2a8e27e03b6e1555335c91231c452bba:221111' => 'Apple QuickTime, Quality 517 (50%)', '52ab880d25db7b36137e2a3c04987c9a:221111' => 'Apple QuickTime, Quality 518 (51%)', 'ce2335cc1f8289deda620877f50fd90d:221111' => 'Apple QuickTime, Quality 519 (51%)', 'bbad0e19b252268530df19c563aa9176:221111' => 'Apple QuickTime, Quality 520 (51%)', '3184b71ca26bfe0c80811cf10423fa92:221111' => 'Apple QuickTime, Quality 521 (51%)', '37802f44dab089a35e03b94a298b19da:221111' => 'Apple QuickTime, Quality 522 (51%)', '5e528bd6778792490c6cf292cf9ba8df:221111' => 'Apple QuickTime, Quality 523 (51%)', 'fbe0f5b89f266ff382f2b14c70a83097:221111' => 'Apple QuickTime, Quality 524 (51%)', 'a4bfd80e0c8b9ae7a1114d79a7b63ad6:221111' => 'Apple QuickTime, Quality 525 (51%)', 'abdf532dc2005805db7d8d0214227146:221111' => 'Apple QuickTime, Quality 526 (51%)', '2a7ec778642b15b8bce238f7b63ef537:221111' => 'Apple QuickTime, Quality 527 (51%)', '70073f02f04ee893510bceb09e411d53:221111' => 'Apple QuickTime, Quality 528 (52%)', '345d210b180a45bd23b0c7931c59c263:221111' => 'Apple QuickTime, Quality 529 (52%)', 'ddbc4e6566bbcc74b6205526393ef468:221111' => 'Apple QuickTime, Quality 530 (52%)', '420af34c4f718cc0a10de5285140b6e0:221111' => 'Apple QuickTime, Quality 531 (52%)', '16b6c2d8688113b1a28afbbc57f46f80:221111' => 'Apple QuickTime, Quality 532-533 (52%)', '4a2a0e381fed49e5d5ba074998652561:221111' => 'Apple QuickTime, Quality 534 (52%)', '50f1255f2424b2de5b930751ddf24842:221111' => 'Apple QuickTime, Quality 535 (52%)', '80f2c05e2ad3524f18dd55bac10ee2e3:221111' => 'Apple QuickTime, Quality 536 (52%)', '6c0916ab5aa02602cc682bcdbc22369e:221111' => 'Apple QuickTime, Quality 537 (52%)', 'f7e5656e1f2cf036e9a57a6c02373398:221111' => 'Apple QuickTime, Quality 538 (53%)', '92044affd220e31ee953aff021144b29:221111' => 'Apple QuickTime, Quality 539 (53%)', '2bafe4b75b8a105d72e981b21fe3b6cf:221111' => 'Apple QuickTime, Quality 540 (53%)', 'ca0e84028714f19cf20cb868d1cd346c:221111' => 'Apple QuickTime, Quality 541 (53%)', 'db1ae392a31d30cd5564dc7bbea24019:221111' => 'Apple QuickTime, Quality 542 (53%)', '4417e739b9244781987769c2177abc6f:221111' => 'Apple QuickTime, Quality 543 (53%)', 'f1de58c1c6a48dc36ce7e8c69636539c:221111' => 'Apple QuickTime, Quality 544 (53%)', '10c931d7bff7bfcc20e37f0868887228:221111' => 'Apple QuickTime, Quality 545 (53%)', 'e082971717023e667f3d922bbccf089b:221111' => 'Apple QuickTime, Quality 546 (53%)', '5a285190351b16fee0eb14778280d74f:221111' => 'Apple QuickTime, Quality 547 (53%)', 'aad0e2cd42c5adaec41080a05be4ffdc:221111' => 'Apple QuickTime, Quality 548 (54%)', 'de802b8c64d7f854081c7df6ed345b43:221111' => 'Apple QuickTime, Quality 549 (54%)', '82f45d11d651d93a67995965b94aa649:221111' => 'Apple QuickTime, Quality 550 (54%)', '617c4c853344ef079f4a1f1062672e8c:221111' => 'Apple QuickTime, Quality 551-552 (54%)', '90d96923be1883e6ee15a9d0d32a114c:221111' => 'Apple QuickTime, Quality 553 (54%)', '307c47179fdad179b5f962228c115db8:221111' => 'Apple QuickTime, Quality 554 (54%)', 'a4683813bdf6e2bd429c4c5676128384:221111' => 'Apple QuickTime, Quality 555 (54%)', '8e3cfc2fc9cfbba0f6aed9850504ebb6:221111' => 'Apple QuickTime, Quality 556 (54%)', 'a8f8928c72b69049e1da7639e977c9c7:221111' => 'Apple QuickTime, Quality 557 (54%)', '1fb4c8af2d70cdeecab3fd9fc882e0ce:221111' => 'Apple QuickTime, Quality 558 (54%)', '98ddda3b0ada32ce919b9af9df4054dd:221111' => 'Apple QuickTime, Quality 559 (55%)', 'b43ab5c404469c416e853e52497b3f0d:221111' => 'Apple QuickTime, Quality 560 (55%)', 'd9696efa02b9de813caf8d684b06346f:221111' => 'Apple QuickTime, Quality 561 (55%)', 'be63c4e967eff819bd8a052a561a4576:221111' => 'Apple QuickTime, Quality 562 (55%)', 'f984581f90913e44f3898fffd8fce8b0:221111' => 'Apple QuickTime, Quality 563 (55%)', '082779cf55f6b922036f11b74df54110:221111' => 'Apple QuickTime, Quality 564 (55%)', '066fd6cb3a5dd994fc6159987afde581:221111' => 'Apple QuickTime, Quality 565 (55%)', '133351a0f39427f1199312585cd6c997:221111' => 'Apple QuickTime, Quality 566 (55%)', '6c23da63c864f1433ec198ae202e56f0:221111' => 'Apple QuickTime, Quality 567 (55%)', '7d1819ccce2756fcf6dfbb67565c2552:221111' => 'Apple QuickTime, Quality 568 (55%)', 'd9794fa54e2ef47be48b972cdca910c2:221111' => 'Apple QuickTime, Quality 569 (56%)', '085db73bd47194c8fdf567fc619c3b62:221111' => 'Apple QuickTime, Quality 570 (56%)', '9866add6e1d251e1d4c40793f4300dce:221111' => 'Apple QuickTime, Quality 571 (56%)', '1b9e7e39831b05b058025ae0a7482d44:221111' => 'Apple QuickTime, Quality 572 (56%)', 'a8b52e666bd3d81404c0f8915ac18b43:221111' => 'Apple QuickTime, Quality 573 (56%)', 'e34d11f979458a87492b57eabfd4f4ea:221111' => 'Apple QuickTime, Quality 574 (56%)', '4295c1330dec60585760cbb05b79662d:221111' => 'Apple QuickTime, Quality 575 (56%)', '9205cc28769d94d6d00c25804ac70a88:221111' => 'Apple QuickTime, Quality 576 (56%)', 'b5648f13228d20fd7ae81965394f7515:221111' => 'Apple QuickTime, Quality 577 (56%)', 'c8f02bf550c40daa39b28911a4ef5a69:221111' => 'Apple QuickTime, Quality 578 (56%)', 'c2b23a91d377ce2d99ac4109f2740069:221111' => 'Apple QuickTime, Quality 579 (57%)', 'c0cecb47363aff00a2764a915f95cd35:221111' => 'Apple QuickTime, Quality 580 (57%)', 'fc0d8f17be060220464fe7bc0a2d754e:221111' => 'Apple QuickTime, Quality 581 (57%)', '63b59904874e5e427ddecb37e12f90c7:221111' => 'Apple QuickTime, Quality 582 (57%)', 'df6535865562ce7cbf08e9368e991a95:221111' => 'Apple QuickTime, Quality 583 (57%)', '74523ad3424dcff6aa697c3ce433ad4e:221111' => 'Apple QuickTime, Quality 584 (57%)', 'cbdec670ec6d9105277434b304226920:221111' => 'Apple QuickTime, Quality 585 (57%)', '68783ed0a7956cf0b7a1b2787e756213:221111' => 'Apple QuickTime, Quality 586 (57%)', 'a431976a61e281e7b9d808f094b74d2e:221111' => 'Apple QuickTime, Quality 587 (57%)', '8e2a66454fb149552d4538d53ec033aa:221111' => 'Apple QuickTime, Quality 588 (57%)', '49222c4a3be01e93baad695bba63b254:221111' => 'Apple QuickTime, Quality 589 (58%)', 'ab8fe796c87f9f61cedbfa64af9f5dec:221111' => 'Apple QuickTime, Quality 590 (58%)', '9bfe788e7ae4bc9cbe76d36f9a2b1b5e:221111' => 'Apple QuickTime, Quality 591 (58%)', '22b5f11b635ea5484469708cd7e6e3d9:221111' => 'Apple QuickTime, Quality 592 (58%)', '44e36eb25c6f9e313ef2a8f4c520c335:221111' => 'Apple QuickTime, Quality 593 (58%)', 'c71aa81fb12b378dd31a1ca128942f76:221111' => 'Apple QuickTime, Quality 594 (58%)', 'e56ca8f4da20395ec1f87d380198fa0a:221111' => 'Apple QuickTime, Quality 595 (58%)', '38f4d508dcf9c82d9488b42a2487b191:221111' => 'Apple QuickTime, Quality 596 (58%)', '3da1e7270e0900a17a0a4ff8d3c9a488:221111' => 'Apple QuickTime, Quality 597 (58%)', '900fee18a5f6d1dc3fd856d3d92f5414:221111' => 'Apple QuickTime, Quality 598 (58%)', '3c724d4b5d8cbe203ebbf92ea8e22808:221111' => 'Apple QuickTime, Quality 599 (58%)', 'e7e7befa282a985a0532634f360df7db:221111' => 'Apple QuickTime, Quality 600 (59%)', '1f21bf5b7e0e79c229ef4d06fc9d3cc8:221111' => 'Apple QuickTime, Quality 601 (59%)', '3bb09b202acd618286d26a33f688f7c7:221111' => 'Apple QuickTime, Quality 602 (59%)', '9717c5a17cbffdfaa2e5d3769b87fbc5:221111' => 'Apple QuickTime, Quality 603 (59%)', 'ffa7874d293c62ecc55c098b8f305ae1:221111' => 'Apple QuickTime, Quality 604 (59%)', 'e68841bf28d33d749d0031bfe3a5219c:221111' => 'Apple QuickTime, Quality 605 (59%)', '5862c8c2b241a9760f6804d970eefd66:221111' => 'Apple QuickTime, Quality 606 (59%)', '1d069604250e871bd92a4a24c7be2bd5:221111' => 'Apple QuickTime, Quality 607 (59%)', '3806bcbefd350e8791be95dfc62bab27:221111' => 'Apple QuickTime, Quality 608 (59%)', '490b035a665ef80c7b48804461d55b7f:221111' => 'Apple QuickTime, Quality 609 (59%)', 'bd6943a8c92a14e74d2b24052a19400a:221111' => 'Apple QuickTime, Quality 610 (60%)', '93e725418f46b2a70723523bef0979fe:221111' => 'Apple QuickTime, Quality 611 (60%)', '5b66fa5c0c1ba746289747229193cfb0:221111' => 'Apple QuickTime, Quality 612 (60%)', '1bdac971e8cddd198ad3123849370037:221111' => 'Apple QuickTime, Quality 613 (60%)', '20f7b70185f4b324a8451ac4657c1d66:221111' => 'Apple QuickTime, Quality 614 (60%)', '86ab18d6c1359a424f303fcfd0930df2:221111' => 'Apple QuickTime, Quality 615 (60%)', '0d70031c9962dba7c39da59ada2f1660:221111' => 'Apple QuickTime, Quality 616-617 (60%)', '9cb9a256b6deb481cf13e5230fe87dbb:221111' => 'Apple QuickTime, Quality 618-619 (60%)', 'cb34e1a0e18a4dd7ffe823f9c92b3622:221111' => 'Apple QuickTime, Quality 620 (61%)', 'ac015afc1d80314edd832aebfb495d25:221111' => 'Apple QuickTime, Quality 621 (61%)', '4974cc7044768888244b324449a238ab:221111' => 'Apple QuickTime, Quality 622 (61%)', 'bc4541f5bc4d58b99b53d24f3f520b32:221111' => 'Apple QuickTime, Quality 623 (61%)', 'ec2fd56a50df0e42498018d441a3aa75:221111' => 'Apple QuickTime, Quality 624 (61%)', '153a6f0994d16003aa4f1112e6757467:221111' => 'Apple QuickTime, Quality 625 (61%)', 'ed6b90ca62ed648d1102e1c506a0af26:221111' => 'Apple QuickTime, Quality 626 (61%)', '18593e50c21c8ad521b30933ef7479b1:221111' => 'Apple QuickTime, Quality 627 (61%)', '6f96ed52a987d67e8d950b2627d3fbc2:221111' => 'Apple QuickTime, Quality 628 (61%)', 'e76d86e8de4f0bf9e58cd389e0a8c117:221111' => 'Apple QuickTime, Quality 629 (61%)', '4fa27c83741226576ac6359cd4f6248e:221111' => 'Apple QuickTime, Quality 630 (62%)', 'be010732a7783ee345548a1eb95d024a:221111' => 'Apple QuickTime, Quality 631 (62%)', '6700663d4ebaeb394bfd3c85597347b5:221111' => 'Apple QuickTime, Quality 632 (62%)', '34dba33043aa5ee317b7649242e702b1:221111' => 'Apple QuickTime, Quality 633 (62%)', '821d7e59bcf756171b7644ec5736266e:221111' => 'Apple QuickTime, Quality 634 (62%)', 'd81683c0458d9ad72751530d6fbc1389:221111' => 'Apple QuickTime, Quality 635 (62%)', '4c04d6fe904a4b6ff8b25c9f0e9f0a16:221111' => 'Apple QuickTime, Quality 636 (62%)', '8efda55d6186d9867189c5cb572c5413:221111' => 'Apple QuickTime, Quality 637 (62%)', '25497c83113bd738e89d91bd48d7086c:221111' => 'Apple QuickTime, Quality 638 (62%)', '84c8e142e6d27734b126f76653b9199d:221111' => 'Apple QuickTime, Quality 639 (62%)', 'bdaf13038b56b5701f60300528f8a89c:221111' => 'Apple QuickTime, Quality 640-641 (63%)', 'b015ada43293b8d5bd2a8f288f8fb928:221111' => 'Apple QuickTime, Quality 642 (63%)', '8134ff0c4713cc1ef4a25ff60b49ac54:221111' => 'Apple QuickTime, Quality 643 (63%)', '967fc5c3ece2b69662257c76397416c9:221111' => 'Apple QuickTime, Quality 644 (63%)', 'd01a38e0f568d2a7b6b71f8fa63b8bcc:221111' => 'Apple QuickTime, Quality 645 (63%)', '5229288e448311401bb284133ac7d48c:221111' => 'Apple QuickTime, Quality 646 (63%)', '76d22de881d1b95b491689b589743b7a:221111' => 'Apple QuickTime, Quality 647 (63%)', 'c81b03b0291d2277461a551ed6861252:221111' => 'Apple QuickTime, Quality 648-649 (63%)', 'ebb774b4e106d1a9df5824958d4e5a95:221111' => 'Apple QuickTime, Quality 650 (63%)', '9ed53fb5bc8e397daf9409251c0a0a6c:221111' => 'Apple QuickTime, Quality 651 (64%)', '87d40f2e4dad34fa435c62af6817dc18:221111' => 'Apple QuickTime, Quality 652 (64%)', '0b933cf90e62682da926267d6356ac2b:221111' => 'Apple QuickTime, Quality 653 (64%)', '2c4a4cb841ee92aa3a2b4c93467ba7a8:221111' => 'Apple QuickTime, Quality 654 (64%)', '8a6ba56597670b7adb70901eca278049:221111' => 'Apple QuickTime, Quality 655 (64%)', 'd1ef25928fd4eefe131ffcfc249b9f8a:221111' => 'Apple QuickTime, Quality 656 (64%)', '8c85462b5a01db09bcbf304d7be1d543:221111' => 'Apple QuickTime, Quality 657 (64%)', '19c03533b9b2e3304a0b02d9b1054497:221111' => 'Apple QuickTime, Quality 658 (64%)', 'd2baa8fbc56f0970f820c376c6065d41:221111' => 'Apple QuickTime, Quality 659 (64%)', 'e6a0a679a13a99de16e13c6ea2829deb:221111' => 'Apple QuickTime, Quality 660-661 (64-65%)', '8e4f695afcf2a06254561e5e22b7a80b:221111' => 'Apple QuickTime, Quality 662 (65%)', 'd053fd2c67ce96b0ecf9ffc4b7f7775d:221111' => 'Apple QuickTime, Quality 663 (65%)', '326c33f64f96592487d2bfdd198738bf:221111' => 'Apple QuickTime, Quality 664 (65%)', '1ff8f5ff33353a3ee0b6dc8fbb6321a0:221111' => 'Apple QuickTime, Quality 665 (65%)', '14a5534e4216458662a43101d56d84c8:221111' => 'Apple QuickTime, Quality 666 (65%)', '0643b87475939754c8d56825cd96242f:221111' => 'Apple QuickTime, Quality 667 (65%)', '45c46a02a434d8ea759742907bfa0ee5:221111' => 'Apple QuickTime, Quality 668 (65%)', '2916d9453b885ee4123e6e3ee94ccbc7:221111' => 'Apple QuickTime, Quality 669-671 (65-66%)', 'b8fca611f92cbc459fe21e11f0214328:221111' => 'Apple QuickTime, Quality 672-673 (66%)', 'f40fb322c4bde68a2902c86c613af841:221111' => 'Apple QuickTime, Quality 674 (66%)', '1cbd419717a2916b53f9f504ec1167ca:221111' => 'Apple QuickTime, Quality 675 (66%)', '79f546689b548868a904f50214928aa1:221111' => 'Apple QuickTime, Quality 676 (66%)', '8ff6f2d4369155b0474417b00c3c4ac9:221111' => 'Apple QuickTime, Quality 677 (66%)', 'c60dbbefd4f215b9359dd004f4fb0fd3:221111' => 'Apple QuickTime, Quality 678 (66%)', 'c192d5847d1146a31db621263a9ce2f5:221111' => 'Apple QuickTime, Quality 679 (66%)', '4a2361c48a583f6df779d1e6088ed83c:221111' => 'Apple QuickTime, Quality 680 (66%)', '6c6260b84a3a588614d65133430289ea:221111' => 'Apple QuickTime, Quality 681 (67%)', '6773f3db56ae831012dbe43c1650571a:221111' => 'Apple QuickTime, Quality 682 (67%)', '813b89236cfe429fe534361f28ace015:221111' => 'Apple QuickTime, Quality 683 (67%)', '363b54d38094e5f2e2d63c50870ae76c:221111' => 'Apple QuickTime, Quality 684 (67%)', '7b17607b9954c37e525b1fbc35271553:221111' => 'Apple QuickTime, Quality 685 (67%)', '8b1138e2d88033d42698a386a2e8605b:221111' => 'Apple QuickTime, Quality 686 (67%)', 'c029b8a48e3c93f7c0367f2a149491c7:221111' => 'Apple QuickTime, Quality 687 (67%)', 'a36199f5a090de94b10a32fbe05f2916:221111' => 'Apple QuickTime, Quality 688-689 (67%)', 'a873e49b871c32bcaf8e3c6622744e70:221111' => 'Apple QuickTime, Quality 690 (67%)', 'b9d16f36087d4cca70eef1512c4be569:221111' => 'Apple QuickTime, Quality 691 (67%)', 'd5994dbe056ea3544b3256a7a6b53749:221111' => 'Apple QuickTime, Quality 692 (68%)', '0106cf02dcf4109cc6f02fa4ec0e2700:221111' => 'Apple QuickTime, Quality 693 (68%)', '7d71776416a8771d10e3c2e6dc6a5f21:221111' => 'Apple QuickTime, Quality 694-695 (68%)', 'c1557f789acc622c8858be4dfbc53c31:221111' => 'Apple QuickTime, Quality 696 (68%)', '5a54f085c1780cadb13a7dea8347c7c6:221111' => 'Apple QuickTime, Quality 697 (68%)', '04a5bb959bc203221e72e6575ff39602:221111' => 'Apple QuickTime, Quality 698 (68%)', '116e3d5fee4e3a695c0f79c09c89ff84:221111' => 'Apple QuickTime, Quality 699 (68%)', '145bfd5481e99e18c4c3707228557fa5:221111' => 'Apple QuickTime, Quality 700 (68%)', '19ceef79e864691318beea6502ddc3e1:221111' => 'Apple QuickTime, Quality 701 (68%)', 'dd0a023941d7bfd118d272f4f925e6e2:221111' => 'Apple QuickTime, Quality 702 (69%)', '81f039d6a0ded8227dc51273d153b295:221111' => 'Apple QuickTime, Quality 703-704 (69%)', '9a7ebf265afce16abaa6ca2fbb550b63:221111' => 'Apple QuickTime, Quality 705 (69%)', '8d0fed09156984328f90f9f19fb5a079:221111' => 'Apple QuickTime, Quality 706 (69%)', 'be7c72e09c46622b0d2b93e170a03e17:221111' => 'Apple QuickTime, Quality 707 (69%)', '50a510968effffab80bed1d08c6c5ccc:221111' => 'Apple QuickTime, Quality 708 (69%)', 'da2501a6f59b2256adb0833b58b504f2:221111' => 'Apple QuickTime, Quality 709 (69%)', '2a1b83345108443a090cdab4c83143fb:221111' => 'Apple QuickTime, Quality 710 (69%)', 'e7f293f640878b53fe95a7cb0b1dcc83:221111' => 'Apple QuickTime, Quality 711-712 (69-70%)', 'd9e0a4c08ef5d7f72eecce74c94c054d:221111' => 'Apple QuickTime, Quality 713 (70%)', 'c5774ffb4573926fd03d4175818c0e5d:221111' => 'Apple QuickTime, Quality 714 (70%)', 'e2b368a164b67e15598683f9f184bd77:221111' => 'Apple QuickTime, Quality 715 (70%)', 'f30792e8fad278c3e1677b5f5b74c682:221111' => 'Apple QuickTime, Quality 716-717 (70%)', '6f6bfc10750e6717cc3791a9ea1d7569:221111' => 'Apple QuickTime, Quality 718-719 (70%)', '5e3981a937c61480451d5bdc253e5472:221111' => 'Apple QuickTime, Quality 720 (70%)', 'c4fb82f47a7b002d5cab421592ae4972:221111' => 'Apple QuickTime, Quality 721 (70%)', 'a6c4a173169d168e003839e51f035661:221111' => 'Apple QuickTime, Quality 722 (71%)', '72df283a5c07671eba341500a3fc18f1:221111' => 'Apple QuickTime, Quality 723 (71%)', 'dfb203555c34fe146c526350e11309eb:221111' => 'Apple QuickTime, Quality 724 (71%)', '033472a8a855fab8cd8f6a5788dd07c8:221111' => 'Apple QuickTime, Quality 725 (71%)', '5b8a79eec9b7eb7755deb7f2c189e94a:221111' => 'Apple QuickTime, Quality 726 (71%)', 'ad3aad027e3829959ebeb6288bfab268:221111' => 'Apple QuickTime, Quality 727 (71%)', '2234156f0550a047700c2a08459c8242:221111' => 'Apple QuickTime, Quality 728 (71%)', '0c0351c3a444b851cd105dd5cc4db59c:221111' => 'Apple QuickTime, Quality 729 (71%)', 'c10fca5e6f66238ab09f7e8105f54e39:221111' => 'Apple QuickTime, Quality 730 (71%)', '74cc07bbb7049d59aff0c4965d4d5084:221111' => 'Apple QuickTime, Quality 731 (71%)', 'ce9ad8466ffd84b91039326e8688c44a:221111' => 'Apple QuickTime, Quality 732-733 (71-72%)', 'e4b0c56d41f4af9e10971876ad7ad56d:221111' => 'Apple QuickTime, Quality 734 (72%)', '96076425ecc546ec028d0eab48332756:221111' => 'Apple QuickTime, Quality 735 (72%)', 'ba49b0656894f3c76d852223721b3b1f:221111' => 'Apple QuickTime, Quality 736 (72%)', 'ae5c6eab0d57249acbcb8b1990b2602f:221111' => 'Apple QuickTime, Quality 737-738 (72%)', '72f08842473a6c504469d341259e5cd7:221111' => 'Apple QuickTime, Quality 739-740 (72%)', 'c9f953acdfc1f5afdbb9e9f74692d23e:221111' => 'Apple QuickTime, Quality 741 (72%)', '5a1b57a2583acf5c2428cd62fe24b773:221111' => 'Apple QuickTime, Quality 742 (72%)', '6a9ead8b2339567482a172a581e86c15:221111' => 'Apple QuickTime, Quality 743-744 (73%)', '513d9e9dabbb480eb60f7ef76b1d755e:221111' => 'Apple QuickTime, Quality 745 (73%)', 'b99bdcd0145833d52b916e71f2c20a04:221111' => 'Apple QuickTime, Quality 746 (73%)', 'ff084566430a3ed4733cd59aec26a55d:221111' => 'Apple QuickTime, Quality 747 (73%)', '76bcc27918d8f12b343e6e5a41108781:221111' => 'Apple QuickTime, Quality 748 (73%)', '7bf7022a7c12b3b7ea085b46158253e6:221111' => 'Apple QuickTime, Quality 749 (73%)', '4baf3b1df2426fbdac3d0aaa0503ee94:221111' => 'Apple QuickTime, Quality 750 (73%)', 'bb0180b9eda074c3f913c8ada3d4c1ad:221111' => 'Apple QuickTime, Quality 751 (73%)', 'c5fcb1748f616ac97794d34b1b93616e:221111' => 'Apple QuickTime, Quality 752-753 (73-74%)', '0da77ccec22a9cff9a049a47e86d3502:221111' => 'Apple QuickTime, Quality 754 (74%)', 'c31f71de437dc301d34f847d95267d9e:221111' => 'Apple QuickTime, Quality 755 (74%)', '01137dc7ef90f0aee15362c221f7b1d3:221111' => 'Apple QuickTime, Quality 756-758 (74%)', '026780f2172c289bc1ff73a34c6aee57:221111' => 'Apple QuickTime, Quality 759-760 (74%)', '3fab8f2b141f95a989fc4b046ad825cb:221111' => 'Apple QuickTime, Quality 761 (74%)', 'cd091eeb9d27d9dc7cdb5bff73572679:221111' => 'Apple QuickTime, Quality 762 (74%)', 'ad2221ee8bb94a3558ed16766efaec4f:221111' => 'Apple QuickTime, Quality 763 (75%)', '8a4ff70dce3efc9312ff7239e79b6bc9:221111' => 'Apple QuickTime, Quality 764 (75%)', 'b8d1fcda3a19d00788c2be73fd4c2c8e:221111' => 'Apple QuickTime, Quality 765-766 (75%)', '3af16b87c33bb2e48152e249beb9147b:221111' => 'Apple QuickTime, Quality 767 (75%)', '3af16b87c33bb2e48152e249beb9147b:211111' => 'Apple QuickTime, Quality 768 (75%)', '683270dbffdc5cd2d4e6cb841f17b206:211111' => 'Apple QuickTime, Quality 769 (75%)', '285bdd58fac87b174a22d2a93d69cd7c:211111' => 'Apple QuickTime, Quality 770 (75%)', '312e047b5d9076cd1e126f3dbce928e5:211111' => 'Apple QuickTime, Quality 771 (75%)', '99458d7a01a39fe126592d9afb1402ce:211111' => 'Apple QuickTime, Quality 772 (75%)', 'b4633256b0e0d5e2a5021f01ebabc105:211111' => 'Apple QuickTime, Quality 773 (75%)', '90d39fd222f9114f613a315a894283ca:211111' => 'Apple QuickTime, Quality 774 (76%)', '61b1d4a02498b7467f2c8e8cfebdfae9:211111' => 'Apple QuickTime, Quality 775-776 (76%)', '987ebcbd20b633b40241fcd30266e986:211111' => 'Apple QuickTime, Quality 777 (76%)', '31e214243395b008048469d4bc4dc780:211111' => 'Apple QuickTime, Quality 778 (76%)', 'db5b3a078a942131b5d86bc189baac24:211111' => 'Apple QuickTime, Quality 779 (76%)', 'ec440a2ffcbce8895beb663b36975073:211111' => 'Apple QuickTime, Quality 780-781 (76%)', '93d7ac97a931be74c7fe849edc482ea1:211111' => 'Apple QuickTime, Quality 782 (76%)', '3974d72e6831171ec970bbb09b9cc506:211111' => 'Apple QuickTime, Quality 783 (76%)', '07bd22218437079a86ce0b93ffa9cc90:211111' => 'Apple QuickTime, Quality 784 (77%)', '32757023bb5e7f703acf737a5a29c9d6:211111' => 'Apple QuickTime, Quality 785-786 (77%)', '6096eb584b99a587f5527e20473aa9d1:211111' => 'Apple QuickTime, Quality 787 (77%)', 'c6d134475eb85bd454f2ee5153366c51:211111' => 'Apple QuickTime, Quality 788 (77%)', 'a3ba20f325ff36f874d633919185f92d:211111' => 'Apple QuickTime, Quality 789 (77%)', 'af10133169e143a2b3634c48dede9440:211111' => 'Apple QuickTime, Quality 790 (77%)', '9dbb8223620e7f25ca3292849f7aa025:211111' => 'Apple QuickTime, Quality 791-792 (77%)', '5071640a38c5898dd5d2043346fd23e1:211111' => 'Apple QuickTime, Quality 793-795 (77-78%)', '60a0ca27f3e7289d97c033ca217899cc:211111' => 'Apple QuickTime, Quality 796-798 (78%)', 'f7a5ea485a254cba0d39cdeaf89ad344:211111' => 'Apple QuickTime, Quality 799 (78%)', 'd8cd0ca367d9afaf9a1aca0415da5361:211111' => 'Apple QuickTime, Quality 800 (78%)', '87fb3c7402ba4edcda34b71696d2b0e3:211111' => 'Apple QuickTime, Quality 801 (78%)', 'f8df76525f7f97d2e89173989e6786af:211111' => 'Apple QuickTime, Quality 802-804 (78-79%)', '64677161baed1c47d2fdd6eefd779583:211111' => 'Apple QuickTime, Quality 805 (79%)', 'ca39dde8e9b4ccd6261b28e089181639:211111' => 'Apple QuickTime, Quality 806-807 (79%)', 'e6c99d520b86fd6f5eb513d1a084324e:211111' => 'Apple QuickTime, Quality 808 (79%)', '9e048c787b12b9ab47d6166e81bc8bda:211111' => 'Apple QuickTime, Quality 809 (79%)', '03c035b39889356e0b10805d8549a1f7:211111' => 'Apple QuickTime, Quality 810 (79%)', '15de51ede231cfbe123daa42a1a46070:211111' => 'Apple QuickTime, Quality 811-813 (79%)', '725bcc59a6f5a1436dfa0dfd96cdcf44:211111' => 'Apple QuickTime, Quality 814 (79%)', 'd00103d50108e8be370a78d47f51aba0:211111' => 'Apple QuickTime, Quality 815 (80%)', '1c4c74ccc581b11050cfe18792246e5e:211111' => 'Apple QuickTime, Quality 816 (80%)', 'b63e97c56859f2476ed3f15f40775fb5:211111' => 'Apple QuickTime, Quality 817 (80%)', 'aac2510e3cd617eb2cd60e7dc6f5d252:211111' => 'Apple QuickTime, Quality 818 (80%)', '028caa124d0837dd9b1a64028e4f2965:211111' => 'Apple QuickTime, Quality 819 (80%)', '0440231d1a4a1187bffaa5b5576827f9:211111' => 'Apple QuickTime, Quality 820 (80%)', '6f879b2b5642ee3d01faf3410a721e2d:211111' => 'Apple QuickTime, Quality 821 (80%)', '4642245b427d5dd5c1c3766c323204ac:211111' => 'Apple QuickTime, Quality 822-824 (80%)', '8bd486eb557ae8f39948775aba222731:211111' => 'Apple QuickTime, Quality 825 (81%)', '8bc4e4bec8e9b193c11ad90c7f8bfaf3:211111' => 'Apple QuickTime, Quality 826 (81%)', 'f54c2ea8437408238f6c181a355af6cb:211111' => 'Apple QuickTime, Quality 827-829 (81%)', '0f58458f2b9959dbc57b4868200c0432:211111' => 'Apple QuickTime, Quality 830-832 (81%)', '24f95056dce30d11bad39b33ab271262:211111' => 'Apple QuickTime, Quality 833-834 (81%)', 'bad6fdd8761fb9d0921384013acf783f:211111' => 'Apple QuickTime, Quality 835 (82%)', '8c482fe6aef2a59a94cb779e6795e512:211111' => 'Apple QuickTime, Quality 836 (82%)', '50b309f18bcf477742aa491ea55af777:211111' => 'Apple QuickTime, Quality 837 (82%)', '92a9e0d027a1b2e5f7e49f7ffd96277e:211111' => 'Apple QuickTime, Quality 838-839 (82%)', 'a6df2748a4972d4323f0386820ce35a4:211111' => 'Apple QuickTime, Quality 840 (82%)', '9ffb80389e2eed2301e6b07860c2fbd7:211111' => 'Apple QuickTime, Quality 841 (82%)', '6042038094d7f4ad72c61c2a2e7a467f:211111' => 'Apple QuickTime, Quality 842 (82%)', '78d004490e822405acded09846135e50:211111' => 'Apple QuickTime, Quality 843 (82%)', 'a589d880de576ed888c57814ccea47a0:211111' => 'Apple QuickTime, Quality 844 (82%)', 'beee113eea5950b8211cdc49e5a04099:211111' => 'Apple QuickTime, Quality 845 (83%)', 'f04fed79cdc47709d649187cfcc7e342:211111' => 'Apple QuickTime, Quality 846-849 (83%)', 'edb0be7fcce943c28d02ff78ae600afb:211111' => 'Apple QuickTime, Quality 850 (83%)', '0e9648c1f28b99a377dcf7deec6450e6:211111' => 'Apple QuickTime, Quality 851-852 (83%)', '2dffe433bbb9c81b05e569afd3d9b585:211111' => 'Apple QuickTime, Quality 853 (83%)', '0ef4f8fa922f87f1be646fccaa0ef42e:211111' => 'Apple QuickTime, Quality 854 (83%)', '4b799df6fc9476102f890343080e66f5:211111' => 'Apple QuickTime, Quality 855-856 (83-84%)', '53a66cb32deb83c855f36b26527f4c10:211111' => 'Apple QuickTime, Quality 857 (84%)', '151d7cd5a95929d45c6790beb87705fe:211111' => 'Apple QuickTime, Quality 858 (84%)', 'bc2afe0a9c7c68b8d84bd231209be3e2:211111' => 'Apple QuickTime, Quality 859-860 (84%)', 'b9d66564ab9c4bb0910eb228aa9a48e1:211111' => 'Apple QuickTime, Quality 861-863 (84%)', '6808ca55a29fcb9c15db1925a84370c3:211111' => 'Apple QuickTime, Quality 864 (84%)', 'ee5b4ed7f04821d1e3a509d7565cb10d:211111' => 'Apple QuickTime, Quality 865 (84%)', 'd38be79f7c8c6c27a3268275b144add6:211111' => 'Apple QuickTime, Quality 866 (85%)', '59eedef87f255db058b5ba0b1d3a4ce8:211111' => 'Apple QuickTime, Quality 867 (85%)', '5e5530c45def7006a7f672ce5778513d:211111' => 'Apple QuickTime, Quality 868 (85%)', 'b09abfa40fc6607dc26d8b5df48c72fc:211111' => 'Apple QuickTime, Quality 869 (85%)', 'cfc78404529f2b81b16d3f25fc96e8f4:211111' => 'Apple QuickTime, Quality 870 (85%)', '14c62682032efe8dc2de80c9330c6206:211111' => 'Apple QuickTime, Quality 871-872 (85%)', 'ffadac945c3420537e21e67ab3a843d6:211111' => 'Apple QuickTime, Quality 873-875 (85%)', 'e67a8a7e92a9f03413e9a67b99624b8b:211111' => 'Apple QuickTime, Quality 876-877 (86%)', 'ba4af3bb30dda0a7be4c04ff1ebbd9ef:211111' => 'Apple QuickTime, Quality 878-880 (86%)', '3eedb8a357141ff5ae765fd3be2b232f:211111' => 'Apple QuickTime, Quality 881-886 (86-87%)', '127b0599fc6804909a33832be7a9dd36:211111' => 'Apple QuickTime, Quality 887 (87%)', 'b697448eec21ef07f3111b62d592c423:211111' => 'Apple QuickTime, Quality 888-890 (87%)', 'a08a6b6535f292518b5ff6d0d05ae187:211111' => 'Apple QuickTime, Quality 891-893 (87%)', 'a439b365c2d0cf1fbaad2e42d331d759:211111' => 'Apple QuickTime, Quality 894 (87%)', 'bf0c20b20af6473b7c4a338ba57d1a96:211111' => 'Apple QuickTime, Quality 895 (87%)', '09cf94311753aa9796ffd720749c51f7:211111' => 'Apple QuickTime, Quality 896 (88%)', 'a60bbd6538af00192c411020d7494a1d:211111' => 'Apple QuickTime, Quality 897-898 (88%)', 'df8ea903695e76e4b1466bdd3a3480c7:211111' => 'Apple QuickTime, Quality 899 (88%)', 'eb4eb617beaa4f23acf41167742806fc:211111' => 'Apple QuickTime, Quality 900-901 (88%)', '591c923a44c635c33769704c9cfa6ab7:211111' => 'Apple QuickTime, Quality 902 (88%)', '960caf85ef273541ac2e76c9554dc860:211111' => 'Apple QuickTime, Quality 903 (88%)', '22c77ec6f4e8f75d48f98473abe62e59:211111' => 'Apple QuickTime, Quality 904-905 (88%)', 'fc8d384969030e7bc0255d34a7a5c0b0:211111' => 'Apple QuickTime, Quality 906 (88%)', '42e7323506b113685e82e6d42664626f:211111' => 'Apple QuickTime, Quality 907-908 (89%)', '7163b345b90553e246296a48b46cc0b3:211111' => 'Apple QuickTime, Quality 909-910 (89%)', '52f25cf8c4d610dffcc45681def8fb49:211111' => 'Apple QuickTime, Quality 911-914 (89%)', '5554cfd817a2713a690b957145b088ed:211111' => 'Apple QuickTime, Quality 915-917 (89-90%)', '6ef0b71a5676c4645a3166b9c34744fa:211111' => 'Apple QuickTime, Quality 918-920 (90%)', '1228da2b97793a88a41542ddcfca7ad2:211111' => 'Apple QuickTime, Quality 921-922 (90%)', '9060906039e9ff37171ba48d908f6ad5:211111' => 'Apple QuickTime, Quality 923-924 (90%)', '6eb301fb89e7d625129b77a53fe30dcc:211111' => 'Apple QuickTime, Quality 925-926 (90%)', 'ad5399708089baad5891319303ba92df:211111' => 'Apple QuickTime, Quality 927 (91%)', 'afd16e145464c7c5a3cd703017b4ef7a:211111' => 'Apple QuickTime, Quality 928 (91%)', '4271405c840705072a102d7e18b374d9:211111' => 'Apple QuickTime, Quality 929 (91%)', '72a91837a63fa7444416bc00a05d988b:211111' => 'Apple QuickTime, Quality 930 (91%)', '8fe3845bafb06ee4de1a6f75c2a42e9b:211111' => 'Apple QuickTime, Quality 931 (91%)', '8d3b678651ec71f27e3727718123f354:211111' => 'Apple QuickTime, Quality 932-933 (91%)', '36d42b031eea0c9f626f15533e72162a:211111' => 'Apple QuickTime, Quality 934-936 (91%)', '789076781ff1e18154091f2460c1bab5:211111' => 'Apple QuickTime, Quality 937-938 (92%)', '07464723ecfd8e5ed8fd6904e9d15a23:211111' => 'Apple QuickTime, Quality 939 (92%)', '0efd0d9423b440cfc8efacf2e4dfcb7f:211111' => 'Apple QuickTime, Quality 940 (92%)', '80409b38f84336548b62e337a850e9cb:211111' => 'Apple QuickTime, Quality 941-943 (92%)', '5fa6bb26309d43ca6c89d6cc776a68a4:211111' => 'Apple QuickTime, Quality 944-946 (92%)', '705064f644ac4b24884500a40ad0f7cf:211111' => 'Apple QuickTime, Quality 947-948 (92-93%)', 'c181c79bc41cf5fe11e6f253242ce2c4:211111' => 'Apple QuickTime, Quality 949-951 (93%)', '1a7da03994ee019a30dbd37117761467:211111' => 'Apple QuickTime, Quality 952-954 (93%)', '070620a25578b4a38ed0c09d6d512de8:211111' => 'Apple QuickTime, Quality 955 (93%)', '6a092d8fd56ca0e852d74bd86cfc4f47:211111' => 'Apple QuickTime, Quality 956-957 (93%)', '66e85870faf72f4f3fe25486409b286a:211111' => 'Apple QuickTime, Quality 958 (94%)', '31365833a4d7d0ef2c1db9b90e515f7f:211111' => 'Apple QuickTime, Quality 959-961 (94%)', '2edccd94198ab5a459a8396d9a0be4aa:211111' => 'Apple QuickTime, Quality 962 (94%)', 'ca0bf66c467278f9d5ca5301840e7a7f:211111' => 'Apple QuickTime, Quality 963-967 (94%)', '261bdba7fe6d8bca5302e4e93b52c1fb:211111' => 'Apple QuickTime, Quality 968-970 (95%)', '762f9501e83d58307d1e102ddb343207:211111' => 'Apple QuickTime, Quality 971 (95%)', 'ba18a8f4175bdedfea7af9bf5fe8dd9c:211111' => 'Apple QuickTime, Quality 972-973 (95%)', 'd1a8052e7152e0c35d167e9e56418eb7:211111' => 'Apple QuickTime, Quality 974 (95%)', '32682ece28c3bee7754fde6fec109b47:211111' => 'Apple QuickTime, Quality 975-977 (95%)', 'a8780d0f85eef638c6a448e57b157378:211111' => 'Apple QuickTime, Quality 978-979 (96%)', 'b79ff1a16807a48a31d457ad7e0b94f2:211111' => 'Apple QuickTime, Quality 980-984 (96%)', '2bf80ea6a878f7ecb88ea827b58c98f8:211111' => 'Apple QuickTime, Quality 985-987 (96%)', 'add779ad00786bd2ccb9dcc226386b1a:211111' => 'Apple QuickTime, Quality 988-991 (96-97%)', '56c4efb597cc30275229486199e60f70:211111' => 'Apple QuickTime, Quality 992-993 (97%)', 'c2df556e8ede9fb199b9a16e01279c6b:211111' => 'Apple QuickTime, Quality 994-996 (97%)', '6af868a0eececd267495f749a38b4f95:211111' => 'Apple QuickTime, Quality 997-998 (97%)', 'c92c755320e7ce8f46f644b90b7907e8:211111' => 'Apple QuickTime, Quality 999-1000 (98%)', '6fcbaaa11108d1712bad5410b3db5b91:211111' => 'Apple QuickTime, Quality 1001-1002 (98%)', 'f7d803e16f0c66df7d46747715b1ae24:211111' => 'Apple QuickTime, Quality 1003 (98%)', '7f51ebf21174bcd3b027ae3cc77c4459:211111' => 'Apple QuickTime, Quality 1004 (98%)', 'f2423a8ae68a49cc6191a2ec80367893:211111' => 'Apple QuickTime, Quality 1005-1006 (98%)', 'f97cd4c7b1125556dc3eb57fc494e6b5:211111' => 'Apple QuickTime, Quality 1007-1009 (98-99%)', '389e1ca056b1bd05dd29ecaecae5b4ae:211111' => 'Apple QuickTime, Quality 1010-1013 (99%)', '43f9929d00af93968662983b891364d8:211111' => 'Apple QuickTime, Quality 1014-1016 (99%)', '7e1453eec55a8c40166b2d8985ad6bdc:211111' => 'Apple QuickTime, Quality 1017 (99%)', '31697e4b294a13e35ab8d55d3a9612ca:211111' => 'Apple QuickTime, Quality 1018-1020 (99-100%)', 'ec76274ff22c07e53299ad34633ba88f:211111' => 'Apple QuickTime, Quality 1021-1023 (100%)', '7f8b33a26e7f35a6eaf2e95df81e1cca:111111' => 'Apple QuickTime, Quality 1024 (Lossless)', # Apple QuickTime (Grayscale) # # Tested with: # - QuickTime 7.5.0 (Win) '7e6246d9be5273b979beb680b284e7b8:11' => 'Apple QuickTime, Quality 0-63 (0-6%)', 'caf33ddc94762bf60a8c5e5024550b21:11' => 'Apple QuickTime, Quality 64-80 (6-8%)', '042ae0dbef2b1e91c4eb36e66a39b5b9:11' => 'Apple QuickTime, Quality 81-92 (8-9%)', 'bdcc7abca09941326c079bb3bc30de4d:11' => 'Apple QuickTime, Quality 93-101 (9-10%)', '8edf0677ca6be750511593fad835bbb5:11' => 'Apple QuickTime, Quality 102-109 (10-11%)', 'dd54b4e3d8801f3a7969be542d165c6b:11' => 'Apple QuickTime, Quality 110-116 (11%)', 'c00374dece11c3cab5f2c3bf9621d365:11' => 'Apple QuickTime, Quality 117-122 (11-12%)', 'a2e3baa02454492ef811619ac18c65da:11' => 'Apple QuickTime, Quality 123-127 (12%)', '8f699e4439175f5f0cf0f903040fb3c5:11' => 'Apple QuickTime, Quality 128-133 (13%)', '50f9224c87a32486851bdbd3e686fd5b:11' => 'Apple QuickTime, Quality 134-137 (13%)', 'cccd5f36920fbe8ad77da2214f8ab6ed:11' => 'Apple QuickTime, Quality 138-142 (13-14%)', '8bc7e3b8f24507e284075ebeb272c3f4:11' => 'Apple QuickTime, Quality 143-146 (14%)', 'bc156b933365b88e5ba9f1bd4b2fee4e:11' => 'Apple QuickTime, Quality 147-150 (14-15%)', 'a50ff29c6c2a7e73f742ca94678956ba:11' => 'Apple QuickTime, Quality 151-154 (15%)', 'd0a67359275cf9e2e8f35de79d2e28ae:11' => 'Apple QuickTime, Quality 155-157 (15%)', '37914b5d31e7f0f13066e5292c07c305:11' => 'Apple QuickTime, Quality 158-161 (15-16%)', '340aeb15b2b6c05968bb2c6e3d85cbed:11' => 'Apple QuickTime, Quality 162-164 (16%)', 'bc93228921ec863e90850325cfd90dd2:11' => 'Apple QuickTime, Quality 165-167 (16%)', 'd5c95455812515ad4855ed725d5bf2d9:11' => 'Apple QuickTime, Quality 168-170 (16-17%)', 'd018c811df2390446b43cc702888864c:11' => 'Apple QuickTime, Quality 171-173 (17%)', '824a9788f50aad6ca26ada301cae5c72:11' => 'Apple QuickTime, Quality 174-176 (17%)', 'd35254d58224b1b6babda94d7f1a5ffe:11' => 'Apple QuickTime, Quality 177-179 (17%)', '4177be1c82543b32bf6578dc3a78d49d:11' => 'Apple QuickTime, Quality 180-182 (18%)', '88b94edfd7a6c7aadac520905e6cfa0a:11' => 'Apple QuickTime, Quality 183-184 (18%)', '589b1ef8cc8bece150218e4646d9dfd6:11' => 'Apple QuickTime, Quality 185-187 (18%)', 'a6c15a75ab70e28c78e6084f909523bf:11' => 'Apple QuickTime, Quality 188-189 (18%)', 'd052e48078f986c715e68f502d371ccc:11' => 'Apple QuickTime, Quality 190-191 (19%)', '7d4205e3d4e0b6c7071a418c9b5840cb:11' => 'Apple QuickTime, Quality 192-194 (19%)', '2200d1873e51bf812bdcb57c10c6c14b:11' => 'Apple QuickTime, Quality 195-196 (19%)', '395ef59782311cd2081887c78c40c4bc:11' => 'Apple QuickTime, Quality 197-198 (19%)', 'd33d12dc779097bee959fefac6de9a3e:11' => 'Apple QuickTime, Quality 199-201 (19-20%)', '64ff54dc33f610e3705cae31428ce43d:11' => 'Apple QuickTime, Quality 202-203 (20%)', 'dbee605b07dfe30c992622877dffb049:11' => 'Apple QuickTime, Quality 204-205 (20%)', 'aa5a427657696f05da789e1516b8c2ff:11' => 'Apple QuickTime, Quality 206-207 (20%)', 'cf8fce0d4bde00a2feb680bb52667c8f:11' => 'Apple QuickTime, Quality 208-209 (20%)', '81ac42cc63416f7c66cd2a51a8801cbd:11' => 'Apple QuickTime, Quality 210-211 (21%)', '5e55cc3328e61e88b9f2a49af4ec2268:11' => 'Apple QuickTime, Quality 212-213 (21%)', 'ef938a0533502fe19f311d46c43fa86c:11' => 'Apple QuickTime, Quality 214-215 (21%)', 'f841cbd6a77d64924ab19845219f3399:11' => 'Apple QuickTime, Quality 216-217 (21%)', '98b684f30055c84ba5734e29f7b98b5f:11' => 'Apple QuickTime, Quality 218 (21%)', '8d4f697b3a2baaecc8765f31f54a76ae:11' => 'Apple QuickTime, Quality 219-220 (21%)', '6fc283989bb3a8c91f6c4384df2fa25d:11' => 'Apple QuickTime, Quality 221-222 (22%)', 'dccca51d261b315120f069697872377d:11' => 'Apple QuickTime, Quality 223-224 (22%)', '5869e4a9592a7900e740b09fe19261a1:11' => 'Apple QuickTime, Quality 225 (22%)', 'ebd575cf069eb906d2f2b2e202f67247:11' => 'Apple QuickTime, Quality 226-227 (22%)', '7ed52852c280b97fd44def8434d84051:11' => 'Apple QuickTime, Quality 228-229 (22%)', '984d291debac8a0caeaccccea5fbfbdf:11' => 'Apple QuickTime, Quality 230 (22%)', '9b2247e0f55b4485e7c55a04ee6a801c:11' => 'Apple QuickTime, Quality 231-232 (23%)', 'd2a1887cf45aecd63d838e585dbb5794:11' => 'Apple QuickTime, Quality 233-234 (23%)', '6bb5ab15f80beebcb73fae0ef089fa61:11' => 'Apple QuickTime, Quality 235 (23%)', '281f65a19e5de33d9ff5f3afeda06973:11' => 'Apple QuickTime, Quality 236-237 (23%)', '563f732877b2c654d571c269bbb36a40:11' => 'Apple QuickTime, Quality 238 (23%)', 'fa11118bb9f90b1464e34c785d0da357:11' => 'Apple QuickTime, Quality 239-240 (23%)', '8dc4cff27c3c5196b4bc8905ef32f119:11' => 'Apple QuickTime, Quality 241 (24%)', '2ac28889e4ad4724d49f8b4c36b0cece:11' => 'Apple QuickTime, Quality 242-243 (24%)', '5cbeb8f83a47b6a5e8711fe0ea7c42d7:11' => 'Apple QuickTime, Quality 244 (24%)', 'd5d329f5687d154e4ceeb48697b848ba:11' => 'Apple QuickTime, Quality 245-246 (24%)', 'd3eaad34ae4fc8a3ac6330c1c9dceb28:11' => 'Apple QuickTime, Quality 247 (24%)', '29b74834ce7570b9c175d0200e75316e:11' => 'Apple QuickTime, Quality 248-249 (24%)', '850f2b2aaa99ad390bc9443be1b587dc:11' => 'Apple QuickTime, Quality 250 (24%)', '036d2395718f99bf916486e1af42cb92:11' => 'Apple QuickTime, Quality 251 (25%)', 'e9275719ef4cb335f9dfed63c3737f0e:11' => 'Apple QuickTime, Quality 252-253 (25%)', 'dfcbd3df5c6b96106e6348b77f89c56a:11' => 'Apple QuickTime, Quality 254 (25%)', 'f9ef906cd67c9f9b62514a6ac1f8bd3f:11' => 'Apple QuickTime, Quality 255 (25%)', '469d14cef27dbb7c1f6f49324c077852:11' => 'Apple QuickTime, Quality 256-257 (25%)', '65d7471a913f6cc87e9dc65ea594606b:11' => 'Apple QuickTime, Quality 258 (25%)', '6b590185b5d6ecbc1d79c2624a0d5319:11' => 'Apple QuickTime, Quality 259 (25%)', 'fbf3d8d87f68077aa95e5e40047c1607:11' => 'Apple QuickTime, Quality 260-261 (25%)', '7e3999424de8a8f6bb84e3cfc07628e8:11' => 'Apple QuickTime, Quality 262 (26%)', '6c0476ba4b3fcc4675cfab20d3c96368:11' => 'Apple QuickTime, Quality 263 (26%)', '0bb76dd0e08175a90343a9c7dab48bfa:11' => 'Apple QuickTime, Quality 264-265 (26%)', '83c8ceab43dedde06d8068e5b8ccdc2b:11' => 'Apple QuickTime, Quality 266 (26%)', '5aee693372b77c9721dba9d3596e371c:11' => 'Apple QuickTime, Quality 267 (26%)', '1312bc5c7456856400f43749d407fb9f:11' => 'Apple QuickTime, Quality 268 (26%)', '3f01645e33791ef09fbeb6c0e63db6a9:11' => 'Apple QuickTime, Quality 269 (26%)', '785c36a6aa2bedd207cb1fa450a5e6d4:11' => 'Apple QuickTime, Quality 270-271 (26%)', '84788c494352a07ab54f360f4a2a3d34:11' => 'Apple QuickTime, Quality 272 (27%)', 'bf29abfdf0086437452e2ca220e69cae:11' => 'Apple QuickTime, Quality 273 (27%)', 'c7da2e951711b8b1314a7c531e09cbdc:11' => 'Apple QuickTime, Quality 274 (27%)', 'fb549f21b7ad3b556bc91165b3067a77:11' => 'Apple QuickTime, Quality 275 (27%)', '0a7497e67acef345c655f79fd00b26de:11' => 'Apple QuickTime, Quality 276 (27%)', '1e2be0dde2c5d2216bca879a3f89c565:11' => 'Apple QuickTime, Quality 277-278 (27%)', 'd09f78b68290ff6b470720ead4d79b15:11' => 'Apple QuickTime, Quality 279 (27%)', '5b54396a8a725e49e9bd4c9883b151df:11' => 'Apple QuickTime, Quality 280 (27%)', 'f60d4afe566a641f0187a42ca6462560:11' => 'Apple QuickTime, Quality 281 (27%)', 'b69090d1ab951e6355ab193b1f20bf48:11' => 'Apple QuickTime, Quality 282 (28%)', '7ce7d00283cada911c3ebc347680bc7d:11' => 'Apple QuickTime, Quality 283 (28%)', '2502314c1b957a0e4f911d17db770a01:11' => 'Apple QuickTime, Quality 284 (28%)', '100f3392aa8292fb78548513a619671a:11' => 'Apple QuickTime, Quality 285 (28%)', 'af683de3118ab595c41b5796b57a9540:11' => 'Apple QuickTime, Quality 286 (28%)', '1228f1572d76b53658f4042bda8e99a2:11' => 'Apple QuickTime, Quality 287 (28%)', 'e9c647b8bf2d7535d259eed6fbabe206:11' => 'Apple QuickTime, Quality 288 (28%)', '9ab0afefad0e6bb7c3c1a8bca0c3f987:11' => 'Apple QuickTime, Quality 289 (28%)', 'b6900aafebce0e59136abb701eacb1e5:11' => 'Apple QuickTime, Quality 290 (28%)', 'a3c40b635e584c8f49d6b6b110846fee:11' => 'Apple QuickTime, Quality 291-292 (28-29%)', '80175a9dbb871d045c738fdeb6fcbdc7:11' => 'Apple QuickTime, Quality 293 (29%)', 'c79231716eff96853fe03a26c1c38120:11' => 'Apple QuickTime, Quality 294 (29%)', '8f96a0f2af7f1f1b0b2d4895bced1326:11' => 'Apple QuickTime, Quality 295 (29%)', 'ba3c103d00719e795b093ac7a75e6fac:11' => 'Apple QuickTime, Quality 296 (29%)', '42fd2864197991a38b3f80374a69d4e9:11' => 'Apple QuickTime, Quality 297 (29%)', '76bc1d777c94b680683610218732eb11:11' => 'Apple QuickTime, Quality 298 (29%)', '8b9e19fe69d7c7e1989018aca76c0aea:11' => 'Apple QuickTime, Quality 299 (29%)', 'd3c0e7437c630f3bed0867737c5f1921:11' => 'Apple QuickTime, Quality 300 (29%)', 'a8ecf55a88fd0e1b29646207aff8c36f:11' => 'Apple QuickTime, Quality 301 (29%)', 'eaffe0714878be5fb67a914f5bb79fef:11' => 'Apple QuickTime, Quality 302 (29%)', 'a6a49ea0300157ecb401ce45d7f1f850:11' => 'Apple QuickTime, Quality 303 (30%)', 'fc28ca358af7cd55dc78853e4288f26d:11' => 'Apple QuickTime, Quality 304 (30%)', '61cb5e93e3e69f6929d97653824733b0:11' => 'Apple QuickTime, Quality 305 (30%)', '2cba6ba1aede8c791ada1acaba8c162e:11' => 'Apple QuickTime, Quality 306 (30%)', 'c1bcc3db9f417dc52595f2bb224e30d7:11' => 'Apple QuickTime, Quality 307 (30%)', '2273274a8d695da4bebff145cbcbafcc:11' => 'Apple QuickTime, Quality 308 (30%)', 'e8bdbff8c7908e36c51e1344c0e99746:11' => 'Apple QuickTime, Quality 309 (30%)', 'ffb8ea8efdb22c5c8256cc4e4008f11c:11' => 'Apple QuickTime, Quality 310 (30%)', 'a1a8f92dc00c42877eb9a1d7462f8408:11' => 'Apple QuickTime, Quality 311 (30%)', '723c2a2de195391f2db06456e9345c5b:11' => 'Apple QuickTime, Quality 312 (30%)', '916225049ab8d411a5e0138ea9087e37:11' => 'Apple QuickTime, Quality 313 (31%)', '3b0315316de45b649bd8ba5b5471ab81:11' => 'Apple QuickTime, Quality 314 (31%)', '6cf948e65c9d32279c757394a4f5b77e:11' => 'Apple QuickTime, Quality 315 (31%)', '4c4b7fc28e54a2bbdccd90d3618f01e8:11' => 'Apple QuickTime, Quality 316 (31%)', '767c20d7d54970b0974f205c790d7d04:11' => 'Apple QuickTime, Quality 317 (31%)', '81c1ce1c7d15394d95eaf2d6bd1495e3:11' => 'Apple QuickTime, Quality 318 (31%)', '6547daee398d39f773742be92ef2d0d0:11' => 'Apple QuickTime, Quality 319 (31%)', '65edf81f975f01a7b3ad1c16a1af64cb:11' => 'Apple QuickTime, Quality 320 (31%)', 'f8948967aeda9fb6ca1637a082ed04db:11' => 'Apple QuickTime, Quality 321 (31%)', '2444e1c407a9965fb5ea2dafd269911f:11' => 'Apple QuickTime, Quality 322-324 (31-32%)', '7c8242581553e818ef243fc680879a19:11' => 'Apple QuickTime, Quality 325 (32%)', 'e2fe91d57078586f15b09e3b9c8cd3fa:11' => 'Apple QuickTime, Quality 326 (32%)', '0740db8af7951c1363f2c8d75462d378:11' => 'Apple QuickTime, Quality 327 (32%)', '3c1ff7ebab192163b4578e7dfcf63ce6:11' => 'Apple QuickTime, Quality 328 (32%)', '705ae76b905302bd9f3b78cc8d1cb28f:11' => 'Apple QuickTime, Quality 329 (32%)', '9438633929a283aac168f415d8ca44d6:11' => 'Apple QuickTime, Quality 330 (32%)', '68799ccfa08e2f55b5be79264d3ca58a:11' => 'Apple QuickTime, Quality 331 (32%)', '9bda57f21c56ea0dc971164b8dc56394:11' => 'Apple QuickTime, Quality 332 (32%)', 'f9988c61ae580fcfc8bf929134b07c2e:11' => 'Apple QuickTime, Quality 333 (33%)', '59faa8c6fb70d4cf42765a92c1c7afc1:11' => 'Apple QuickTime, Quality 334 (33%)', '277982593a55786fe424c80a17224cd7:11' => 'Apple QuickTime, Quality 335 (33%)', 'c2a8a67d050b22a0673ee9ad6685a540:11' => 'Apple QuickTime, Quality 336 (33%)', '040e09f495355470a44c580bca654693:11' => 'Apple QuickTime, Quality 337 (33%)', '93173762094b6b506aa495e022ced65f:11' => 'Apple QuickTime, Quality 338 (33%)', '281c39340554f672ff62c65e0bf1036b:11' => 'Apple QuickTime, Quality 339 (33%)', '82d40afcb23ac10dba01bbab101da176:11' => 'Apple QuickTime, Quality 340 (33%)', 'f56a4679494e5af4692381caa63b9062:11' => 'Apple QuickTime, Quality 341 (33%)', '78787c9f0aae4ab8d15ab47eaea5035c:11' => 'Apple QuickTime, Quality 342 (33%)', 'a1664b510ce4c6aa3588cdbc327a6f57:11' => 'Apple QuickTime, Quality 343 (33%)', 'f6150beda200179d9744527637e52baa:11' => 'Apple QuickTime, Quality 344 (34%)', '620244f053fef313466fbcb232077aca:11' => 'Apple QuickTime, Quality 345 (34%)', '91c1b36d4411306ba3afaea0658f1ad8:11' => 'Apple QuickTime, Quality 346 (34%)', '0381b4e34e700adecd618afdcfb5513e:11' => 'Apple QuickTime, Quality 347 (34%)', '4d8f909ee8cb53e0386eb09c1591099b:11' => 'Apple QuickTime, Quality 348 (34%)', 'f7425d5d0a0207e6dfaa0ee7c35d4ec6:11' => 'Apple QuickTime, Quality 349 (34%)', '8d0663f8149a308365e18bdeb8c867e8:11' => 'Apple QuickTime, Quality 350 (34%)', '4fa58542b5953534072b6dc1085deadf:11' => 'Apple QuickTime, Quality 351 (34%)', '2358594d2a85b48dc0bd03e024dec9bd:11' => 'Apple QuickTime, Quality 352 (34%)', 'b9594c8100236f288cdc01e6488cbc41:11' => 'Apple QuickTime, Quality 353 (34%)', '3542444d51fa859ed5af78a1f5fc4f36:11' => 'Apple QuickTime, Quality 354 (35%)', '7c95c94440f652232530fe4c411be1a2:11' => 'Apple QuickTime, Quality 355 (35%)', '8361a9dbb5d93ad098a0ce2091b0bdf5:11' => 'Apple QuickTime, Quality 356 (35%)', '44c8e4d0d7678034cb206609652ffeef:11' => 'Apple QuickTime, Quality 357 (35%)', '4694896b11fb898106e30fd4ed50cded:11' => 'Apple QuickTime, Quality 358 (35%)', '9ddc6134fe65ea64048fdfd27c82bed7:11' => 'Apple QuickTime, Quality 359 (35%)', 'c60f75f7e09f0454db9cc48392a7eeed:11' => 'Apple QuickTime, Quality 360 (35%)', '151731e5cd38be847f4dad794c023a69:11' => 'Apple QuickTime, Quality 361 (35%)', '0468ecbf6fc1303467adfdcab8edfe6d:11' => 'Apple QuickTime, Quality 362 (35%)', 'debd5adf671e3b907c10155cc910dcc1:11' => 'Apple QuickTime, Quality 363 (35%)', '6385ee79b090ea430190dbe1ee93ddca:11' => 'Apple QuickTime, Quality 364 (36%)', '67ed20f2fe283549dae4ba40860c3777:11' => 'Apple QuickTime, Quality 365 (36%)', 'e168523157ee45551ba30378d597dfd6:11' => 'Apple QuickTime, Quality 366 (36%)', 'd0cbe6c7372724a802d0183c6de66f8b:11' => 'Apple QuickTime, Quality 367 (36%)', '38a1f9d86241eb3b96d5d42bc6587598:11' => 'Apple QuickTime, Quality 368 (36%)', '4dc4b433113acbde9d77a4cbad69bb14:11' => 'Apple QuickTime, Quality 369 (36%)', '186948d91ea43a64f874ebb9dee44564:11' => 'Apple QuickTime, Quality 370 (36%)', '786aa4e46172ac65e10b230f3dcaadb2:11' => 'Apple QuickTime, Quality 371 (36%)', 'ac76c6ebb64c843736fc765a03674d94:11' => 'Apple QuickTime, Quality 372 (36%)', '38a60cdb8033a9f90027895eab0c40ba:11' => 'Apple QuickTime, Quality 373 (36%)', 'ce48f7fb2ba9edee46c3f4839b40ef60:11' => 'Apple QuickTime, Quality 374 (37%)', '7b3058792db9876a86c65ec44c0261b3:11' => 'Apple QuickTime, Quality 375 (37%)', '5e983407295808e244f6bdece469c8be:11' => 'Apple QuickTime, Quality 376 (37%)', '68ff8bfc0e15c93586ef6b4cf347469c:11' => 'Apple QuickTime, Quality 377 (37%)', '9d4a8c44917390e56bca2352a8a4b1be:11' => 'Apple QuickTime, Quality 378 (37%)', '36e7560256c5ffd285a1ca0f6d4bf97d:11' => 'Apple QuickTime, Quality 379 (37%)', 'a88bad671d80cf6a70bd6e37be9c95c9:11' => 'Apple QuickTime, Quality 380 (37%)', '23ab27876006666358e95d9c1104bcd0:11' => 'Apple QuickTime, Quality 381 (37%)', 'b87750acf49940bf1f01f6a134a600b1:11' => 'Apple QuickTime, Quality 382 (37%)', '731fa7404c090db157030e40804604b6:11' => 'Apple QuickTime, Quality 383 (37%)', '442c2664c07af1ec15d86581f43aab0b:11' => 'Apple QuickTime, Quality 384 (38%)', '145c52a48a9b2e954e785c3f8df5c27e:11' => 'Apple QuickTime, Quality 385 (38%)', '55d37ee1e3c8d12a70e67206fa1c9b0c:11' => 'Apple QuickTime, Quality 386 (38%)', '60880ff1f7bfe6a85cd80c2d4582395b:11' => 'Apple QuickTime, Quality 387 (38%)', '85fc5daf51e6cbb04352016c817e5714:11' => 'Apple QuickTime, Quality 388 (38%)', 'd7c835210eec5a8bedb3a18d32cbe066:11' => 'Apple QuickTime, Quality 389 (38%)', '315e7fee22864b37b1b7670957f259fe:11' => 'Apple QuickTime, Quality 390 (38%)', '46dd3917c1473ed0f8fc3f1e6f08416d:11' => 'Apple QuickTime, Quality 391 (38%)', '1e93645e6163af46937c35a18b55c601:11' => 'Apple QuickTime, Quality 392 (38%)', 'ba1a32697c0ae4e76a78f4b5624a8ce0:11' => 'Apple QuickTime, Quality 393 (38%)', '68a0d6250be9df2c05556ff59988c499:11' => 'Apple QuickTime, Quality 394 (38%)', '13b1310840627eddaf435e9feffebebe:11' => 'Apple QuickTime, Quality 395 (39%)', '2e420a34dcf01dab91fd8509d4dbaab5:11' => 'Apple QuickTime, Quality 396 (39%)', 'eef3afec34329517513541a8509b7aab:11' => 'Apple QuickTime, Quality 397 (39%)', '80bdd75a2fc87b5288bc77763481df83:11' => 'Apple QuickTime, Quality 398 (39%)', 'e230e3ac7c740f3e8fe6bc74fff72c10:11' => 'Apple QuickTime, Quality 399 (39%)', '68b07a219cda4b9fc9a8507b788d8230:11' => 'Apple QuickTime, Quality 400 (39%)', 'f1c23475d19d9e950dbc4086902365a3:11' => 'Apple QuickTime, Quality 401 (39%)', 'dc2af4340202aa481491b86539888720:11' => 'Apple QuickTime, Quality 402 (39%)', '495aeee0f43a596938c98c5364feb2ee:11' => 'Apple QuickTime, Quality 403 (39%)', '8319dfe3caedea6988e5024b0196d317:11' => 'Apple QuickTime, Quality 404 (39%)', 'd62cd17e8e04ebd568a8f5abc38cad4a:11' => 'Apple QuickTime, Quality 405 (40%)', '047e1711c44262f352034452d0b0d07b:11' => 'Apple QuickTime, Quality 406 (40%)', '552bf986ae119444955ded5f485d5dc4:11' => 'Apple QuickTime, Quality 407 (40%)', 'd39329b38fdcabe9e1ae5f1b205c825a:11' => 'Apple QuickTime, Quality 408 (40%)', 'bf2904a3e3870a2b4d060e0863530d92:11' => 'Apple QuickTime, Quality 409 (40%)', '1acceb7ae4f9edbb835006d97ca30094:11' => 'Apple QuickTime, Quality 410 (40%)', '5de50c687a6e885634bf16adfd75e6bc:11' => 'Apple QuickTime, Quality 411 (40%)', 'd92c5bba7cfd1bfbb8c662c1a27ca413:11' => 'Apple QuickTime, Quality 412 (40%)', 'cea44b5645cd1dbf469c8ae5600e4ff5:11' => 'Apple QuickTime, Quality 413 (40%)', '5caf3989a757842c716220e4e426bde2:11' => 'Apple QuickTime, Quality 414 (40%)', 'fd2f7a6518c12848a9ecdb1c3beb1fa8:11' => 'Apple QuickTime, Quality 415 (41%)', 'de0547c872fed9c9c75c8fec2fe010e6:11' => 'Apple QuickTime, Quality 416 (41%)', '6cf4dfbe3df89d9728e0f34b7b145223:11' => 'Apple QuickTime, Quality 417 (41%)', 'd94d79b70686d3e2568d61d07e5819eb:11' => 'Apple QuickTime, Quality 418 (41%)', '9ec82f50503769a9bb17e876594833b6:11' => 'Apple QuickTime, Quality 419 (41%)', '4a39b0ae55f0eaa5672f00015cae2d40:11' => 'Apple QuickTime, Quality 420 (41%)', '42bae7ef4a41562b2e98d74248f4f22e:11' => 'Apple QuickTime, Quality 421 (41%)', '8c0ea132cfacf212c518ad297229be34:11' => 'Apple QuickTime, Quality 422 (41%)', 'c1af7f1a3716bef087124306b068605c:11' => 'Apple QuickTime, Quality 423 (41%)', 'd3ea3c519f92dd870fed03f63cabf05e:11' => 'Apple QuickTime, Quality 424 (41%)', '0442196d850319833f27df632e92f064:11' => 'Apple QuickTime, Quality 425 (42%)', '8c372e99fa96d2598e431f8137e47da6:11' => 'Apple QuickTime, Quality 426 (42%)', '9bade640c3fcb807ed1322479f9e7f1c:11' => 'Apple QuickTime, Quality 427 (42%)', '8015ad9fa22d6565ca61ce9979f3663f:11' => 'Apple QuickTime, Quality 428 (42%)', '09a13f94022839a24065b82d5f4ffdbd:11' => 'Apple QuickTime, Quality 429 (42%)', '0e570bc627acaee0962472a1a646816b:11' => 'Apple QuickTime, Quality 430 (42%)', 'be7e7114f08e1775ca9676d2feeeccca:11' => 'Apple QuickTime, Quality 431 (42%)', '44be972c54cd64be7524a133a7395401:11' => 'Apple QuickTime, Quality 432 (42%)', 'b2f7b5e3007387aa22df74e82e916195:11' => 'Apple QuickTime, Quality 433 (42%)', '5c13c8db3a0b590f4fa3ec462b8890c3:11' => 'Apple QuickTime, Quality 434 (42%)', '2733a3cb2e0a2313b74d686437fa3ae2:11' => 'Apple QuickTime, Quality 435 (42%)', '66309175abaa59d6246237a77ce9eb76:11' => 'Apple QuickTime, Quality 436 (43%)', '6a2eb9f07f3c96365a06d91da171e673:11' => 'Apple QuickTime, Quality 437 (43%)', 'e395118c42b6492dd4d9d30754f0a697:11' => 'Apple QuickTime, Quality 438 (43%)', '7a75abc5c5ec8cc0fa43f239ab048c08:11' => 'Apple QuickTime, Quality 439 (43%)', 'c558f3407dc549c902efad68c54920de:11' => 'Apple QuickTime, Quality 440 (43%)', '49cd1849b501868260d8a3b1e96d8625:11' => 'Apple QuickTime, Quality 441 (43%)', 'f7d70cfab7ff888c97078d277fa01307:11' => 'Apple QuickTime, Quality 442 (43%)', 'f06ddea698cebe653bdd0c208c3d8c95:11' => 'Apple QuickTime, Quality 443 (43%)', '73478bb7714d1d2342bbf22c5fdc04d6:11' => 'Apple QuickTime, Quality 444 (43%)', '24406aee81b89ea50881ae71f878d0ec:11' => 'Apple QuickTime, Quality 445 (43%)', 'e3e88302627b6743725cace74ddb17f9:11' => 'Apple QuickTime, Quality 446 (44%)', '3fb9c046dff30dcb4128df984532d6ba:11' => 'Apple QuickTime, Quality 447 (44%)', 'c9a4b04bc8e580608014b6f3111322d7:11' => 'Apple QuickTime, Quality 448 (44%)', '7749ec06b1f1b1be30aa58dbef838d49:11' => 'Apple QuickTime, Quality 449 (44%)', 'c0a54e87a2ef1c163311bcc1abf85214:11' => 'Apple QuickTime, Quality 450 (44%)', 'f20a253d2513f4d8f2cfeea980852820:11' => 'Apple QuickTime, Quality 451 (44%)', '6538fc6f5f1744b40c0b8b5bc7179983:11' => 'Apple QuickTime, Quality 452 (44%)', '68a4a67af696f82bbbb7db15a16c0c46:11' => 'Apple QuickTime, Quality 453 (44%)', 'e477932560b308940ac7439eed9f63da:11' => 'Apple QuickTime, Quality 454 (44%)', 'fd732b0493e7ff16da4bde7faa88e22d:11' => 'Apple QuickTime, Quality 455 (44%)', '61884dc8b93e63c07bb487a6e29d6fb7:11' => 'Apple QuickTime, Quality 456 (45%)', '67515a725833d40535a54b4ef9551e05:11' => 'Apple QuickTime, Quality 457 (45%)', 'cc6bb734b742b0631ab6562a329e1603:11' => 'Apple QuickTime, Quality 458 (45%)', '1801686a97836f690ce3d5523ffcfa9a:11' => 'Apple QuickTime, Quality 459 (45%)', 'f73f690cacd5d4e247f59964ad0f43b9:11' => 'Apple QuickTime, Quality 460 (45%)', '853946ede6a624136546ec5b68ecdc49:11' => 'Apple QuickTime, Quality 461 (45%)', 'f05c48d79edbefdb4d260dc23cf258e6:11' => 'Apple QuickTime, Quality 462 (45%)', '8dc8361e94137f5466c8dd1f9aa06781:11' => 'Apple QuickTime, Quality 463 (45%)', '6c121faf4784a5a93fbf7fff4470dea4:11' => 'Apple QuickTime, Quality 464-465 (45%)', 'd0eaa368737f17f6037757d393a22599:11' => 'Apple QuickTime, Quality 466-467 (46%)', '9c6f5faa1009cafe8bc3060fe18d4b60:11' => 'Apple QuickTime, Quality 468 (46%)', 'ac47d493602dddace7844a9bc962e5ed:11' => 'Apple QuickTime, Quality 469 (46%)', '24784b5651e1790242c01de522a6e05b:11' => 'Apple QuickTime, Quality 470 (46%)', 'adbb56f1f0e0392392f9c7a38351a9ec:11' => 'Apple QuickTime, Quality 471 (46%)', '6e0952a44c37bc2d98dbede4ec429c99:11' => 'Apple QuickTime, Quality 472 (46%)', '20c7942ddec30475a182cb281f12bc03:11' => 'Apple QuickTime, Quality 473 (46%)', '4080277d75b20871d00ebc01ffbdb848:11' => 'Apple QuickTime, Quality 474 (46%)', '4f15f7e4c56e7a75c0fe5454ab7e8f72:11' => 'Apple QuickTime, Quality 475 (46%)', 'ff82adb92189413246aee9a992eb2013:11' => 'Apple QuickTime, Quality 476 (46%)', '16df79eb7c5f062aeebde385fbce1553:11' => 'Apple QuickTime, Quality 477 (47%)', 'df02b0ea9dab7d291950b6cfc65c4bb1:11' => 'Apple QuickTime, Quality 478 (47%)', '4ca8ec2a0c651e0508aab3b153cfee23:11' => 'Apple QuickTime, Quality 479 (47%)', 'bbbae155e558e9d37686ec34bd065a53:11' => 'Apple QuickTime, Quality 480 (47%)', '9bf86a5ec6e5382f214e07364a62b1b3:11' => 'Apple QuickTime, Quality 481 (47%)', '41d873034f29b298d899b48cd321c93f:11' => 'Apple QuickTime, Quality 482 (47%)', '52092035b4e3fd45de3298c4d641385a:11' => 'Apple QuickTime, Quality 483 (47%)', '70e5babe9507bae6725e401a36903070:11' => 'Apple QuickTime, Quality 484 (47%)', '3cfa966dde2536c83c921aa250b978b3:11' => 'Apple QuickTime, Quality 485 (47%)', 'b0144b1d2671d145d29812ebcebd863d:11' => 'Apple QuickTime, Quality 486 (47%)', '2a6a136faaf1f13c2b80dcb4786d90b2:11' => 'Apple QuickTime, Quality 487 (48%)', '3a6eac793d818f378e7b24826c9115cc:11' => 'Apple QuickTime, Quality 488 (48%)', '4a78c6570fc84378e3334bfcd8a5680f:11' => 'Apple QuickTime, Quality 489 (48%)', '0709c0afc0eae932a50903e56ec95ad2:11' => 'Apple QuickTime, Quality 490 (48%)', 'b013b5c9b7bafc9dcad9a1e87fc629ff:11' => 'Apple QuickTime, Quality 491 (48%)', '7cb380e582317b8387037450cc68db5e:11' => 'Apple QuickTime, Quality 492 (48%)', 'f94618c1a011209cb3b060887c7e244e:11' => 'Apple QuickTime, Quality 493 (48%)', '649a90949cab8f45d3ecef78068165d1:11' => 'Apple QuickTime, Quality 494 (48%)', '70e105a22b036f7c1ce0b5d02fa1c34e:11' => 'Apple QuickTime, Quality 495 (48%)', '18c10ea6fe5918e09daf1a3a7a74e678:11' => 'Apple QuickTime, Quality 496 (48%)', '23822cafcc61ce2a52691f1fc963ff18:11' => 'Apple QuickTime, Quality 497 (49%)', '5bb2cf3e6721c2dd8eb3341f9bff4159:11' => 'Apple QuickTime, Quality 498 (49%)', 'e55b5345d9668d1b11b657537f707072:11' => 'Apple QuickTime, Quality 499 (49%)', '4cbebcb06d1003e29429e9d5c9445919:11' => 'Apple QuickTime, Quality 500 (49%)', '916b16f020b2b21e4c8114da8c05d584:11' => 'Apple QuickTime, Quality 501 (49%)', '98abef3366c7f451e44f5c2799e2be6d:11' => 'Apple QuickTime, Quality 502 (49%)', 'f8e99ed03828752f16c51bb8c9887e9e:11' => 'Apple QuickTime, Quality 503 (49%)', 'eef05c558c1aba5cf2891fb13ee07167:11' => 'Apple QuickTime, Quality 504 (49%)', 'cb5fc7927d88ac99f556b2dd7985eaf9:11' => 'Apple QuickTime, Quality 505 (49%)', 'f0e3f635bbcf96654812e8c78b227701:11' => 'Apple QuickTime, Quality 506 (49%)', '234c9cf6d7fe671b52c3ec5a20046ec8:11' => 'Apple QuickTime, Quality 507 (50%)', '9dfcc9ae3baee4bb4ad63abf2f740275:11' => 'Apple QuickTime, Quality 508 (50%)', 'b1f1b6519991ac7696b233dd9b9de6b5:11' => 'Apple QuickTime, Quality 509 (50%)', 'dba2f5203ffecada66a8bf9b1272f1eb:11' => 'Apple QuickTime, Quality 510 (50%)', '367b3d63cddc0cd27e58030c2b8f1aaa:11' => 'Apple QuickTime, Quality 511 (50%)', 'c28ab3fd6480c92028327957228c0a11:11' => 'Apple QuickTime, Quality 512 (50%)', '6bc9ebaf9f3ed62ec8818076f6f81c7f:11' => 'Apple QuickTime, Quality 513 (50%)', '3bbfcd817441d2267a49bf76b48c5f47:11' => 'Apple QuickTime, Quality 514 (50%)', '27e6ed2cecfebe31eb3d66128c926562:11' => 'Apple QuickTime, Quality 515 (50%)', '3cf112c5843f98410599ea2a197e5cf6:11' => 'Apple QuickTime, Quality 516 (50%)', '2821aae8108df4bd98e5eaa451a351d2:11' => 'Apple QuickTime, Quality 517 (50%)', '798f48b6dbe3f1cd7b40b03fae8d2611:11' => 'Apple QuickTime, Quality 518 (51%)', '67a7c8896d03a030b56130e1f9c5caad:11' => 'Apple QuickTime, Quality 519 (51%)', '4bf1b53c292dec3f7cf3c020a3a9d911:11' => 'Apple QuickTime, Quality 520 (51%)', '2bfe0ace876b80be6f601a1703187d94:11' => 'Apple QuickTime, Quality 521 (51%)', '7590bc1a40090163a101bfd28daa3fc2:11' => 'Apple QuickTime, Quality 522 (51%)', '118c7b118b1df404c90cfb1d10cf2a77:11' => 'Apple QuickTime, Quality 523 (51%)', '86cfac24ca9f4ab254f882ad399ea758:11' => 'Apple QuickTime, Quality 524 (51%)', '0268c3e9e3e1c3e6eb25fe0d31940c7f:11' => 'Apple QuickTime, Quality 525 (51%)', '9beb1b7c55129a34c850c359d7263457:11' => 'Apple QuickTime, Quality 526 (51%)', '0cec2c8f96c092bd6e7cf0f7ea294c99:11' => 'Apple QuickTime, Quality 527 (51%)', 'd8c5179c2419775f43e9a7899bacddd7:11' => 'Apple QuickTime, Quality 528 (52%)', '9ce50f6e0b00d2e601f2fcc151abc4d8:11' => 'Apple QuickTime, Quality 529 (52%)', '80db52b1671d32d8bd3126bf1d7db8ec:11' => 'Apple QuickTime, Quality 530 (52%)', 'f3ef06f90579eaf1008e07b94e818a40:11' => 'Apple QuickTime, Quality 531 (52%)', '3c85026793f58eb45141847a27854fe2:11' => 'Apple QuickTime, Quality 532-533 (52%)', 'e3042cbd43d2067ae92e1a8ce3f2c5a1:11' => 'Apple QuickTime, Quality 534 (52%)', 'dd71fdab3d46341a9b6ca0b6c6929d23:11' => 'Apple QuickTime, Quality 535 (52%)', 'a451c79ccddcd543a80e1ce0449dcb0d:11' => 'Apple QuickTime, Quality 536 (52%)', '2da67fe5f0bb3c8b10403295895fb154:11' => 'Apple QuickTime, Quality 537 (52%)', '4f72f3cdc82d433e7f749be8036d4ce0:11' => 'Apple QuickTime, Quality 538 (53%)', 'da29cc9a4d5fd7e0dc36a2dd0c70e84f:11' => 'Apple QuickTime, Quality 539 (53%)', '63f61a0d3c4f1ace8ebe5b6ae23e3f25:11' => 'Apple QuickTime, Quality 540 (53%)', 'fde14219617069bbf6b26dcb42036de7:11' => 'Apple QuickTime, Quality 541 (53%)', 'c84313bc621c6d05999510fa57c56d05:11' => 'Apple QuickTime, Quality 542 (53%)', '92658d4c879d6e48bfda1a6e9f49ef8d:11' => 'Apple QuickTime, Quality 543 (53%)', '3deffd01a1c03929873dddd86a5339f1:11' => 'Apple QuickTime, Quality 544 (53%)', 'e76c1b26bbd196efe2e793e27727704d:11' => 'Apple QuickTime, Quality 545 (53%)', '9f3289994c790a10ecb2d93021677840:11' => 'Apple QuickTime, Quality 546 (53%)', 'f7493b01895b7880c651841c73678d33:11' => 'Apple QuickTime, Quality 547 (53%)', '3c9d094741c995c2c0ac9daf14c4e683:11' => 'Apple QuickTime, Quality 548 (54%)', '8c0e1d4cd6138817963af6ca149cb5d5:11' => 'Apple QuickTime, Quality 549 (54%)', 'd781cc6f686fc7c7b9b6eef90fab4d87:11' => 'Apple QuickTime, Quality 550 (54%)', '7dd6377a907070b1ca7e05f770ca2aab:11' => 'Apple QuickTime, Quality 551-552 (54%)', 'c2d5e2e93ec191015d8181c9e25387d8:11' => 'Apple QuickTime, Quality 553 (54%)', '65d20361f4ba0725cf150c7ae2033776:11' => 'Apple QuickTime, Quality 554 (54%)', '2d7eb8eb9df9f4831a843626f4fc7e19:11' => 'Apple QuickTime, Quality 555 (54%)', 'ce0e14187fec73f57242becd633a89a3:11' => 'Apple QuickTime, Quality 556 (54%)', '140cc5a99ef865e318a217ea069aa84d:11' => 'Apple QuickTime, Quality 557 (54%)', '0db59bd18beb49f9beb901f3435e22a5:11' => 'Apple QuickTime, Quality 558 (54%)', '78d19da8de8095644aa31fb409033fe7:11' => 'Apple QuickTime, Quality 559 (55%)', '00687c4e4852ed1cd446c09a3764e505:11' => 'Apple QuickTime, Quality 560 (55%)', 'f3795398903c82e1beababf95d3a8413:11' => 'Apple QuickTime, Quality 561 (55%)', 'b749b90354443bf17da7a67a5ad53397:11' => 'Apple QuickTime, Quality 562 (55%)', 'c722656df4bb0651821cd90880953a20:11' => 'Apple QuickTime, Quality 563 (55%)', '4d17c873e65b9d398f27735b0020c777:11' => 'Apple QuickTime, Quality 564 (55%)', '067a76c2e5386ae85f9187e3e2134621:11' => 'Apple QuickTime, Quality 565 (55%)', '09b689f7d0c1d4bb0d96d06c02b8dcf8:11' => 'Apple QuickTime, Quality 566 (55%)', 'ffc0192eb5a182370a641cffe9b1d71f:11' => 'Apple QuickTime, Quality 567 (55%)', '3af2163438180050bbcf123d4f4587d3:11' => 'Apple QuickTime, Quality 568 (55%)', '3bdb097a9791f3ce6d7bbc4d6a194aa4:11' => 'Apple QuickTime, Quality 569 (56%)', '8c1fead15819016583650eff5a4f5bda:11' => 'Apple QuickTime, Quality 570 (56%)', '967aeb5bc4d75a0d5c0998bbfb282982:11' => 'Apple QuickTime, Quality 571 (56%)', 'cdd7bd689f14d5f7c3ea790f6f09ae64:11' => 'Apple QuickTime, Quality 572 (56%)', '6a20041beb5b67d38525bb7507ffeb49:11' => 'Apple QuickTime, Quality 573 (56%)', '2bf57fbe54370c4d917f259631af033e:11' => 'Apple QuickTime, Quality 574 (56%)', 'd2e983c44eae2983f48f526992fbbfb4:11' => 'Apple QuickTime, Quality 575 (56%)', 'c5bb48d86e26ac496bb4b4bc888cc06a:11' => 'Apple QuickTime, Quality 576 (56%)', 'a595c40b5dbd45557c3c8d23ebee5e24:11' => 'Apple QuickTime, Quality 577 (56%)', 'f2d84e1114ef85682818b96720d439b5:11' => 'Apple QuickTime, Quality 578 (56%)', '332d9c49c5b32ae2addbb06a1e32fd49:11' => 'Apple QuickTime, Quality 579 (57%)', '19c5c7c0270bd36c49f695475a62c293:11' => 'Apple QuickTime, Quality 580 (57%)', '6516e60b3995e21b6750ebca1ddcfee5:11' => 'Apple QuickTime, Quality 581 (57%)', '8daf4a87b28106876529a549cf1040b8:11' => 'Apple QuickTime, Quality 582 (57%)', '6b37d6acc52259bf972a41e84dea7754:11' => 'Apple QuickTime, Quality 583 (57%)', '588666e111892f10ca3f17bc362d9276:11' => 'Apple QuickTime, Quality 584 (57%)', '9ec2859c370f557783903608748e7fb1:11' => 'Apple QuickTime, Quality 585 (57%)', '18e3ac85da74fe92ab5da3d5f7614e09:11' => 'Apple QuickTime, Quality 586 (57%)', 'da4c88f145393972fbe9d3f40838cab9:11' => 'Apple QuickTime, Quality 587 (57%)', '8ae7d2b569c437904a20a10bbd21fe89:11' => 'Apple QuickTime, Quality 588 (57%)', 'fc6dfb9669566b249cb03228aeb020c3:11' => 'Apple QuickTime, Quality 589 (58%)', '198f3a32e4036d7c37fbc0c343d883af:11' => 'Apple QuickTime, Quality 590 (58%)', '876ec039f82e49b925b232843b4703d4:11' => 'Apple QuickTime, Quality 591 (58%)', '673b05962b8255cbc9bdbbc48965b4b7:11' => 'Apple QuickTime, Quality 592 (58%)', '02e9a58edf45d75be000dee144316c66:11' => 'Apple QuickTime, Quality 593 (58%)', '2abebf7a61009c5c1aa9516539b9084e:11' => 'Apple QuickTime, Quality 594 (58%)', 'fe44d8625d6242f4b5deb82be8ccaacf:11' => 'Apple QuickTime, Quality 595 (58%)', '66529cc8ef9694e6a37e8787d0f160fd:11' => 'Apple QuickTime, Quality 596 (58%)', '2129ee2bff47bfa8a8bb79ea9fb67b92:11' => 'Apple QuickTime, Quality 597 (58%)', 'ccb55ec1549a51212859495e104c626b:11' => 'Apple QuickTime, Quality 598 (58%)', '05e53fb216ba4a1734eefaccd249d8e2:11' => 'Apple QuickTime, Quality 599 (58%)', 'f4923d7b7dedd365646169e720eee427:11' => 'Apple QuickTime, Quality 600 (59%)', 'c0f2265630bdf5f29e8c95df25c89edb:11' => 'Apple QuickTime, Quality 601 (59%)', '0fdd23e8274090da3c925a3db7303adf:11' => 'Apple QuickTime, Quality 602 (59%)', 'a5bcbd80472fdf697db770ac78d6a4e3:11' => 'Apple QuickTime, Quality 603 (59%)', 'b157c4aabba2816f391c8f76ca3d4072:11' => 'Apple QuickTime, Quality 604 (59%)', 'b8ef26dabc2d81a8ba13b1f49ea711d3:11' => 'Apple QuickTime, Quality 605 (59%)', '8a983844f9b0aec26fc8ac75a258e3ac:11' => 'Apple QuickTime, Quality 606 (59%)', '44ced96f11e3a410201beed353a864cf:11' => 'Apple QuickTime, Quality 607 (59%)', '4a14a3e37c89e5a7570f672b1970ca55:11' => 'Apple QuickTime, Quality 608 (59%)', 'e5ec78e112e3ba6463de24b3518347eb:11' => 'Apple QuickTime, Quality 609 (59%)', '29b7cdc7a570b950457d20541c22c4ce:11' => 'Apple QuickTime, Quality 610 (60%)', '470c0c761e2bb5e314a7112f3d64b277:11' => 'Apple QuickTime, Quality 611 (60%)', 'ced483058f2abf19df0f7935dafd217a:11' => 'Apple QuickTime, Quality 612 (60%)', '8a202c89c57e77f50e1df27a3be7d5b7:11' => 'Apple QuickTime, Quality 613 (60%)', '7eb9fe0338a7b802860a60e0088418fd:11' => 'Apple QuickTime, Quality 614 (60%)', 'ac25112c596d62f95518af109457975c:11' => 'Apple QuickTime, Quality 615 (60%)', 'f57e9a5f1d8dea7fd83a1b5840243686:11' => 'Apple QuickTime, Quality 616-617 (60%)', '0eef5c6ff8ba65ff799081a9c96a2297:11' => 'Apple QuickTime, Quality 618-619 (60%)', '05f98e12bfa14ba6347fb43f2241ba43:11' => 'Apple QuickTime, Quality 620 (61%)', '91885755c780ebe16b1278a0359eda83:11' => 'Apple QuickTime, Quality 621 (61%)', 'b44cb1ca15fc9e3a27420df2ddae5879:11' => 'Apple QuickTime, Quality 622 (61%)', 'ae6c2112dd560530b7bacc8bfa9fb7f6:11' => 'Apple QuickTime, Quality 623 (61%)', 'd3b05f3cd78e0ac3ab37a02152e22831:11' => 'Apple QuickTime, Quality 624 (61%)', 'b0c2c3f76d848ee2e8f47a9a90131a21:11' => 'Apple QuickTime, Quality 625 (61%)', '752fbc15f77a8c2149f5ae6bf49204b8:11' => 'Apple QuickTime, Quality 626 (61%)', '9c34d3dedfe47d95edabdcbc5568a2a8:11' => 'Apple QuickTime, Quality 627 (61%)', '252ba8a31aeb601e23b3a70f9af7abc1:11' => 'Apple QuickTime, Quality 628 (61%)', '359038cd7c45242e96e176e91210922d:11' => 'Apple QuickTime, Quality 629 (61%)', '8ab83dc2e7ca8b9db1f3b0ab500f3aca:11' => 'Apple QuickTime, Quality 630 (62%)', '21c9f9a0ff71d4528ef7a19d2cfd0b6c:11' => 'Apple QuickTime, Quality 631 (62%)', 'a62fb887c209e0fab99fcb7ac81137a2:11' => 'Apple QuickTime, Quality 632 (62%)', 'e454ca92aca849d59b873d9be817baea:11' => 'Apple QuickTime, Quality 633 (62%)', '9ad6008e7b4f8478043bfa54e1d9e48e:11' => 'Apple QuickTime, Quality 634 (62%)', '45b20f0b0d7d88d8330354212af2e087:11' => 'Apple QuickTime, Quality 635 (62%)', 'b0a00ffee2e55457cd999bba2d07f63e:11' => 'Apple QuickTime, Quality 636 (62%)', '5dfcb96d9a1186f662c6adb38bb9520a:11' => 'Apple QuickTime, Quality 637 (62%)', 'd973f38c501796adff40c4f70cbd8885:11' => 'Apple QuickTime, Quality 638 (62%)', 'dcfe5898ec101a8b2bf98330445dd1bf:11' => 'Apple QuickTime, Quality 639 (62%)', '2b81eecf0fecd33679adac27e79ef3f4:11' => 'Apple QuickTime, Quality 640-641 (63%)', '5aad44c55bf4f6dc538eaca006cafac2:11' => 'Apple QuickTime, Quality 642 (63%)', '7079c2d71ff33e7c4e8efdece23c307b:11' => 'Apple QuickTime, Quality 643 (63%)', 'a5f724e9d7148f1a84ee597f45c33141:11' => 'Apple QuickTime, Quality 644 (63%)', '3ae705fae9e895eda345d482525215e3:11' => 'Apple QuickTime, Quality 645 (63%)', '7cbd635e5fee8bbd290b0d383b03da5a:11' => 'Apple QuickTime, Quality 646 (63%)', '0f125e2c5ee6b123cf67b586ea23d422:11' => 'Apple QuickTime, Quality 647 (63%)', '87eac5c1375cca9aa16eba0704616a7b:11' => 'Apple QuickTime, Quality 648-649 (63%)', 'aa83fd556c569ddcd81e0cc1ba866373:11' => 'Apple QuickTime, Quality 650 (63%)', 'dab4fa97da49aa37889185c5b43917c1:11' => 'Apple QuickTime, Quality 651 (64%)', '51ad55cb254f36748123ca83f43556f4:11' => 'Apple QuickTime, Quality 652 (64%)', '86e707c017682fe08213216d064b1b51:11' => 'Apple QuickTime, Quality 653 (64%)', '3730182602996b4a1d540eb3fd970072:11' => 'Apple QuickTime, Quality 654 (64%)', '1bf7a5d7477ad75b9c7b281de622d53b:11' => 'Apple QuickTime, Quality 655 (64%)', '82b4bc7c4a832b620e810311a33c9771:11' => 'Apple QuickTime, Quality 656 (64%)', '6502d634e5bf3f849e9d382886fc32fe:11' => 'Apple QuickTime, Quality 657 (64%)', 'a10e87fa030f8177a4f59f8d16a20afd:11' => 'Apple QuickTime, Quality 658 (64%)', '338a78a7658ff3c1de33d88aa0ab7c74:11' => 'Apple QuickTime, Quality 659 (64%)', '4c30c4399ef4bb2920601d940ed404eb:11' => 'Apple QuickTime, Quality 660-661 (64-65%)', 'ab7cfb73667875854893982a8cfcfab9:11' => 'Apple QuickTime, Quality 662 (65%)', '7bff346b97abf46ca005af4e74b560fa:11' => 'Apple QuickTime, Quality 663 (65%)', '2eae93ed601a50284ee31c20651584cb:11' => 'Apple QuickTime, Quality 664 (65%)', 'e566eaef7eacd6c7161feebf4cec79e8:11' => 'Apple QuickTime, Quality 665 (65%)', 'a9f461d3bca42dfab57c834fa5f34419:11' => 'Apple QuickTime, Quality 666 (65%)', '2b394105d4dd418e79b32e66496679d4:11' => 'Apple QuickTime, Quality 667 (65%)', 'c65677d79e37baf57767e10d7b7f1ce8:11' => 'Apple QuickTime, Quality 668 (65%)', '688c7dca6b12c22a21e0caf1a0336c80:11' => 'Apple QuickTime, Quality 669-671 (65-66%)', '20d4b3c9e3c292c68181974704fe5048:11' => 'Apple QuickTime, Quality 672-673 (66%)', '3bc3948025869f25b143aa517b2154ac:11' => 'Apple QuickTime, Quality 674 (66%)', '8a2ae82991917070de49cc48d104446f:11' => 'Apple QuickTime, Quality 675 (66%)', 'b5424d9dce37dd5c9e0e38bcc775f48e:11' => 'Apple QuickTime, Quality 676 (66%)', '28f718af4edb0069a1fdab00f6ea978d:11' => 'Apple QuickTime, Quality 677 (66%)', '910416483a49503202cbe3ecee33afc9:11' => 'Apple QuickTime, Quality 678 (66%)', '153196d4f99569f9bbd3fe0e96d2909c:11' => 'Apple QuickTime, Quality 679 (66%)', '919a38ebb9fc0bcba388643a9b3ef27c:11' => 'Apple QuickTime, Quality 680 (66%)', 'ef511ac2c9d7153c16e3e1846325b727:11' => 'Apple QuickTime, Quality 681 (67%)', 'e8b4ef8f94d89c59c855758a73ec451f:11' => 'Apple QuickTime, Quality 682 (67%)', 'a09fe2e60a7ff12e1e5ca00afa9719ef:11' => 'Apple QuickTime, Quality 683 (67%)', 'e56cf84423c16869a9a4fd6605b15ba4:11' => 'Apple QuickTime, Quality 684 (67%)', 'f64d88456f97a65fe562eb69e619782a:11' => 'Apple QuickTime, Quality 685 (67%)', '8cbf6cda8ae0249fb91c1ff5ab788a04:11' => 'Apple QuickTime, Quality 686 (67%)', 'f0ebdd8d44ac1a80727041a087553847:11' => 'Apple QuickTime, Quality 687 (67%)', 'c8f917220d6285cda6428a2cf6a9a1b3:11' => 'Apple QuickTime, Quality 688-689 (67%)', '83ff61ebceff5f888b9615b250aa7b76:11' => 'Apple QuickTime, Quality 690 (67%)', 'a2d1de53a0882047287a954f86bc783d:11' => 'Apple QuickTime, Quality 691 (67%)', 'c78717ac2705274888912f349eeb2c8e:11' => 'Apple QuickTime, Quality 692 (68%)', 'e032225ecdcf1d91d85626df59a2d0c6:11' => 'Apple QuickTime, Quality 693 (68%)', 'ebf82c50697d66a6913727095299f192:11' => 'Apple QuickTime, Quality 694-695 (68%)', 'bcc29022955cc7532b08640ab118259c:11' => 'Apple QuickTime, Quality 696 (68%)', '6a87dd29703c2b3ef80f1b5d2cc8d26a:11' => 'Apple QuickTime, Quality 697 (68%)', '91c9d96e11d96e10b328a5f18960247b:11' => 'Apple QuickTime, Quality 698 (68%)', '6eeaaacec8edc933b68602b01d16204e:11' => 'Apple QuickTime, Quality 699 (68%)', 'c638d9151dc650993b56f4effc0fe19c:11' => 'Apple QuickTime, Quality 700 (68%)', 'c67d246229fcc0dd1b974f7df556d247:11' => 'Apple QuickTime, Quality 701 (68%)', '7a52e3960831057d58e9b1ba03b87cf3:11' => 'Apple QuickTime, Quality 702 (69%)', '907e599e3c462b498e936dfc35b20bb9:11' => 'Apple QuickTime, Quality 703-704 (69%)', '65bf1ddc176fe4002a7a2ecaac60e58c:11' => 'Apple QuickTime, Quality 705 (69%)', '40e59fdb430180502ceacf7b4034eff8:11' => 'Apple QuickTime, Quality 706 (69%)', '4205aec34791d70be03b90ab1e54ef8c:11' => 'Apple QuickTime, Quality 707 (69%)', '5c0a83e613d3bdd9ec7e86983f75b5be:11' => 'Apple QuickTime, Quality 708 (69%)', 'b3ebdf0376c9c48cca51ea8b550f6c51:11' => 'Apple QuickTime, Quality 709 (69%)', '72161116404ed3cb449674760d0e4776:11' => 'Apple QuickTime, Quality 710 (69%)', '35b3697c265e35185e9463aac6ce9b2d:11' => 'Apple QuickTime, Quality 711-712 (69-70%)', '85adcc8c52c25334a9e7ea9d79433f8d:11' => 'Apple QuickTime, Quality 713 (70%)', '8f72f67948f264bdbd33107c33b1e0a0:11' => 'Apple QuickTime, Quality 714 (70%)', 'c25ed5069735a3f9677ee494108a52bc:11' => 'Apple QuickTime, Quality 715 (70%)', 'fd3167b1cdcfa1bdd37a4841d37b1624:11' => 'Apple QuickTime, Quality 716-717 (70%)', 'a02b6b8286cf6d036961911e98bd8f89:11' => 'Apple QuickTime, Quality 718-719 (70%)', 'd876e8934da14a985abda0ebe722bbee:11' => 'Apple QuickTime, Quality 720 (70%)', '31852b7659883eade6e273ac61ef0262:11' => 'Apple QuickTime, Quality 721 (70%)', 'de3aa6ed96eaf3ed3cd3ea70a2f75002:11' => 'Apple QuickTime, Quality 722 (71%)', 'f178977e9e0133711f395943816d26aa:11' => 'Apple QuickTime, Quality 723 (71%)', '18fce3103e312ce26252ec4af6cd1350:11' => 'Apple QuickTime, Quality 724 (71%)', 'fdf6b04a2d8ac06d3fe64d1dceba4cd9:11' => 'Apple QuickTime, Quality 725 (71%)', '6a37c2572bb47dff514aa4b343c104b5:11' => 'Apple QuickTime, Quality 726 (71%)', 'fdbe851f6e559bc17ce3610b91e7fead:11' => 'Apple QuickTime, Quality 727 (71%)', '9fee7fc42e670d6e30a5e9fcf696241d:11' => 'Apple QuickTime, Quality 728 (71%)', '5aedf3816a813ed63b0521b0c384a677:11' => 'Apple QuickTime, Quality 729 (71%)', 'c1278992838bdd62e71bf41c20126a5f:11' => 'Apple QuickTime, Quality 730 (71%)', '791e3897f6ac92fb5e708b28dbd361b1:11' => 'Apple QuickTime, Quality 731 (71%)', 'd5b2902ae3fcd87e1521da86585e7b3a:11' => 'Apple QuickTime, Quality 732-733 (71-72%)', 'a99810db58e835fe4b213d707dc0b754:11' => 'Apple QuickTime, Quality 734 (72%)', 'e8032085aa55f664f7f74201ac10bb99:11' => 'Apple QuickTime, Quality 735 (72%)', '488e5d04f779b15c53f76e67cccdb2ed:11' => 'Apple QuickTime, Quality 736 (72%)', '548a841c0a8c3b2beeb134c6c3b922fc:11' => 'Apple QuickTime, Quality 737-738 (72%)', 'cfe4549eb2dd81684920aa32b598260c:11' => 'Apple QuickTime, Quality 739-740 (72%)', 'b6ff9215f87e4b053aaee36381f59005:11' => 'Apple QuickTime, Quality 741 (72%)', 'd1c8c1e1fc2bfb776d2ee1aace3fc6f9:11' => 'Apple QuickTime, Quality 742 (72%)', '365693ebd558aebc31a79a1abff9709d:11' => 'Apple QuickTime, Quality 743-744 (73%)', '0233ba670d2891e75da3ce5e7664cb67:11' => 'Apple QuickTime, Quality 745 (73%)', 'a91f5f8e8d743e52169d965992c5021e:11' => 'Apple QuickTime, Quality 746 (73%)', '1a0487e7e1a8f4ade97b2e8a4cab46ec:11' => 'Apple QuickTime, Quality 747 (73%)', '5a2311c438c7183f6cd1f45c10e5783a:11' => 'Apple QuickTime, Quality 748 (73%)', '2750f3df7a97d6007d6a17f5dd27790a:11' => 'Apple QuickTime, Quality 749 (73%)', '74fddf6faaf251b28a00b4d0cd9e5621:11' => 'Apple QuickTime, Quality 750 (73%)', 'ea65bdd87f78f7507fe6098473cbe0c9:11' => 'Apple QuickTime, Quality 751 (73%)', '26d087368a13e3aca9ca13a54bcc648f:11' => 'Apple QuickTime, Quality 752-753 (73-74%)', '5664c6ca557bc75526f59bea6aebde51:11' => 'Apple QuickTime, Quality 754 (74%)', 'ff7a6007b6aab26f3c72c715ce487d72:11' => 'Apple QuickTime, Quality 755 (74%)', '912804912a3914f0b470b29495810d8c:11' => 'Apple QuickTime, Quality 756-758 (74%)', '6537be61d21f1b6ded3253fdd84f599b:11' => 'Apple QuickTime, Quality 759-760 (74%)', '72d947637340246a35ff3ee969fd613f:11' => 'Apple QuickTime, Quality 761 (74%)', '8c5c788bd53945222fc98f1a6155004c:11' => 'Apple QuickTime, Quality 762 (74%)', '9fa9c3d1041911322544aef0298695ba:11' => 'Apple QuickTime, Quality 763 (75%)', '33113dc71a90e8db06b43dadfe36b020:11' => 'Apple QuickTime, Quality 764 (75%)', '55e0cf02a898abf8e224e2e9cf6e6ca5:11' => 'Apple QuickTime, Quality 765-766 (75%)', '4f00127e7931d668a7b472c8a669925a:11' => 'Apple QuickTime, Quality 767-768 (75%)', '32aa33dc6de46b7c5c5948b0ae06cb0e:11' => 'Apple QuickTime, Quality 769 (75%)', 'a2b6067d9e5731be8029e17c00d7e043:11' => 'Apple QuickTime, Quality 770 (75%)', 'cb6bc96131c4a5f762b5e5f79e7c4b66:11' => 'Apple QuickTime, Quality 771 (75%)', 'e582a5f93f66cf34facfba5918a1d9e2:11' => 'Apple QuickTime, Quality 772 (75%)', '54ab2e8fbd7c4ecac9eba5fb02a5ccd9:11' => 'Apple QuickTime, Quality 773 (75%)', 'c71131cb485b59faf920d11982f7d454:11' => 'Apple QuickTime, Quality 774 (76%)', 'c18239304e22bd19e3c8a21f9875ba39:11' => 'Apple QuickTime, Quality 775-776 (76%)', '8278e4f14c7bf6efd2a847ef40f392e3:11' => 'Apple QuickTime, Quality 777 (76%)', '6c0e396c705a59ec610a22f11466621b:11' => 'Apple QuickTime, Quality 778 (76%)', 'a0c4d0114c04c89c879d9dc03463b347:11' => 'Apple QuickTime, Quality 779 (76%)', 'c804929d3963c7427fa143e0d1e8c94e:11' => 'Apple QuickTime, Quality 780-781 (76%)', 'e331a0dd2c53616c2881bb381fc4c1e2:11' => 'Apple QuickTime, Quality 782 (76%)', '24ec8f0996e5e8d4dd7019d2b6063290:11' => 'Apple QuickTime, Quality 783 (76%)', '36e9cb02d3ef245a3e15272c5071b0ee:11' => 'Apple QuickTime, Quality 784 (77%)', 'b691578c1d6b16687fe2df12843d0642:11' => 'Apple QuickTime, Quality 785-786 (77%)', 'ecbf939a145939d5aa48fc3c9e19cfe8:11' => 'Apple QuickTime, Quality 787 (77%)', '9440b11ee5eb970a3ea6de9353099761:11' => 'Apple QuickTime, Quality 788 (77%)', '282914c43bab6e5c62f3caaf549f1510:11' => 'Apple QuickTime, Quality 789-790 (77%)', '040c8ed8b19485d8677b964b03bc9929:11' => 'Apple QuickTime, Quality 791-792 (77%)', 'd9e503dc2dd4f6493be988ecb0f44f2c:11' => 'Apple QuickTime, Quality 793-795 (77-78%)', '64d056c9e5e558d6c04d07d9d21aa7a3:11' => 'Apple QuickTime, Quality 796-798 (78%)', '498f446de17202060a4752434df1ed7b:11' => 'Apple QuickTime, Quality 799 (78%)', '5519e1c07692f51d0ee421ede78fb907:11' => 'Apple QuickTime, Quality 800 (78%)', '511c5bddc18566a2544732291920caf3:11' => 'Apple QuickTime, Quality 801 (78%)', '659f7466f80a8034f74a00ba07b8c3fb:11' => 'Apple QuickTime, Quality 802-804 (78-79%)', 'fb64b35fe4021c34f16cf5bb1e59c0e8:11' => 'Apple QuickTime, Quality 805 (79%)', '54fcb6649f5ba51c32c68970797e41ea:11' => 'Apple QuickTime, Quality 806-807 (79%)', '80ef22ca4475af1bbb8963ac511144d7:11' => 'Apple QuickTime, Quality 808 (79%)', 'ccdf1a403ec068ad21ee78686a86dd10:11' => 'Apple QuickTime, Quality 809 (79%)', '1487f0cfc64949393aee2eab71b6b72c:11' => 'Apple QuickTime, Quality 810 (79%)', 'a8be3b3791e958d092b3e37286802e0c:11' => 'Apple QuickTime, Quality 811-813 (79%)', 'f9176b3ef0b4038c6c52b30ba033eb7f:11' => 'Apple QuickTime, Quality 814 (79%)', '60264e35250325032bf7866ca8beaf58:11' => 'Apple QuickTime, Quality 815 (80%)', '5efe038d405e029badcea4c8ee2bfc88:11' => 'Apple QuickTime, Quality 816 (80%)', '717cbe19ae1dc9f72c86ef518aefea16:11' => 'Apple QuickTime, Quality 817 (80%)', '9f490145dcc00db3e57014d41d2f99f2:11' => 'Apple QuickTime, Quality 818 (80%)', '120b93a6ab4a1e8c78578e86e3ef837f:11' => 'Apple QuickTime, Quality 819 (80%)', '9d765f3947408b2c6f26163d7b072895:11' => 'Apple QuickTime, Quality 820 (80%)', 'a9c018e06868989776a81650300bcfce:11' => 'Apple QuickTime, Quality 821 (80%)', '2c6581e20fa5393b3dd4d58f0df01957:11' => 'Apple QuickTime, Quality 822-824 (80%)', '925b6581f0ae2f288530b00168152b80:11' => 'Apple QuickTime, Quality 825 (81%)', 'c94e09eec2df4a41b2806c23d9939cb6:11' => 'Apple QuickTime, Quality 826 (81%)', '68d5ce8ce1a9e337ee9630dadad0650e:11' => 'Apple QuickTime, Quality 827-829 (81%)', 'f73704219e174961963f0fcd832b09a8:11' => 'Apple QuickTime, Quality 830-832 (81%)', 'b783df92ec8a787b1eae4e05888b184b:11' => 'Apple QuickTime, Quality 833-834 (81%)', '55cd2cad99821382b1bd78355980b1d1:11' => 'Apple QuickTime, Quality 835 (82%)', '9ebd96ea70c2bcf4f377a175c71baf2c:11' => 'Apple QuickTime, Quality 836 (82%)', '12d303b2e6a467b4f20a34e695f9da7e:11' => 'Apple QuickTime, Quality 837 (82%)', '8711d6e1c56049c0e643bc6cf19a735c:11' => 'Apple QuickTime, Quality 838-839 (82%)', '88558d6e9a513ff713945bd60ed19cc7:11' => 'Apple QuickTime, Quality 840 (82%)', '25b45d6c1668613a61b81c6b60fa158a:11' => 'Apple QuickTime, Quality 841 (82%)', 'b2f95d6a0eec4de39e0964a3b7303e9f:11' => 'Apple QuickTime, Quality 842 (82%)', '631548841b70e871ee16009737dd4b9c:11' => 'Apple QuickTime, Quality 843-844 (82%)', '7fac641c5b795e68ca8cfae4466a19c7:11' => 'Apple QuickTime, Quality 845 (83%)', 'a15a74418a924874c5f3d2ca20e7af90:11' => 'Apple QuickTime, Quality 846-849 (83%)', 'e4d76c3cd4d36b72537a2234a3597933:11' => 'Apple QuickTime, Quality 850 (83%)', '36f1ec430bae8e5c72af6388e2a4d807:11' => 'Apple QuickTime, Quality 851-852 (83%)', 'b558f097ed59f547d2b370a73145caf9:11' => 'Apple QuickTime, Quality 853 (83%)', 'ceecacb651d0e01e9b1c78cde2d7835a:11' => 'Apple QuickTime, Quality 854 (83%)', '82a9cce34fb9c7c3c0ab908533a9a9bf:11' => 'Apple QuickTime, Quality 855-856 (83-84%)', 'e93244fdb14bb27a2c30ee133b3e9f5e:11' => 'Apple QuickTime, Quality 857 (84%)', '7a12ccd01bfdd2cf3b8ee2df498b8ae0:11' => 'Apple QuickTime, Quality 858 (84%)', 'd0d6f781130c0fecd985df78c15c5c16:11' => 'Apple QuickTime, Quality 859-860 (84%)', '1c19e4fde384a33f208074c73775d990:11' => 'Apple QuickTime, Quality 861-863 (84%)', '8fb281fcf4d481e59e1c15ed51ef8f19:11' => 'Apple QuickTime, Quality 864 (84%)', 'c3f615274e58eb887a2aa75acad436ff:11' => 'Apple QuickTime, Quality 865 (84%)', '9146c5df73615b0f2a470521bab7e4c4:11' => 'Apple QuickTime, Quality 866 (85%)', 'ac2d99dd3ff609760c207419312e7b30:11' => 'Apple QuickTime, Quality 867 (85%)', '7c7d225760bce3b4e479aca8bcd2b850:11' => 'Apple QuickTime, Quality 868 (85%)', '9da4a7e310cb44578b009e78458d3b19:11' => 'Apple QuickTime, Quality 869 (85%)', '1ae782c12797f5e5c9b083099148e43a:11' => 'Apple QuickTime, Quality 870 (85%)', '193ace8d9e274bb9188b1a9a7bdee777:11' => 'Apple QuickTime, Quality 871-872 (85%)', '9160a8eeb898a05dcb02206603a45a65:11' => 'Apple QuickTime, Quality 873-877 (85-86%)', '0443da2c934e95fca0df8a0a1433eea4:11' => 'Apple QuickTime, Quality 878-880 (86%)', 'fa99ff1ecc29c5caa95fa62189fca670:11' => 'Apple QuickTime, Quality 881-886 (86-87%)', 'd9a914baea5468bb52c09d1d0b5bd131:11' => 'Apple QuickTime, Quality 887 (87%)', '6c0ac535ec30285b609e0b8ca18e4dc0:11' => 'Apple QuickTime, Quality 888-890 (87%)', 'dffb0a244fa54783569693edf84d1cda:11' => 'Apple QuickTime, Quality 891-893 (87%)', '507b49a59dce17c02dc16fcb329352eb:11' => 'Apple QuickTime, Quality 894 (87%)', 'dd757185a44c3d6222e9d16a0c2ee890:11' => 'Apple QuickTime, Quality 895 (87%)', 'f3526abe33de71ad0eb728c9d446b545:11' => 'Apple QuickTime, Quality 896 (88%)', '34466385e7bf9b2708adf19be1eb3c2d:11' => 'Apple QuickTime, Quality 897-898 (88%)', 'e43438348a912a2210261472d1a747ab:11' => 'Apple QuickTime, Quality 899 (88%)', '184d01e77f6239f63fd6ab6d36761e64:11' => 'Apple QuickTime, Quality 900-901 (88%)', '26005cdf9397dcce883660aeecb0426b:11' => 'Apple QuickTime, Quality 902 (88%)', '09321d810a54503da7ad7b8e883227ea:11' => 'Apple QuickTime, Quality 903 (88%)', 'd6438ea5a93b6d4d0ba26de7c56f2634:11' => 'Apple QuickTime, Quality 904-905 (88%)', 'ddc90333cb2279aa533a339710bd81ef:11' => 'Apple QuickTime, Quality 906 (88%)', '14a352b80a350e2df6b2bc444ccc74f6:11' => 'Apple QuickTime, Quality 907-908 (89%)', '91a7f0747ed633f481918a83b1a7c77c:11' => 'Apple QuickTime, Quality 909-914 (89%)', 'a3bb9728b3dfa7002364659db0c420fc:11' => 'Apple QuickTime, Quality 915-917 (89-90%)', '9df94f927ffc1f3345923232691fab3b:11' => 'Apple QuickTime, Quality 918-920 (90%)', '259764d950c1f1e399cdb27e159c8985:11' => 'Apple QuickTime, Quality 921-922 (90%)', '73313d816524749545292ed2284c804c:11' => 'Apple QuickTime, Quality 923-924 (90%)', '449ed4370a849e0f736b57ee7ccab942:11' => 'Apple QuickTime, Quality 925-926 (90%)', 'bd1f81bd50cf9859eb0ae6d2dbf75d09:11' => 'Apple QuickTime, Quality 927 (91%)', '820db98d1ee91bb648e7a05498a340b0:11' => 'Apple QuickTime, Quality 928 (91%)', '93c1ba0af1f50d889cb5e2364be3a056:11' => 'Apple QuickTime, Quality 929 (91%)', 'cc96e1c8906353c4023bc7e6b72bb684:11' => 'Apple QuickTime, Quality 930 (91%)', 'eb728dc3105ddb5a0597384b54ed948c:11' => 'Apple QuickTime, Quality 931 (91%)', 'dc0278d78fa5c8daf84f8c2672f582c6:11' => 'Apple QuickTime, Quality 932-933 (91%)', '1a603cba63dbba0d0815fc7319271b93:11' => 'Apple QuickTime, Quality 934-936 (91%)', '3d8f4957eab9756993a78efe08ba3798:11' => 'Apple QuickTime, Quality 937-938 (92%)', 'cef5a49e1834c316a4a9e7dca8d69157:11' => 'Apple QuickTime, Quality 939 (92%)', 'ca21386b17f3866a235fca4b6e72b124:11' => 'Apple QuickTime, Quality 940 (92%)', 'ec662935c494c5abd6f6c907f77be65c:11' => 'Apple QuickTime, Quality 941-943 (92%)', '190a54eb1127ee87231795bc3d661b5a:11' => 'Apple QuickTime, Quality 944-946 (92%)', 'e78229129afca214a07ad978262c545e:11' => 'Apple QuickTime, Quality 947-951 (92-93%)', 'c31cb63954b137b62c5fe35379235e2e:11' => 'Apple QuickTime, Quality 952-954 (93%)', '25ca43baa972ad9c82128606cd383805:11' => 'Apple QuickTime, Quality 955 (93%)', '334c67d739adf957d1620201cb7a521c:11' => 'Apple QuickTime, Quality 956-957 (93-93%)', '29c42d951dc84d62bd134bec71bf731b:11' => 'Apple QuickTime, Quality 958 (94%)', 'fa6f80883480ab3ddea8ee2f6796a14b:11' => 'Apple QuickTime, Quality 959-961 (94%)', 'e40f6a9a3daf4bfc42aedcb9107076ea:11' => 'Apple QuickTime, Quality 962 (94%)', 'd26a06f6114d83714e3b64b6dbe97e6f:11' => 'Apple QuickTime, Quality 963-967 (94%)', 'c40848be9d1d1018747630cdac2d7294:11' => 'Apple QuickTime, Quality 968-970 (95%)', 'ab2b6d0624f294bf4e53e34208caeaa6:11' => 'Apple QuickTime, Quality 971 (95%)', 'b6ea2f838fa1942a21e41f6bba417782:11' => 'Apple QuickTime, Quality 972-973 (95%)', 'ff765e75c06c9db34f66ae7ee0202d05:11' => 'Apple QuickTime, Quality 974 (95%)', 'c33573208ef877f1bc9a64f595e00c4d:11' => 'Apple QuickTime, Quality 975-977 (95%)', '6528da6df208ce35fd84dccabc81d4da:11' => 'Apple QuickTime, Quality 978-979 (96%)', '420d094d00a4a8aec94c5667254d2053:11' => 'Apple QuickTime, Quality 980-984 (96%)', '427271dd1e2a3d7a7ce54af73d9e6c77:11' => 'Apple QuickTime, Quality 985-987 (96%)', '99589fb7d66a29f15d9ff0f37235e7a2:11' => 'Apple QuickTime, Quality 988-991 (96-97%)', '98fddd9e5862e06385b46a016597c02f:11' => 'Apple QuickTime, Quality 992-993 (97%)', '381d1ca1d61986f28cfd6da0fca348da:11' => 'Apple QuickTime, Quality 994-996 (97%)', '11a232fa9de634fadde1869007baab9c:11' => 'Apple QuickTime, Quality 997-998 (97%)', '02374d6405239e8fe5ab939b92f4fd03:11' => 'Apple QuickTime, Quality 999-1000 (98%)', 'f91cfb708c99c2fef0f7148976514f44:11' => 'Apple QuickTime, Quality 1001-1002 (98%)', '83f3452abc7906930b228c29a4320089:11' => 'Apple QuickTime, Quality 1003 (98%)', '4379016ba81dc331ffd5f9a8ab5b6399:11' => 'Apple QuickTime, Quality 1004 (98%)', 'e2cccecebc01c7d8a4fca2dab682ba8f:11' => 'Apple QuickTime, Quality 1005-1009 (98-99%)', '8d4b2a14a176d63e509684aa4246dabb:11' => 'Apple QuickTime, Quality 1010-1013 (99%)', '40a7c1d8f58612f4470c2531768d93b5:11' => 'Apple QuickTime, Quality 1014-1016 (99%)', '8392742f8f5971ed08c7520d0e9c81f3:11' => 'Apple QuickTime, Quality 1017 (99%)', '14040c7711b6fa62383da3edc9ade1b7:11' => 'Apple QuickTime, Quality 1018-1020 (99-100%)', '22ccf9c976b36da34f48385a09b1951b:11' => 'Apple QuickTime, Quality 1021-1023 (100%)', '4aa632db3be6b6e85565c1fe66cb22d1:11' => 'Apple QuickTime, Quality 1024 (lossless)', # Apple Aperture 2.1.3 (ref 2) '60cb2afa0cfa7395635a9360fc690b46:221111' => 'Apple Aperture Quality 0', '6b9be09d6ec6491a20c2827dbeb678c0:221111' => 'Apple Aperture Quality 1', 'dbb17a02e661f2475411fc1dc37902ef:221111' => 'Apple Aperture Quality 2', '8a5df2b5337bf8251c3f66f6adbb5262:221111' => 'Apple Aperture Quality 3', '3841f0f3be30520a1a57f41c449588ee:221111' => 'Apple Aperture Quality 4', '2b1dba266c728a9f46d06e6e5c247953:221111' => 'Apple Aperture Quality 5', # 'Independent JPEG Group library (used by many applications), Quality 91' => 'Apple Aperture Quality 6', '93818f3a0e6d491500cb62e1f683da22:221111' => 'Apple Aperture Quality 7', '8c0c36696a99fd889e0f0c7d64824f3c:221111' => 'Apple Aperture Quality 8', '043645382c79035b6f2afc62d373a37f:221111' => 'Apple Aperture Quality 9', '558d017ce6d5b5282ce76727fe99b91e:221111' => 'Apple Aperture Quality 10', '0b52b82694040193aee10e8074cd7ad5:221111' => 'Apple Aperture Quality 11', # 'Independent JPEG Group library (used by many applications), Quality 100' => 'Apple Aperture Quality 12', # Tested with Corel Paint Shop Pro PHOTO X2 (Win) - Different subsamplings possible '1c78c0daaa0bbfd4a1678b5569b0fa13' => 'Corel Paint Shop Pro PHOTO, Quality 1', '5ffdd2e918ec293efc79083703737290' => 'Corel Paint Shop Pro PHOTO, Quality 2', '4ed4751d772933938600c4e7560bf19c' => 'Corel Paint Shop Pro PHOTO, Quality 3', 'f647f0fb4320c61f52e2a79d12bbc8cc' => 'Corel Paint Shop Pro PHOTO, Quality 4', '6194167174dfcb4a769cf26f5c7a018d' => 'Corel Paint Shop Pro PHOTO, Quality 5', '6120ded86d4cc42cd7ca2131b1f51fad' => 'Corel Paint Shop Pro PHOTO, Quality 6', 'c07a6430e56ef16a0526673398e87ac6' => 'Corel Paint Shop Pro PHOTO, Quality 7', '507cc511e561916efa3b49228ffc8c9a' => 'Corel Paint Shop Pro PHOTO, Quality 8', '612941a50f2c0992938bc13106caf228' => 'Corel Paint Shop Pro PHOTO, Quality 9', '7624f08396d811fdb6f1ead575e67e58' => 'Corel Paint Shop Pro PHOTO, Quality 10', 'e215df38e258b3d8bceb57aa64388d26' => 'Corel Paint Shop Pro PHOTO, Quality 11', '78f66ee0bc442950808e25daa02a2b02' => 'Corel Paint Shop Pro PHOTO, Quality 12', '14efb0bb5124910a37bcbd5f06de9aa9' => 'Corel Paint Shop Pro PHOTO, Quality 13', 'd61168238621bd221ef1eb3dcbe270a3' => 'Corel Paint Shop Pro PHOTO, Quality 14', 'e2d2755891b4e4bc5f7c8d76dcbb0d53' => 'Corel Paint Shop Pro PHOTO, Quality 15', 'f6c4502144a2e5c82c07994d3cd01665' => 'Corel Paint Shop Pro PHOTO, Quality 16', '78801638505e95827c2f7cc0c7ef78f4' => 'Corel Paint Shop Pro PHOTO, Quality 17', 'e8ff3d165b4c028c18ec8a8f940a12a1' => 'Corel Paint Shop Pro PHOTO, Quality 18', '984c359b9fbcc4d6f805946aa23ae708' => 'Corel Paint Shop Pro PHOTO, Quality 19', 'd1dc48d911055bc533779d6e086f7242' => 'Corel Paint Shop Pro PHOTO, Quality 20', 'd7437a18e86ac2832d73204acd82aa89' => 'Corel Paint Shop Pro PHOTO, Quality 21', 'bceaee6c1a150006b3643de6942ccfa3' => 'Corel Paint Shop Pro PHOTO, Quality 22', 'c448e6817efa9acdad225e60ed0013f9' => 'Corel Paint Shop Pro PHOTO, Quality 23', '904f231c98f390400ba7ae17c252813f' => 'Corel Paint Shop Pro PHOTO, Quality 24', 'ccd6708ca1dbd66a23d40cee635a0f76' => 'Corel Paint Shop Pro PHOTO, Quality 25', '10d87624d888b75b29e156be8dad35f4' => 'Corel Paint Shop Pro PHOTO, Quality 26', '8558c6d41f03db192198dceefbd1e89b' => 'Corel Paint Shop Pro PHOTO, Quality 27', '058fc759cff9d615f91d9ffb4b46436a' => 'Corel Paint Shop Pro PHOTO, Quality 28', '5c606e0f7168a78fd8d0c91646c801a3' => 'Corel Paint Shop Pro PHOTO, Quality 29', 'e9555e593a6fd9aeee399de16080cd61' => 'Corel Paint Shop Pro PHOTO, Quality 30', '2c2726484978a15d3d756d43b0baa290' => 'Corel Paint Shop Pro PHOTO, Quality 31', '8b1d11d31bc9445278cf9af55b0c156b' => 'Corel Paint Shop Pro PHOTO, Quality 32', 'aa4a5528ae18ecd36ec052014b91f651' => 'Corel Paint Shop Pro PHOTO, Quality 33', '9a26194b114b7db253601ff80b03da9a' => 'Corel Paint Shop Pro PHOTO, Quality 34', '3fa780a3dff1d787f7d883585a46dcfb' => 'Corel Paint Shop Pro PHOTO, Quality 35', '0a899361ed0d51e224dc535ceb02f9a1' => 'Corel Paint Shop Pro PHOTO, Quality 36', '3a2ab96a6ad9612e1377ddc822f02ddd' => 'Corel Paint Shop Pro PHOTO, Quality 37', '315f4faadd967e72d730155091c4912f' => 'Corel Paint Shop Pro PHOTO, Quality 38', '5f6e3a66672d6e4c41b1689996ca57d3' => 'Corel Paint Shop Pro PHOTO, Quality 39', '9503a86793e86d1fca3d8797548fa243' => 'Corel Paint Shop Pro PHOTO, Quality 40', '3b95f11bd77cb8af977c09d5851131f8' => 'Corel Paint Shop Pro PHOTO, Quality 41', 'ececf8dfa473110534b506db58d98f15' => 'Corel Paint Shop Pro PHOTO, Quality 42', 'cfe3144d4f8048a0507269a9d8a85993' => 'Corel Paint Shop Pro PHOTO, Quality 43', 'eb9d48d135b2c61c51fc3f23b0001b4d' => 'Corel Paint Shop Pro PHOTO, Quality 44', 'b08313a6919d308e50b806f138a8a2a1' => 'Corel Paint Shop Pro PHOTO, Quality 45', '7c34e6e7fe2cc760fa5c3ed812a8b74c' => 'Corel Paint Shop Pro PHOTO, Quality 46', '90ece7123e8d614d9aab55eaba6dd7da' => 'Corel Paint Shop Pro PHOTO, Quality 47', '6d79fe623c4c5320bdbe4d3026f4e71a' => 'Corel Paint Shop Pro PHOTO, Quality 48', 'a7e85552c3e5e40288891d225f308590' => 'Corel Paint Shop Pro PHOTO, Quality 49', '67b9a678d9f669167c5b4bf12422ad50' => 'Corel Paint Shop Pro PHOTO, Quality 50', '1fab112b17e94f53e94a9208e9091b7b' => 'Corel Paint Shop Pro PHOTO, Quality 51', '4971237e046795a030a99a0e8d2c5acb' => 'Corel Paint Shop Pro PHOTO, Quality 52', 'f3e1672b93ff159231c51b1b157e45fd' => 'Corel Paint Shop Pro PHOTO, Quality 53', '6e9cfb8131373c3d1873e3f497e46b64' => 'Corel Paint Shop Pro PHOTO, Quality 54', '9155c8acf8322e8af898272c694fa1d6' => 'Corel Paint Shop Pro PHOTO, Quality 55', '52b20edc779f206f2aed50610971f181' => 'Corel Paint Shop Pro PHOTO, Quality 56', 'ad801813f822ef9774801ab4d9145a61' => 'Corel Paint Shop Pro PHOTO, Quality 57', '07259679e2a842478df97c7f0ddd4df3' => 'Corel Paint Shop Pro PHOTO, Quality 58', '67db25c57803c34b065736f46f6afadb' => 'Corel Paint Shop Pro PHOTO, Quality 59', 'c7498fc4b3802b290a452631dd1e1b63' => 'Corel Paint Shop Pro PHOTO, Quality 60', '3f7b04c7952f96d2624813ed9896f128' => 'Corel Paint Shop Pro PHOTO, Quality 61', 'd5ec901d20f3887007d0f4cfb7d1460d' => 'Corel Paint Shop Pro PHOTO, Quality 62', '61bb38e23040b6a8b0e8721e6d6eff66' => 'Corel Paint Shop Pro PHOTO, Quality 63', '48fac53d9d168eab3ce9b6edc4b9fcb1' => 'Corel Paint Shop Pro PHOTO, Quality 64', '8cb101a5ae986e45cc31a9e19a35535d' => 'Corel Paint Shop Pro PHOTO, Quality 65', '0e08dc629e883530cb2ae78c90f125b3' => 'Corel Paint Shop Pro PHOTO, Quality 66', '5134762d2d4baac8711a52e76730591c' => 'Corel Paint Shop Pro PHOTO, Quality 67', '14b57dc6d5381fd0a743c7bd8b28bed1' => 'Corel Paint Shop Pro PHOTO, Quality 68', '9d398f1b1f40b7aaec1bd9cdb6922530' => 'Corel Paint Shop Pro PHOTO, Quality 69', 'c7e68d88bee5c2ee4b61a11bc2e68c80' => 'Corel Paint Shop Pro PHOTO, Quality 70', '917fe67f6ded5decac1820642239622c' => 'Corel Paint Shop Pro PHOTO, Quality 71', '362c3e0c08f6951018cde7b412cd513f' => 'Corel Paint Shop Pro PHOTO, Quality 72', 'd91cd4a2dcd1a29e6ef652ebcfdd58d7' => 'Corel Paint Shop Pro PHOTO, Quality 73', '11f5fbd5e74e5c5e305b95dbbc4356a8' => 'Corel Paint Shop Pro PHOTO, Quality 74', 'bf010771f909049fc5fceedcaa0f917c' => 'Corel Paint Shop Pro PHOTO, Quality 75', 'a455a3149812ba6951a016ee6114f9da' => 'Corel Paint Shop Pro PHOTO, Quality 76', '42e0c4082ec4d026c77d19a053a983f4' => 'Corel Paint Shop Pro PHOTO, Quality 77', '326bd5938e2db7de9250a9fb0efc6692' => 'Corel Paint Shop Pro PHOTO, Quality 78', 'a3e2cc4ea95cda49501bc73c494e9420' => 'Corel Paint Shop Pro PHOTO, Quality 79', '8c89043f00678bb5c68ee90390c1b43b' => 'Corel Paint Shop Pro PHOTO, Quality 80', 'fc5812ad9a4cd0122eb1c63f0ac3b5a3' => 'Corel Paint Shop Pro PHOTO, Quality 81', '84dbe33962674aab86e03681ac3bd35f' => 'Corel Paint Shop Pro PHOTO, Quality 82', 'b6b80a78472dca05c9135702e96fdad9' => 'Corel Paint Shop Pro PHOTO, Quality 83', '01f997907a4c1dfd1e6b00aca9ff5d80' => 'Corel Paint Shop Pro PHOTO, Quality 84', '8431e86434062b325c519fd836353cd0' => 'Corel Paint Shop Pro PHOTO, Quality 85', '15f375a620952738ff21ff4aa496b8f7' => 'Corel Paint Shop Pro PHOTO, Quality 86', '7b0f02aa96271376d3f81658d98fb1df' => 'Corel Paint Shop Pro PHOTO, Quality 87', '86e7666b05bd1fc130fbf4b48f854288' => 'Corel Paint Shop Pro PHOTO, Quality 88', '6af05d547e8911fe2d1f2b4d968a477e' => 'Corel Paint Shop Pro PHOTO, Quality 89', '8baa876790518bf509dd09093759331d' => 'Corel Paint Shop Pro PHOTO, Quality 90', 'eb7d90d291044d1bd8f40ca1b3ce0ddf' => 'Corel Paint Shop Pro PHOTO, Quality 91', '6f338385a8f2cd2dd3420a4f6138a206' => 'Corel Paint Shop Pro PHOTO, Quality 92', 'b0a0fd1ec2dd366ad00d3e83d6dedec2' => 'Corel Paint Shop Pro PHOTO, Quality 93', 'e09026128c9880b44ac71224f477cd3b' => 'Corel Paint Shop Pro PHOTO, Quality 94', 'd0a8f50ff547da69a57eeb892e194cff' => 'Corel Paint Shop Pro PHOTO, Quality 95', '7849ba902d96273b5ac7b6eb98f4d009' => 'Corel Paint Shop Pro PHOTO, Quality 96', '379f9f196d4190298a732ab9a7031001' => 'Corel Paint Shop Pro PHOTO, Quality 97', 'c3d1601f84ec3adfbc8ca17883ef6378' => 'Corel Paint Shop Pro PHOTO, Quality 98', '1f5e87bec674bdd7dff166c2ea9ca004' => 'Corel Paint Shop Pro PHOTO, Quality 99', # Tested with FixFoto Version 2.90 Build 136 (Win) - different subsamplings possible '866dd04cb0fe2e00cda7395162480117' => 'FixFoto, Quality 0 or 1', '1e400ba25fa835e2771772bbfb15b94b' => 'FixFoto, Quality 2', '302ff1ad1a50d0f01a82cc88f286c649' => 'FixFoto, Quality 3', '1343a117f5fab26d556a3e7558366591' => 'FixFoto, Quality 4', '8fbb8cc5368224625689df80bf4d2a04' => 'FixFoto, Quality 5', 'a371d1ffc8d85d502854a356f3b0ea74' => 'FixFoto, Quality 6', 'a9a0a5000cd6fb322960a4c45cf1d032' => 'FixFoto, Quality 7', 'aaac84043224d33e1d3a1723b653b0cd' => 'FixFoto, Quality 8', '701e4820f6d0b68e67b6a2b90a7baa0c' => 'FixFoto, Quality 9', '877d03a5abf5b6c4ad03c39afd97f4a2' => 'FixFoto, Quality 10', 'b3d9bdc2090200537fb42f4d69631150' => 'FixFoto, Quality 11', '3cf156d54120b53057f56e9f38ee2896' => 'FixFoto, Quality 12', '69fe5c29b9d5e4c823f8a082ab7b3285' => 'FixFoto, Quality 13', 'cf8573af40ced1793dcbc2346f969240' => 'FixFoto, Quality 14', '22944c3bc03d6adea8d6819f914452c3' => 'FixFoto, Quality 15', 'd768df38fb51c4b9977e5d7185f97a6c' => 'FixFoto, Quality 16', '7ef2cd2b66d51fe80d94d5db427ee9ef' => 'FixFoto, Quality 17', 'ed3d3b9ff9faf0009e44b9803f6295d7' => 'FixFoto, Quality 18', '70a0b15e2e5f97e0a9333a2011afe5cd' => 'FixFoto, Quality 19', 'd798b707a6b83eb54664abe0833b46aa' => 'FixFoto, Quality 20', 'bf68d1866b75cea8f99cf2fc46f9d686' => 'FixFoto, Quality 21', 'b98b8adb8f1f78b65800efe6c329ceab' => 'FixFoto, Quality 22', 'c063344185079018af9fcf161a3fdf98' => 'FixFoto, Quality 23', # Tested with Nikon Capture NX Version 2.0.0 (Win) '0ef9d9f62ab68807eedf6cb8c2ec120b:221111' => 'Nikon Capture NX, Quality 0', 'efbc50df45bc1d1fbbbd29c3e5de04b2:221111' => 'Nikon Capture NX, Quality 1', 'cbde745c78fd546d6e83dd7512ebe863:221111' => 'Nikon Capture NX, Quality 2', '33731f743fc28e9d81e542f0ed7cdfba:221111' => 'Nikon Capture NX, Quality 3', '866fcb1296d7da02b4ad31afb242f25f:221111' => 'Nikon Capture NX, Quality 4', 'cfbe44397240092d3a67241a23342528:221111' => 'Nikon Capture NX, Quality 5', 'a4b8b3408ae302ae81f125e972901131:221111' => 'Nikon Capture NX, Quality 6', '3a6cefd4f43c513fdf0858f26afeab5a:221111' => 'Nikon Capture NX, Quality 7', '1e861ce223babf95bc795e18cbdb49d1:221111' => 'Nikon Capture NX, Quality 8', '4d5b512d8bc173f14e6a3cf8574f670a:221111' => 'Nikon Capture NX, Quality 9', '9b1e6d379d3030dfa313bcaedc1ef3c7:221111' => 'Nikon Capture NX, Quality 10', 'e39b60fcecf3221d14c62dc13ddf4726:221111' => 'Nikon Capture NX, Quality 11', '3654bbf4a45e0c0758a82a075b3f77cc:221111' => 'Nikon Capture NX, Quality 12', '4f5889173779409ec604622a1894ab4a:221111' => 'Nikon Capture NX, Quality 13', '738685b86b80ff0e8b562102d1b58f71:221111' => 'Nikon Capture NX, Quality 14', '48a53035374c08e6490893d8113ed6b3:221111' => 'Nikon Capture NX, Quality 15', '03651ac1d15043f77949a63ac3762584:221111' => 'Nikon Capture NX, Quality 16', '27811b28d02bd417857904f0a9e1ed58:221111' => 'Nikon Capture NX, Quality 17', '03201bd5642a451d99b99bfd10fc42df:221111' => 'Nikon Capture NX, Quality 18', '67d5eb5f55c9a5baa0a67d42a841d77b:221111' => 'Nikon Capture NX, Quality 19', '18392b08bf8cf788a579f376297c3334:221111' => 'Nikon Capture NX, Quality 20', 'de0c784b75953851dc370f4daecfa1a9:221111' => 'Nikon Capture NX, Quality 21', '75f260644b87a9779188126da8709e7f:221111' => 'Nikon Capture NX, Quality 22', 'c44701e8185306f5e6d09be16a2b0fbd:221111' => 'Nikon Capture NX, Quality 23', '086e5ce1149e14efd9e424956734fe05:221111' => 'Nikon Capture NX, Quality 24', 'aad1109d9c49b8170feac125148b2a50:221111' => 'Nikon Capture NX, Quality 25', 'c97965ce5392623f668a386b30e41cee:221111' => 'Nikon Capture NX, Quality 26', 'd9dadfb6f0a25765abe00e69857c5520:221111' => 'Nikon Capture NX, Quality 27', '0ee9ca02a1fe8a17b6e50a2e86d19a7c:221111' => 'Nikon Capture NX, Quality 28', '88b1726a20759f29eecfa2b129773127:221111' => 'Nikon Capture NX, Quality 29', '70a311935ed066da954897fad5079377:221111' => 'Nikon Capture NX, Quality 30', 'aa2d374bbab2a30e00c1863264588a42:221111' => 'Nikon Capture NX, Quality 31', '097b684846696b3a8bbdf2bd2f9ded9c:221111' => 'Nikon Capture NX, Quality 32', 'bb313d5398065376c7765092fc8ea0f0:221111' => 'Nikon Capture NX, Quality 33', 'aa049fdc1387851a664143df0408f55c:221111' => 'Nikon Capture NX, Quality 34', '087c1c1a368adc82900d83235f432d3f:221111' => 'Nikon Capture NX, Quality 35', '7dec6568dbad7a70622c994a326957e2:221111' => 'Nikon Capture NX, Quality 36', 'd2e14d8ba7d38f7544b569eea7221255:221111' => 'Nikon Capture NX, Quality 37', 'ce6bcb98c5f9358594f5934e64b4ecc3:221111' => 'Nikon Capture NX, Quality 38', '4785aafc8471873402819e423b8969a9:221111' => 'Nikon Capture NX, Quality 39', '66ae78a749b520b35d4daf4531df8ae5:221111' => 'Nikon Capture NX, Quality 40', '946d9f9346a0c65eec478945ad3d6143:221111' => 'Nikon Capture NX, Quality 41', 'f46e96afa026233c1662c9114feb61e9:221111' => 'Nikon Capture NX, Quality 42', '96a267e050b6d8a13439f8a9bb89722c:221111' => 'Nikon Capture NX, Quality 43', '27c301566e155f700b01906a43473ffe:221111' => 'Nikon Capture NX, Quality 44', 'ceff136f6dd88242500bfd639cb0c003:221111' => 'Nikon Capture NX, Quality 45', '939b804eefc95158a934bb48e3f3b545:221111' => 'Nikon Capture NX, Quality 46', '06186292fe0ccaaeb5999319a366c4b4:221111' => 'Nikon Capture NX, Quality 47', 'e456c998dc126c1efad013eb7b0186c1:221111' => 'Nikon Capture NX, Quality 48', 'ef0cd1902fb1afe284468a67eaffd078:221111' => 'Nikon Capture NX, Quality 49', 'f4693035f8db19e0788f41255c3c052e:221111' => 'Nikon Capture NX, Quality 50', '40c6f2886cdca8f19a654ce321ea993e:221111' => 'Nikon Capture NX, Quality 51', 'e9387b4065bba8570375d6535ab2124b:221111' => 'Nikon Capture NX, Quality 52', 'f3a55e422a4ab829b2c1f5a1784ce9f6:221111' => 'Nikon Capture NX, Quality 53', '2fff3c6e48247992d1543d9e5c679759:221111' => 'Nikon Capture NX, Quality 54', '5a1849b49122ff09949f1d355b4f9eaa:221111' => 'Nikon Capture NX, Quality 55', 'a582968bb1890620ffbae916ebafcb64:221111' => 'Nikon Capture NX, Quality 56', '81597eb992e32e186d2b5565bbe4ae3a:221111' => 'Nikon Capture NX, Quality 57', '7364416ce4f2a9282efdbe052574527b:221111' => 'Nikon Capture NX, Quality 58', '5301c2bcae09fd4305e47ffc56b2c8a7:221111' => 'Nikon Capture NX, Quality 59', '5a1849b49122ff09949f1d355b4f9eaa:211111' => 'Nikon Capture NX, Quality 60', '9be2446f168941ff42d9fc7441f2429b:211111' => 'Nikon Capture NX, Quality 61', 'bbba80e58afae43278e287021d4f1499:211111' => 'Nikon Capture NX, Quality 62', '2a9ae394dc32a418960522cbe9c6df24:211111' => 'Nikon Capture NX, Quality 63', '67fbe0dce139b6db1813e30bbbceccf3:211111' => 'Nikon Capture NX, Quality 64', '17bce376f588ebf2b3e9002a337c239d:211111' => 'Nikon Capture NX, Quality 65', 'cd2c6c01d8eb8d985086b54e2269278a:211111' => 'Nikon Capture NX, Quality 66', '34b25782fc089616807bbbe7f7cd8413:211111' => 'Nikon Capture NX, Quality 67', '37b8bbab382a228eabb0dc64c0edcb0f:211111' => 'Nikon Capture NX, Quality 68', 'b163f35baed567d70aa2536695558724:211111' => 'Nikon Capture NX, Quality 69', '251eb2d7903f63b168348ec483ba499a:211111' => 'Nikon Capture NX, Quality 70', '42e7cdf33b9067a7124dd27020704f9a:211111' => 'Nikon Capture NX, Quality 71', '032678d9de74e5530896c28079f666af:211111' => 'Nikon Capture NX, Quality 72', '30d7b6db02954dfc4ce47a089d0f40d9:211111' => 'Nikon Capture NX, Quality 73', '5c1a40094128ac76eab0405dcb4ae3c7:211111' => 'Nikon Capture NX, Quality 74', '2706b8b0cf6686148e285b6d3e44dd72:211111' => 'Nikon Capture NX, Quality 75', '6ca4a27cb36f35ab84b0e2df06bb32f4:211111' => 'Nikon Capture NX, Quality 76', '6f9cae52d3f47f514f7c927314455a5a:211111' => 'Nikon Capture NX, Quality 77', 'c0204862b8aafa2c286c7b58d755c31f:211111' => 'Nikon Capture NX, Quality 78', 'd8ef40736b072f09bead5f73f5ec1372:211111' => 'Nikon Capture NX, Quality 79', '8c389c29eca238b3b331f65f7e124a27:111111' => 'Nikon Capture NX, Quality 80', '6f9cae52d3f47f514f7c927314455a5a:111111' => 'Nikon Capture NX, Quality 81', '8e1ceace8fafe31282393d8677e76994:111111' => 'Nikon Capture NX, Quality 82', '60f75a915647ed50d1724179d50a35d2:111111' => 'Nikon Capture NX, Quality 83', 'df54eb20ec90f41f1e6c37e241ee381c:111111' => 'Nikon Capture NX, Quality 84', '5522213c915e2af3ad01ee2ec27ee3ed:111111' => 'Nikon Capture NX, Quality 85', '08c063f0997262d9977df4b44e682d82:111111' => 'Nikon Capture NX, Quality 86', 'd2e34c70872ac119dda6bdeeb36bf229:111111' => 'Nikon Capture NX, Quality 87', 'e5abf48ce0cc2b4a3db7eca3a1112b7a:111111' => 'Nikon Capture NX, Quality 88', 'b69dcb672088f296323d891219464ad8:111111' => 'Nikon Capture NX, Quality 89', 'b6d1c6efb27ea721577888b5f981ad7b:111111' => 'Nikon Capture NX, Quality 90', 'b023f424f81c8cbbab20119c06163dce:111111' => 'Nikon Capture NX, Quality 91', '77f680490d08697cb0f11ff3fe76b7e8:111111' => 'Nikon Capture NX, Quality 92', '1860106097672532e7ebc2026d7f9681:111111' => 'Nikon Capture NX, Quality 93', '0c7d4861b3bee5d766a93f2d34027bfa:111111' => 'Nikon Capture NX, Quality 94', '3adf9a0b85a4000243bbf833cd8e6966:111111' => 'Nikon Capture NX, Quality 95', '9530dfffc5574606841a597212ec25b4:111111' => 'Nikon Capture NX, Quality 96', 'c7294290fe26155147072f9041705cfb:111111' => 'Nikon Capture NX, Quality 97', 'c24c44a4dadd77c15e0b4c741a2d4bd5:111111' => 'Nikon Capture NX, Quality 98', '36016cd5527c505ef3bbba8b3e22f9db:111111' => 'Nikon Capture NX, Quality 99', 'c9309ab058680151be5f97e6c54dc687:111111' => 'Nikon Capture NX, Quality 100', # Tested with ACDsee PhotoEditor 4.0.208c-de (Win) '2ab2f6a116ca6fc0bbf188b19b9de967' => 'ACD Systems Digital Imaging, Quality 0 or 1', 'f4f9d5c07c78e8700a6f3def0782a18e' => 'ACD Systems Digital Imaging, Quality 2', '66fc410ab8f71a7fdef86fd70b742dc1' => 'ACD Systems Digital Imaging, Quality 3', '8e763b5b9255df1f4cb7b9732e99c210' => 'ACD Systems Digital Imaging, Quality 4', 'fd3eed19f6667ab0bedfa3263390ce25' => 'ACD Systems Digital Imaging, Quality 5 or 6', 'dc0dc92085037072e27247f64af0f22d' => 'ACD Systems Digital Imaging, Quality 7', '233ed690eb7e9008c20ed16e79aa3eb5' => 'ACD Systems Digital Imaging, Quality 8', '684649f6c1590f5a912a827a6d8bfc6b' => 'ACD Systems Digital Imaging, Quality 9', 'ed6aec096e8776b483b2c2b3d7e15d76' => 'ACD Systems Digital Imaging, Quality 10 or 11', '9cd85933ddb1101d9b859a19e9a30334' => 'ACD Systems Digital Imaging, Quality 12', '222a8769205a592ec834b6f5fc654a21' => 'ACD Systems Digital Imaging, Quality 13', '29f957e2a0af0f44d271c3c4e27eec4b' => 'ACD Systems Digital Imaging, Quality 14', 'c46c764191f9c3db2bfe8d134512bcd8' => 'ACD Systems Digital Imaging, Quality 15 or 16', '56caa684ce7eb0b1cf662e1c88ed1614' => 'ACD Systems Digital Imaging, Quality 17', 'cedc5208c6e1cbffd8be0e47bfd76698' => 'ACD Systems Digital Imaging, Quality 18', 'dec0717305bae8309a934e1d6a251d88' => 'ACD Systems Digital Imaging, Quality 19', '8c85e0e8f41257e2cd739a5b158ec218' => 'ACD Systems Digital Imaging, Quality 20 or 21', '6ae7ab4e6d5e0e67006cca59c70f843c' => 'ACD Systems Digital Imaging, Quality 22', '840be626ed18db6cdef3c5c357e24d34' => 'ACD Systems Digital Imaging, Quality 23', 'd48c2b9e514e25fcc4b3f2408d168d72' => 'ACD Systems Digital Imaging, Quality 24', 'b9eb63b89c80c71f4eac8c6e27d272f1' => 'ACD Systems Digital Imaging, Quality 25 or 26', 'bcd4d36a9db91a51d1a571f71f8230d4' => 'ACD Systems Digital Imaging, Quality 27', 'ac2f66ab2559019fcf021b9a32b049ab' => 'ACD Systems Digital Imaging, Quality 28', '4208fca702ec702bd5d41c8231883057' => 'ACD Systems Digital Imaging, Quality 29', 'fa620c67ab09a4c0d1c5b8e65ade361e' => 'ACD Systems Digital Imaging, Quality 30 or 31', '679dea81c8d4563e07efac4fab6b89ca' => 'ACD Systems Digital Imaging, Quality 32', '43ceb0c1a5d94d55ee20dc3a168498b2' => 'ACD Systems Digital Imaging, Quality 33', 'a9cc8a19ae25bc024c3d92d84c13c7a5' => 'ACD Systems Digital Imaging, Quality 34', 'e3e7280c8a9e82d31e22d24d5b733580' => 'ACD Systems Digital Imaging, Quality 35 or 36', 'a06d250213e349005897bd6fa5bebca8' => 'ACD Systems Digital Imaging, Quality 37', '40d08b823fa60b838dd9998d1e2b550a' => 'ACD Systems Digital Imaging, Quality 38', '4998abefc838e35cf0180395309e2e33' => 'ACD Systems Digital Imaging, Quality 39', '280205c47c8d3706c2f36b1986e9b149' => 'ACD Systems Digital Imaging, Quality 40 or 41', '8534b67f8115ddc0296623a1ed3fc8ec' => 'ACD Systems Digital Imaging, Quality 42', '292b83b37765408b65f496cddd3f96ea' => 'ACD Systems Digital Imaging, Quality 43', 'cae0c8eb9a11a1f6eb7eca9651d8dbc0' => 'ACD Systems Digital Imaging, Quality 44', '078db0d0bffafa44def2e8b85eec26f6' => 'ACD Systems Digital Imaging, Quality 45 or 46', '6a26a11cc28df00e01d5979e2e0fb4f7' => 'ACD Systems Digital Imaging, Quality 47', 'b41b3d226ba21244b8070ba719ec721a' => 'ACD Systems Digital Imaging, Quality 48', '9a8a54328e297faa0a546c46145c9aa8' => 'ACD Systems Digital Imaging, Quality 49', '256e617be51dade18503fcbbe87cd4a6' => 'ACD Systems Digital Imaging, Quality 50 or 51', '064f160a8504465551738c9071f3850f' => 'ACD Systems Digital Imaging, Quality 52', '5aef4c0bc6a5c8f1baded29946a56310' => 'ACD Systems Digital Imaging, Quality 53', 'c20f4841a1ff7e393af8f6ea4124403c' => 'ACD Systems Digital Imaging, Quality 54', '14afe9b58e0eacef42db61e1d7fdd09c' => 'ACD Systems Digital Imaging, Quality 55 or 56', '147598404233439485574200e253f88e' => 'ACD Systems Digital Imaging, Quality 57', '17479c1e73d2c062872c871db80d949b' => 'ACD Systems Digital Imaging, Quality 58', 'd237b1202f88ba8183bc1cb69dd4be66' => 'ACD Systems Digital Imaging, Quality 59', 'fc923f2d38e0e549134e1ec86f58149a' => 'ACD Systems Digital Imaging, Quality 60 or 61', '93b4929d4a3b955f4996ab7e3b6fbe53' => 'ACD Systems Digital Imaging, Quality 62', '054f418c24a6a733186a27aa739dc93a' => 'ACD Systems Digital Imaging, Quality 63', '0df2be705ae86e5de1e508db95efb182' => 'ACD Systems Digital Imaging, Quality 64', 'c1978a445de1173b5039b0cf8d8a91fe' => 'ACD Systems Digital Imaging, Quality 65 or 66', '3d8e25b74d0d9be662f26ec5fed6fe94' => 'ACD Systems Digital Imaging, Quality 67', '8887b718c97e0d80ed8d9a198387e2eb' => 'ACD Systems Digital Imaging, Quality 68', '8cdb9100cfbb246d440d469e72ce37a6' => 'ACD Systems Digital Imaging, Quality 69', '379efafa6e71a90ccfcb57073d0bc5c8' => 'ACD Systems Digital Imaging, Quality 70 or 71', 'e1e122ebb2733a5ccdb5ff1cdce86d4d' => 'ACD Systems Digital Imaging, Quality 72', '41dd47887a2b87e22ad3bbacc022374e' => 'ACD Systems Digital Imaging, Quality 73', 'a0a30c816d5d47a91c66e5645eb5fdb8' => 'ACD Systems Digital Imaging, Quality 74', '731f7ffedba80407d039c1db5a785f95' => 'ACD Systems Digital Imaging, Quality 75 or 76', '7cfd092a41a0e1c029e82467cb4c034f' => 'ACD Systems Digital Imaging, Quality 77', 'f1b005980104aac41b49973beed9c8c2' => 'ACD Systems Digital Imaging, Quality 78', 'ba12dbfbd652c9cde69822996bdb2139' => 'ACD Systems Digital Imaging, Quality 79', 'd3784280d08a8df51e607bde8c8b5ead' => 'ACD Systems Digital Imaging, Quality 80 or 81', '7ed560efea0b44168d910a73fab9204c' => 'ACD Systems Digital Imaging, Quality 82', 'deaa8bbd7c5414b93d8029aa14a76d3a' => 'ACD Systems Digital Imaging, Quality 83', '9ae3a57ce98290176c4700baaff5661f' => 'ACD Systems Digital Imaging, Quality 84', 'cb99b9bd30ae36929755fee9208ab36b' => 'ACD Systems Digital Imaging, Quality 85 or 86', '75ff62bbf17aa1762dd15677e961ce67' => 'ACD Systems Digital Imaging, Quality 87', 'd4f1922c71a6c96a530a9a8268fbc63b' => 'ACD Systems Digital Imaging, Quality 88', 'ec994ef421efd6bc78671858b9f942ad' => 'ACD Systems Digital Imaging, Quality 89', '5ca52e1ffe2c84660d7377c33c88ad53' => 'ACD Systems Digital Imaging, Quality 90 or 91', '5522213c915e2af3ad01ee2ec27ee3ed' => 'ACD Systems Digital Imaging, Quality 92', '21aa1a0036251eecfffd24e37d7ce3dd' => 'ACD Systems Digital Imaging, Quality 93', '3233b63fc39fbbaa9af364e8a33862ff' => 'ACD Systems Digital Imaging, Quality 94', '1860106097672532e7ebc2026d7f9681' => 'ACD Systems Digital Imaging, Quality 95 or 96', '0c7d4861b3bee5d766a93f2d34027bfa' => 'ACD Systems Digital Imaging, Quality 97', 'c9309ab058680151be5f97e6c54dc687' => 'ACD Systems Digital Imaging, Quality 98', 'ffe6bb565b2c9008ab917c57ba94cd67' => 'ACD Systems Digital Imaging, Quality 99', 'd6390cc36d2f03c1d2dd13d6910ca46b' => 'ACD Systems Digital Imaging, Quality 100; Pentax K20D/OptioE60 Premium', # StereoPhoto Maker Version 3.25 - Option "No compression ghosting" activated '185893c53196f6156d458a84e1135c43:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 1', 'b41ccbe66e41a05de5e68832c07969a7:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 2', 'efa024d741ecc5204e7edd4f590a7a25:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 3', '3396344724a1868ada2330ebaeb9448e:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 4', '14276fffb98deb42b7dbce30abb8425f:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 5', 'a99e2826c10d0922ce8942c5437f53a6:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 6', '0d3de456aa5cbb8a2578208250aa9b88:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 7', 'fa987940fdedbe883cc0e9fcc907f89e:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 8', '1c9bb67190ee64e82d3c67f7943bf4a4:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 9', '57d20578d190b04c7667b10d3df241bb:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 10', '619fd49197f0403ce13d86cffec46419:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 11', '327f47dd8f999b2bbb3bb25c43cf5be5:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 12', 'e4e5bc705c40cfaffff6565f16fe98a9:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 13', '6c64fa9ad302624a826f04ecc80459be:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 14', '039a3f0e101f1bcdb6bb81478cf7ae6b:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 15', 'c23b08c94d7537c9447691d54ae1080c:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 16', '200107bc0174104bbf1d4653c4b05058:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 17', '72abfdc6e65b32ded2cd7ac77a04f447:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 18', '1799a236c36da0b30729d9005ca7c7f9:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 19', 'c33a667bff7f590655d196010c5e39f3:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 20', 'b1dc98f6a2f8828f8432872da43e7d94:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 21', '07318a0acfebe9086f0e04a4c4f5398a:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 22', 'a295b7163305f327a5a45ae177a0a19c:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 23', 'c741c1b134cf81ab69acc81f15a67137:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 24', 'a68893776502a591548c7b5bece13e1b:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 25', '111848d9e41f6f408ef70841f90c0519:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 26', '886374ceebcfd4dfed200b0b34b4baca:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 27', '666dd95fd0e20f5c20bc44d78d528869:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 28', '1aa58cb85dda84de2ddf436667124dcd:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 29', '9d321ab2bdda6f3cb76d2d88838aa8c3:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 30', '6ad87d648101c268f83fa379d4c773f2:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 31', 'cdf8e921300f27a4af7661a2de16e91a:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 32', '3f48672e37b6dd2e571b222e4b7ff97d:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 33', 'a53a7d4cc86d01f4c1b867270c9c078f:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 34', '09ec03f5096df106c692123f3fd34296:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 35', 'a946498fd1902c9de87a1f5182966742:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 36', '5d650a1d38108fd79d4f336ba8e254c2:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 37', '81d620f1b470fd535b26544b4ea20643:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 38', '892788bdf8cbef5c6fbd7019a079bf8e:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 39', 'cf3929fd4c1e5c28b7f137f982178ad1:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 40', '31f288945896ed839f1d936bff06fb03:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 41', 'e0c38f0c5e6562445d4e92bae51713be:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 42', '18fa29d1164984883a6af76377b60d5a:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 43', 'eff737b226fbce48c42625c5bf9dabb6:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 44', 'b900f91ee8697255d5daebce858caaeb:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 45', 'ab2f8513823067af242f7e3c04a88a9c:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 46', '60b682c4d412f5255efbaa32787c46ca:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 47', 'ea50813e06203c2ad1165252bcb99a1d:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 48', 'f6308a717437d3653b0751ebf511db0f:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 49', '7c8242581553e818ef243fc680879a19:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 50', 'fc41ab8251718977bc6676f502f457e0:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 51', '606c4c78c0226646bf4d3c5a5898fb17:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 52', '0e6c6a5440d33d25f1c25836a45cfa69:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 53', '7464b2361e5b5f5a9ba74a87475dda91:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 54', 'aeaa2ca48eabb3088ebb713b3c4e1a67:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 55', '3f36450b0ba074578391e77f7340cef0:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 56', 'be232444027e83db6f8d8b79d078442e:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 57', '712c145d6472a2b315b2ecfb916d1590:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 58', 'ae3dd4568cc71c47d068cf831c66b59d:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 59', 'b290e52c21a435fede4586636ef5e287:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 60', 'a09ca4c4391e0221396a08f229a65f9d:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 61', '0818578fc5fc571b4f8d5ffefc9dc0d8:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 62', '7c685e2916555eda34cb37a1e71adc6a:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 63', '69c6b9440342adfc0db89a6c91aba332:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 64', 'd5d484b68e25b44288e67e699829695c:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 65', 'de8310d09116a7a62965f3e0e43ef525:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 66', 'e4735f63e88baf04599afc034e690845:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 67', 'b4ef810b14dee9c6d6d8cace98f799a6:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 68', '52886ef80147c9a136e20b2bc3b76f52:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 69', '9c62dbc848be82ef91219ba9843998be:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 70', 'bfe8c1c73eea84b85673487a82f67627:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 71', 'ea445840d29c51009a2a8cd49b96ccee:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 72', '71c1a56890fff9b0a095fa5a1c96132b:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 73', 'f080b02331ac8adf03de2281042d2b49:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 74', 'd0eaa368737f17f6037757d393a22599:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 75', '303663905d055b77bb547fe0b0beb9c5:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 76', '5cdf1d5bbe19375ad5c7237273dddede:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 77', 'd64e7ff8292fd77131932864d3c9ce7c:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 78', '12b4cc13891c5aef3dadb3405b6fa65d:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 79', 'b008cd63591f8fd366f77d2b224b9c9c:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 80', '49b6e472c7d5ecead593c6009768e765:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 81', 'bce6fa61623ad4f65ff3fec1528cb026:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 82', 'c2b037bf9f5e5baba804d7bbbb2dc73b:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 83', '7fe7b339c6ffc62b984eeab4b0df9168:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 84', '274bbeb0ac3939f90c578ebb1f5a9eef:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 85', '0a0268c655d616b0e4af2851533aa3af:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 86', '52318e260c0d6b3dbee85c87f9b94e63:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 87', 'b64cc19a0f81a506ed5bcfb9c131c8fe:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 88', 'd8c54333eb475b8db9f32f11fe96337e:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 89', '12fe6b9bfd20f4d7f0ac2a221c566c45:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 90', '12aefbf7689633c83da714c9f0e90e05:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 91', 'a3a96add050fc51a2b3ce59a9a491034:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 92', '7b0242bd9aaeab4962f5d5b39b9a4027:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 93', '12fc29c1d8940c93a47ee9d927a17561:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 94', 'e1fedef5184beeb7b0f5c055c7ae1d31:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 95', 'ae9202355f603776794d3e62c43578d6:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 96', '36da00bae6cd81d1f97e32748c07e33f:111111' => 'StereoPhoto Maker, No compression ghosting, Quality 97', # Tested with FujiFilm FinePixViewer Ver 5.4.11G (Win) '3a8a34631e388e39d13616d003f05957:211111' => 'FinePixViewer, Basic', 'b6a2598792fd87b7eb0c094cbd52862f:211111' => 'FinePixViewer, Fine', '4ee61c39b97558a273f310e085d0bdd2:211111' => 'FinePixViewer, Normal', # Tested with Canon Digital Photo Professional Version 3.4.1.1 (Win) '252482232ff1c8cf77db4f0c6402f858:211111' => 'Canon Digital Photo Professional, Quality 1', 'ec6c55677b94970bc09f70265f1d5b55:211111' => 'Canon Digital Photo Professional, Quality 2', 'a1085c167f1cd610258fe38c8a84a8b9:211111' => 'Canon Digital Photo Professional, Quality 3', '8ab1119f4ed4941736cb8ec1796f5674:211111' => 'Canon Digital Photo Professional, Quality 4', 'e66c03f97b19213f385136f014c78ac1:211111' => 'Canon Digital Photo Professional, Quality 5', 'a2f4b6ac52f87791380bdfe38ae333e1:211111' => 'Canon Digital Photo Professional, Quality 6', 'fe85b802c5779dcf45ea4bb7749ee886:211111' => 'Canon Digital Photo Professional, Quality 7', '35686967efa5fb333fb8f4844efc33a3:211111' => 'Canon Digital Photo Professional, Quality 8', 'a5894172d7ec5f0c1550934c9e9385c9:211111' => 'Canon Digital Photo Professional, Quality 9', 'd6390cc36d2f03c1d2dd13d6910ca46b:211111' => 'Canon Digital Photo Professional, Quality 10', # Tested with Canon ZoomBrowser EX 6.1.1.21 (Win) 'e66c03f97b19213f385136f014c78ac1:211111' => 'Canon ZoomBrowser, Low', 'bf72e4d4aacbdaeb86fd3f67c8df2667:211111' => 'Canon ZoomBrowser, Medium', 'd6390cc36d2f03c1d2dd13d6910ca46b:211111' => 'Canon ZoomBrowser, Highest', 'aeb34eb083acc888770d65e691497bcf:211111' => 'Canon ZoomBrowser, High', # Tested with PENTAX PHOTO Laboratory 3.51 (Win) '76d958276bf2cac3c36b7d9a677094a7:211111' => 'PENTAX PHOTO Laboratory, Highest compression', 'bf72e4d4aacbdaeb86fd3f67c8df2667:211111' => 'PENTAX PHOTO Laboratory, High compression', 'fa8720d025f2a164542b6a8e31112991:211111' => 'PENTAX PHOTO Laboratory, Medium quality', 'f3235a7d187d083b7b7ead949653f730:211111' => 'PENTAX PHOTO Laboratory, High quality', 'd6390cc36d2f03c1d2dd13d6910ca46b:211111' => 'PENTAX PHOTO Laboratory, Highest quality', # Tested with Sony Image Data Converter SR Version 2.0.00.08150 (Win) 'd6390cc36d2f03c1d2dd13d6910ca46b:211111' => 'Sony Image Data Suite, Quality 1 (high quality)', 'aeb34eb083acc888770d65e691497bcf:211111' => 'Sony Image Data Suite, Quality 2', '524742ca0cff64ecc0c7d7413e7d4b8d:211111' => 'Sony Image Data Suite, Quality 3', 'c44701e8185306f5e6d09be16a2b0fbd:211111' => 'Sony Image Data Suite, Quality 4 (high compression)', # Devices # Canon '0147c5088beb16642f9754f8671f13b3:211111' => 'Canon PowerShot, Fine', '586b40c7d4b95e11309636703e81fbe9:211111' => 'Canon EOS 20D, Fine', '6640ae3bb6f646013769b182c74931b5:211111' => 'Canon PowerShot, Normal', '83d6d7dd7ace56feeeb65b88accae1bc:211111' => 'Canon PowerShot, Normal Small', 'b8548a302585d78a0c269b54bff86541:211111' => 'Canon PowerShot, Fine Small', '9d125046484461bbc155d8eff6d4e8f0:211111' => 'Canon PowerShot, Superfine (A430/A460)', '0e618a0e79b4d540da1f6e07fcdce354:211111' => 'Canon PowerShot, Superfine Small', 'd255f70a910a2d0039f4e792d2c01210:211111' => 'Canon PowerShot, Superfine Medium2', '8bc267b04a54c02fdee1f4fdf0bcce83:211111' => 'Canon EOS 1DmkIII/5DmkII/40D/1000D, Fine', '17cb779485969589a5c7eb07a5d53247:211111' => 'Canon EOS 1DmkIII, Fine (pre-production)', 'ee1c033afaf4cd5263ff2b1c1ff8966c:211111' => 'Canon PowerShot, Superfine', 'a92912eb3c81e5c873d49433264af842:211111' => 'Canon EOS 30D/40D/50D/300D, Normal', '0cec88a0cd8fe35720e78cdcdbdadef6:121111' => 'Canon EOS 1DmkII, Fine (A)', '72cdcc91e3ddc2c3d17c20173b75c5ef:211111' => 'Canon EOS 1DmkII, Fine (B)', '483b5288e4256aa8ff96d6ccb96eba43:211111' => 'Canon EOS 1DmkII, Fine (C)', 'ea2f997a0261bab501bf122b04cbc859:211111' => 'Canon EOS 1DSmkII, Fine', '98af13526b7e4bbf73a9fb11a8fa789d:121111' => 'Canon EOS 1DSmkII, Fine (vertical)', '9e6abfb26d3b95b8cd2f710e78def947:121111' => 'Canon EOS 300D, Fine (vertical)', '4d6b36e81fe30c67dd53edb4d7c05422:121111' => 'Canon EOS 40D, Fine (vertical)', '92c1557deaa14f1cdaf92cf0531487f1:121111' => 'Canon EOS 1D/1DS, Fine', 'db8d4df12405d0d69eb25f06a963ac5b:211111' => 'Canon DV', 'eaead98bbdfde35210f48286662e8ad2:211111' => 'Canon DV Hi-Res', '74f0ef9476707be45f06951ca9a809ba:211111' => 'Canon DV/Optura/Elura, Superfine', # HTC 'bf72e4d4aacbdaeb86fd3f67c8df2667:221111' => 'HTC Touch Diamond P3700, Quality Unknown', # Konica/Minolta 'b5c213a3785c4c62b25d8f8c30758593:211111' => 'Konica/Minolta DYNAX 7D, Fine', # Nikon '118a60a90c56bcb363fdd93b911a3371:211111' => 'Nikon D50 / D80, Fine', '457b05fd0787a8e29bd43cd65911d6ca:211111' => 'Nikon D80, Basic', '5701582a0da2e9e8dcd923a5cf877494:211111' => 'Nikon D50, Fine', '662bd7fb9dff6426e310f9261a3703d0:211111' => 'Nikon D50, Fine', 'e06eb7848ec8766239ff014aa8b62e49:211111' => 'Nikon D80, Normal', '9e201a496a3700a77d9102c0dd0f8dbf:211111' => 'Nikon D300, Basic', # Panasonic '07d3cd227395b060a132411cbfc22593:211111' => 'Panasonic DMC-FZ50, High (A)', '118a60a90c56bcb363fdd93b911a3371:211111' => 'Panasonic DMC-FZ50/TZ3, High (A)', '1b8d04b1d56a4c0c811a0d3a68e86d06:211111' => 'Panasonic DMC-FZ50, High (B)', '1e619cbdee1f8ff196d34dad9140876f:211111' => 'Panasonic DMC-FZ50, High (C)', '493abc7f4b392a0341bfcac091edb8f8:211111' => 'Panasonic DMC-FZ30, High (B)', '4aa883c43840de7f0d090284120c69bc:211111' => 'Panasonic DMC-FZ50, High (D)', '7eafb9874384d391836e64911e912295:211111' => 'Panasonic DMC-FZ50, High (E)', '82b56237e4eccde035edff4a5abdba44:211111' => 'Panasonic DMC-FZ50, High (F)', '8335023e5a1ee8df80d52327b0556c44:211111' => 'Panasonic DMC-FZ30, High (C)', '8c105b3669931607853fa5ba4fffb839:211111' => 'Panasonic DMC-FZ30, High (D)', '8ecfb959bc76e5d6703f3f3bba2c5529:211111' => 'Panasonic DMC-FZ30, High (E)', '96eda111b2153648b3f27d6c1a9ec48f:211111' => 'Panasonic DMC-FZ50/TZ3, High (B)', '99f76923cfbd774febea883b603b8103:211111' => 'Panasonic DMC-FZ30, High (F)', '9b3475b865b9d31e433538460b75a588:211111' => 'Panasonic DMC-FZ10, High', '9eb7cdfd07099c1bb8e2c6c04b20b8ba:211111' => 'Panasonic DMC-FZ30, High (G)', '9fc030294fa5c4044dbb0cb461b0cf93:211111' => 'Panasonic DMC-TZ5, High (A)', 'a8779af4cb8afa2def1d346a9b16e81a:211111' => 'Panasonic DMC-TZ5, High (B)', 'bebd334aca511e2a2b6c60f43f9e6cf1:211111' => 'Panasonic DMC-FZ30, High (H)', 'c871ce0851d4647f226b2dcfd49fe9a9:211111' => 'Panasonic DMC-L1, Very High', 'eb625c64e32314f51dc4286564a71f7b:211111' => 'Panasonic DMC-FZ10, High', # Pentax # (K10D uses same DQT tables for different qualities) '1027a4af6a2a07e58bbd6df5b197d44e:211111' => 'Pentax K10D (A)', '17a77c2574ff5b72b3284f57977187f3:211111' => 'Pentax K10D (B)', '1aee684c7eb75320d988f6296c4c16ea:211111' => 'Pentax K10D (C)', '32386501afff88b45432b23fe41593e8:211111' => 'Pentax K10D (D)', '35ad02c3d8237a074b67423c39d3d61c:211111' => 'Pentax K10D (E)', '39d929c095f37a90e7d083db40e8642d:211111' => 'Pentax K10D (F)', '4127433151f74654762b1ef3293781f4:211111' => 'Pentax K10D (G)', '599a7794c32b9d60e80426909ed40a09:211111' => 'Pentax K10D (H)', '641812174c82d5b62ec86c33bd852204:211111' => 'Pentax K10D (I)', '76d958276bf2cac3c36b7d9a677094a7:211111' => 'Pentax K10D (J)', '79b07131be4827795315bf42c65212f2:211111' => 'Pentax K10D (K)', '836448ef538366adb50202927b53808a:211111' => 'Pentax K10D (L)', '8f70e4a31ad4584043ddc655eca17e89:211111' => 'Pentax K10D (M)', '90d3c964eaf6e4bd12cf5ca791a7d753:211111' => 'Pentax K10D (N)', '994a9f2060976d95719ca7064be3a99c:211111' => 'Pentax K10D (0)', '994a9f2060976d95719ca7064be3a99c:211111' => 'Pentax K10D/K20D (P)', '9971f02a466c47d640e8f20a2e4b55b9:211111' => 'Pentax K10D (Q)', 'a16626c285e5a2290d331f99f4eec774:211111' => 'Pentax K10D (R)', 'a64569d6387a118992e44e41aaeac27e:211111' => 'Pentax K10D (S)', 'a8055a53fda7f9a0e387026c81960aa4:211111' => 'Pentax K10D (T)', 'ab50a9f53a44ffecc54efe1cb7c6620a:211111' => 'Pentax K10D (U)', 'aeb34eb083acc888770d65e691497bcf:211111' => 'Pentax K10D (V)', 'af2a112c30fa29213a402dbd3c2b2d3a:211111' => 'Pentax K10D (W)', 'bb4475a9e14464eb4682fd81cceb1f91:211111' => 'Pentax K10D (X)', 'bf72e4d4aacbdaeb86fd3f67c8df2667:211111' => 'Pentax K10D (Y)', '0a953ba56b59fa0bbbdac0162ea1c96b:211111' => 'Pentax K10D (Z)', '387354b46b9726f33da5c0c1a0c383a0:211111' => 'Pentax K10D/K20D (AA)', '4e7f4e5cd15f4fc089ab25890619dc60:211111' => 'Pentax K10D (AB)', '6518270228fd20730740a08cc8a171f6:211111' => 'Pentax K10D (AC)', '72bce7df55635509eb6468fc6406941d:211111' => 'Pentax K10D (AD)', '7cafc25f204fc4ddf39d86e2f0f07b62:211111' => 'Pentax K10D (AE)', '811e5b0229f0e8baf4b40cd2d8777550:211111' => 'Pentax K10D (AF)', '9282a1cec6bbd1232b3673091164d43d:211111' => 'Pentax K10D (AG)', 'c59a4cf0beedbfd1b102dc3d3c8e73ac:211111' => 'Pentax K10D (AH)', 'd97b27b45fdbe82a79364e0939adbf90:121111' => 'Pentax K10D (AI)', 'db87a4c5c1d4e03dc6645bcf0535a930:211111' => 'Pentax K10D (AJ)', 'f9a93cb70da7bbe87e35cd9980a5fd47:211111' => 'Pentax K10D (AK)', 'ff6a158f803e42bfbf9f702c016b84b3:211111' => 'Pentax K10D (AL)', 'ff6d4a4a60a1c5e032e7fb7d9c91f817:211111' => 'Pentax K10D (AM)', 'dca5476d81d0ceca97f480fecd09b23c:211111' => 'Pentax K10D (AN)', 'efbe7634221900639b3c072395c61bef:211111' => 'Pentax K10D (AO)', 'f4dba22dd251350a21f8122f2777e7b0:211111' => 'Pentax K10D (AP)', 'f90135fcff0e1720dda86e9ad718c0c0:211111' => 'Pentax K10D (AQ)', 'fa3d7753be7b329ab9961657cbc65386:211111' => 'Pentax K10D (AR)', 'fa8720d025f2a164542b6a8e31112991:211111' => 'Pentax K10D (AS)', '2941d12ef34511d96b659ba30d682cd1:211111' => 'Pentax K10D (AT)', '2aa82b6717f1cdfe6b6d60a4486b5671:211111' => 'Pentax K10D (AU)', '2aa82b6717f1cdfe6b6d60a4486b5671:211111' => 'Pentax K10D (AV)', '3527616df6f26a3ab36b80a8d885fc07:211111' => 'Pentax K10D (AW)', '3527616df6f26a3ab36b80a8d885fc07:211111' => 'Pentax K10D (AX)', '3527616df6f26a3ab36b80a8d885fc07:211111' => 'Pentax K10D (AY)', '5ea9e766888399a41f3f1a3c5c15cd90:211111' => 'Pentax K10D (AZ)', 'f83d978290d0699054eabb0a7811c7a4:211111' => 'Pentax K10D (BA)', 'f83d978290d0699054eabb0a7811c7a4:211111' => 'Pentax K10D (BB)', 'fa8720d025f2a164542b6a8e31112991:211111' => 'Pentax K10D/K100D', '586b40c7d4b95e11309636703e81fbe9:211111' => 'Pentax K20D/K200D/Optio 230, Best; Canon EOS 10D/300D/350D, Fine', 'b73481179da895f3b9ecea1737054a9c:211111' => 'Pentax K20D, Best (B)', 'b8fce00f93108e7db57a012c51fad341:211111' => 'Pentax K20D, Best (C)', '5ee766b90badc8fed5a5386e78a80783:211111' => 'Pentax *istDS, Good (edit in camera)', 'd528fac9b63536ff52041745945dcb09:211111' => 'Pentax *istDS, Better (edit in camera)', 'd6390cc36d2f03c1d2dd13d6910ca46b:211111' => 'Pentax *istDS, Best (edit in camera)', 'dc149d41f08d16cb9d52a5bdd487a67e:121111' => 'Pentax *istD/K100Dsuper/Optio300GS, Best', 'e10030f09a14acdd647eff13c0bf333a:211111' => 'Pentax *istD/DS/DS2/K100D/Optio330GS/33L, Best', 'ef0cd1902fb1afe284468a67eaffd078:211111' => 'Pentax *istDS/K100D/K100Dsuper, Good', 'f1262dfcada6e6c2cd4b9fa7e881233b:211111' => 'Pentax *istDL/DS, Better', 'f3235a7d187d083b7b7ead949653f730:211111' => 'Pentax K20D/K200D, Best (D)', '6686cddc46088f0987e7476861fbfb47:211111' => 'Pentax K2000, Best (A)', '5910b8431fdd8ab93ce258f366c4b867:211111' => 'Pentax K2000, Best (B)', 'c8bfcc60aeec937300405f59373be4ef:211111' => 'Pentax K2000, Best (C)', '689a0e3511f2aea75637f46e6af9fd9f:211111' => 'Pentax Optio A40, Best (edit in camera)', '8d14598ae9cc1b7f5357424a19d05a71:211111' => 'Pentax Optio A30/A40, Good', 'a4cb8a3a000484b37c4373cde1170091:211111' => 'Pentax Optio A30/A40/S10/S12, Best', '0ac5cb651c496369d0e924ae070b7c53:211111' => 'Pentax Optio A40, Better (edit in camera)', '1068be028c278941bd8abf3b0021655e:211111' => 'Pentax Optio A40, Good (edit in camera)', '336eeeb78e386bf66fe6325b4a0fcfa6:211111' => 'Pentax Optio A40, Better', 'ae2efaf1a96a4fdcfa9003b9aa963ae4:221111' => 'Pentax Optio 330, Best (vertical)', '3803d7f6b7aed64c658c21dbb2bc0797:221111' => 'Pentax Optio 330, Best', '353bf09900feb764885329e7bebfd95e:211111' => 'Pentax Optio 330GS, Good', '6c2bc41a4b6ad1e20655ffcc0dfd2c41:221111' => 'Pentax Optio 330RS, Fine', 'e9206045838e9f5f9bd207744254e96d:221111' => 'Pentax Optio 430, Best', '759fb7011e13fa5f975bb668f5b94d8b:211111' => 'Pentax Optio 550/750Z/M60/X, Best', '637103ef9d8e84f8345f8218f158fc3c:211111' => 'Pentax Optio 550/M10/T30/W30, Best', '23f2a5970523c5f7fd2ab7fa3b09dff9:211111' => 'Pentax Optio 550/555/M20/M30/W10/W20, Best', '8d2f02a07bad6b5cec48466036fef319:121111' => 'Pentax Optio 550, Better', '27297008a89ee49804f0859ea6435878:211111' => 'Pentax Optio MX, Best', '6cfe3833aadd87487afc11129d8cb2aa:221111' => 'Pentax Optio S, Better', 'fcef35c97674aeb26c67e539b726057f:221111' => 'Pentax Optio S, Best (A)', '13b2644cdad6f75767667e8ea5c218a3:221111' => 'Pentax Optio S, Best (B)', '310b70bc4fac884f64a07040a4b87468:221111' => 'Pentax Optio S, Best (C)', 'aa05fbe795d86a1063c55865e8613536:221111' => 'Pentax Optio S, Best (D)', 'd57ac6956e4fe86c386f0eef00a5e021:221111' => 'Pentax Optio S, Best (E)', '28782f5ee24fe983fe90b9438b39ae2e:221111' => 'Pentax Optio S4, Best', '804bd63907214e005f01fb65a2bb00e6:221111' => 'Pentax Optio S4i, Best', '84285f5b3248884488e5142b8c7210e2:211111' => 'Pentax Optio S6, Good', 'e97694f0093de13987a335e131b30eb0:221111' => 'Pentax Optio SVi, Best', '037d043c8a8d5332c28d59f71a0dcfd2:211111' => 'Pentax Optio E35', 'dd8ad8ce688c4248f924022c38d3228c:211111' => 'Pentax Optio 43WR, Good', 'e55e0c1adbbca8b9d100881248050eb5:211111' => 'Pentax Optio 43WR, Better', '7770d784d852b3333f9213713e481125:211111' => 'Pentax Optio 450, Best', '61d311bde22762ae0e88b768e835eced:211111' => 'Pentax Optio 33WR/M50, Best', 'bc066ff3fbea8a290c6f9882687945e0:221111' => 'Pentax Optio 430RS, Fine', 'b6bd9f956309a20e3a56294077536391:211111' => 'Pentax Optio A10/S7, Best', 'a4ecd6b77f06671530942783c3595aca:211111' => 'Pentax Optio A20, Best', '40f66b0a209f24716320636b776dda94:211111' => 'Pentax Optio E30/E40, Best', '59a868b3d11d9cdc87859c02757e13bb:211111' => 'Pentax Optio E50, Best', '9570584f017ed2c4f0fb91782b51faa9:211111' => 'Pentax Optio M40/Z10, Best', '5a74f09fb2586fa000c42e98e3b9f2d8:211111' => 'Pentax Optio T10', '0867bdf854d1fbb141411de518a66ba6:211111' => 'Pentax Optio T20 (A)', 'f74b3853185743c111ccb13e6febdc21:211111' => 'Pentax Optio T20 (B)', 'b6640d3879f9922708d23e6adb3d61c9:211111' => 'Pentax Optio V10, Best', '253467dc35dfbb32cb3d619fc635d689:211111' => 'Pentax Optio V20/W60, Best', # Sony '6bd350bf5df27ed1b5bf1d83fa9d021f:211111' => 'Sony DSLR-A700, Fine', ); #------------------------------------------------------------------------------ # Estimate JPEG quality from quantization tables (ref 3) # Inputs: 0) 1) DQT segments array ref # Returns: JPEG quality, or undefined if it can't be calculated sub EstimateQuality($) { local $_; my $dqtList = shift; my ($i, $dqt, @qtbl, $quality, @hash, @sums); # unpack DQT segments and sum quantization tables my $sum=0; DQT: foreach $dqt (@$dqtList) { next unless defined $dqt; for ($i=1; $i+64<=length($dqt); $i+=65) { my @qt = unpack("x$i C64", $dqt); $sum += $_ foreach @qt; push @qtbl, \@qt; last DQT if @qtbl >= 4; } } return undef unless @qtbl; my $qval = $qtbl[0][2] + $qtbl[0][53]; if (@qtbl > 1) { # color JPEG $qval += $qtbl[1][0] + $qtbl[1][63]; @hash =( 1020, 1015, 932, 848, 780, 735, 702, 679, 660, 645, 632, 623, 613, 607, 600, 594, 589, 585, 581, 571, 555, 542, 529, 514, 494, 474, 457, 439, 424, 410, 397, 386, 373, 364, 351, 341, 334, 324, 317, 309, 299, 294, 287, 279, 274, 267, 262, 257, 251, 247, 243, 237, 232, 227, 222, 217, 213, 207, 202, 198, 192, 188, 183, 177, 173, 168, 163, 157, 153, 148, 143, 139, 132, 128, 125, 119, 115, 108, 104, 99, 94, 90, 84, 79, 74, 70, 64, 59, 55, 49, 45, 40, 34, 30, 25, 20, 15, 11, 6, 4 ); @sums = ( 32640, 32635, 32266, 31495, 30665, 29804, 29146, 28599, 28104, 27670, 27225, 26725, 26210, 25716, 25240, 24789, 24373, 23946, 23572, 22846, 21801, 20842, 19949, 19121, 18386, 17651, 16998, 16349, 15800, 15247, 14783, 14321, 13859, 13535, 13081, 12702, 12423, 12056, 11779, 11513, 11135, 10955, 10676, 10392, 10208, 9928, 9747, 9564, 9369, 9193, 9017, 8822, 8639, 8458, 8270, 8084, 7896, 7710, 7527, 7347, 7156, 6977, 6788, 6607, 6422, 6236, 6054, 5867, 5684, 5495, 5305, 5128, 4945, 4751, 4638, 4442, 4248, 4065, 3888, 3698, 3509, 3326, 3139, 2957, 2775, 2586, 2405, 2216, 2037, 1846, 1666, 1483, 1297, 1109, 927, 735, 554, 375, 201, 128 ); } else { # greyscale JPEG @hash = ( 510, 505, 422, 380, 355, 338, 326, 318, 311, 305, 300, 297, 293, 291, 288, 286, 284, 283, 281, 280, 279, 278, 277, 273, 262, 251, 243, 233, 225, 218, 211, 205, 198, 193, 186, 181, 177, 172, 168, 164, 158, 156, 152, 148, 145, 142, 139, 136, 133, 131, 129, 126, 123, 120, 118, 115, 113, 110, 107, 105, 102, 100, 97, 94, 92, 89, 87, 83, 81, 79, 76, 74, 70, 68, 66, 63, 61, 57, 55, 52, 50, 48, 44, 42, 39, 37, 34, 31, 29, 26, 24, 21, 18, 16, 13, 11, 8, 6, 3, 2 ); @sums = ( 16320, 16315, 15946, 15277, 14655, 14073, 13623, 13230, 12859, 12560, 12240, 11861, 11456, 11081, 10714, 10360, 10027, 9679, 9368, 9056, 8680, 8331, 7995, 7668, 7376, 7084, 6823, 6562, 6345, 6125, 5939, 5756, 5571, 5421, 5240, 5086, 4976, 4829, 4719, 4616, 4463, 4393, 4280, 4166, 4092, 3980, 3909, 3835, 3755, 3688, 3621, 3541, 3467, 3396, 3323, 3247, 3170, 3096, 3021, 2952, 2874, 2804, 2727, 2657, 2583, 2509, 2437, 2362, 2290, 2211, 2136, 2068, 1996, 1915, 1858, 1773, 1692, 1620, 1552, 1477, 1398, 1326, 1251, 1179, 1109, 1031, 961, 884, 814, 736, 667, 592, 518, 441, 369, 292, 221, 151, 86, 64 ); } for ($i=0; $i<100; ++$i) { next if $qval < $hash[$i] and $sum < $sums[$i]; $quality = $i + 1 if ($qval <= $hash[$i] and $sum <= $sums[$i]) or $i >= 50; last; } return $quality; } #------------------------------------------------------------------------------ # Calculate JPEGDigest and/or JPEGQualityEstimate # Inputs: 0) ExifTool object ref, 1) DQT segments array ref, 2) subsampling string sub Calculate($$$) { my ($et, $dqtList, $subSampling) = @_; # estimate JPEG quality if requested my $all = ($$et{OPTIONS}{RequestAll} and $$et{OPTIONS}{RequestAll} > 2); if ($all or $$et{REQ_TAG_LOOKUP}{jpegqualityestimate}) { my $quality = EstimateQuality($dqtList); $quality = '<unknown>' unless defined $quality; $et->FoundTag('JPEGQualityEstimate', $quality); } return unless ($all or $$et{REQ_TAG_LOOKUP}{jpegdigest}) and $subSampling; unless (eval { require Digest::MD5 }) { $et->Warn('Digest::MD5 must be installed to calculate JPEGDigest'); return; } # create a string of DQT tables (in indexed order), separated by zero bytes my $dqt = ''; my $dat; foreach $dat (@$dqtList) { next unless $dat; $dqt .= "\0" if $dqt; $dqt .= $dat; } # generate ASCII-hex string of DQT MD5 digest my $md5 = unpack 'H*', Digest::MD5::md5($dqt); # add sub-sampling string unless we get a match without it $md5 .= ':' . $subSampling unless $PrintConv{$md5}; # add print conversion for JPEGDigest dynamically so it doesn't # bulk up the documentation and slow down loading unnecessarily $Image::ExifTool::Extra{JPEGDigest}{PrintConv} = \%PrintConv; $et->FoundTag('JPEGDigest', $md5); } 1; # end __END__ =head1 NAME Image::ExifTool::JPEGDigest - Calculate JPEGDigest and JPEGQualityEstimate =head1 SYNOPSIS This module is used by Image::ExifTool =head1 DESCRIPTION This module contains a lookup for values of the JPEG DQT digest, allowing some image identification from JPEG data alone. It also calculates an estimated JPEG quality if requested. =head1 AUTHOR Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca) This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 REFERENCES =over 4 =item L<https://github.com/ImageMagick/ImageMagick/blob/master/coders/jpeg.c> =back =head1 ACKNOWLEDGEMENTS Thanks to Jens Duttke for most of the work that went into this module, and to Franz Buchinger for the values he added. =head1 SEE ALSO L<Image::ExifTool::TagNames/JPEG Tags>, L<Image::ExifTool(3pm)|Image::ExifTool> =cut
83.069901
134
0.73388
ed0cd5c7828c93a853a60b3663fac6225d2345da
1,209
pm
Perl
lib/Google/Ads/GoogleAds/V3/Enums/ConversionActionTypeEnum.pm
PierrickVoulet/google-ads-perl
bc9fa2de22aa3e11b99dc22251d90a1723dd8cc4
[ "Apache-2.0" ]
null
null
null
lib/Google/Ads/GoogleAds/V3/Enums/ConversionActionTypeEnum.pm
PierrickVoulet/google-ads-perl
bc9fa2de22aa3e11b99dc22251d90a1723dd8cc4
[ "Apache-2.0" ]
null
null
null
lib/Google/Ads/GoogleAds/V3/Enums/ConversionActionTypeEnum.pm
PierrickVoulet/google-ads-perl
bc9fa2de22aa3e11b99dc22251d90a1723dd8cc4
[ "Apache-2.0" ]
null
null
null
# Copyright 2020, Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. package Google::Ads::GoogleAds::V3::Enums::ConversionActionTypeEnum; use strict; use warnings; use Const::Exporter enums => [ UNSPECIFIED => "UNSPECIFIED", UNKNOWN => "UNKNOWN", AD_CALL => "AD_CALL", CLICK_TO_CALL => "CLICK_TO_CALL", GOOGLE_PLAY_DOWNLOAD => "GOOGLE_PLAY_DOWNLOAD", GOOGLE_PLAY_IN_APP_PURCHASE => "GOOGLE_PLAY_IN_APP_PURCHASE", UPLOAD_CALLS => "UPLOAD_CALLS", UPLOAD_CLICKS => "UPLOAD_CLICKS", WEBPAGE => "WEBPAGE", WEBSITE_CALL => "WEBSITE_CALL" ]; 1;
35.558824
74
0.656741
ed2fce33113b235d5d8ca2712c566aa31ab0ed08
28,834
t
Perl
t/00-roles.t
kablamo/zeroclickinfo-goodies
d6b03c53d5bbd19bd7c06ea9f859a3e6ba2495ae
[ "Apache-2.0" ]
1
2020-02-22T14:02:31.000Z
2020-02-22T14:02:31.000Z
t/00-roles.t
danny0838/zeroclickinfo-goodies
d9501cffd587d6ac260afba22f45f4a1ba9ac6ef
[ "Apache-2.0" ]
null
null
null
t/00-roles.t
danny0838/zeroclickinfo-goodies
d9501cffd587d6ac260afba22f45f4a1ba9ac6ef
[ "Apache-2.0" ]
null
null
null
#!/usr/bin/env perl use strict; use warnings; use Test::MockTime qw( :all ); use Test::Most; use DDG::Test::Location; subtest 'NumberStyler' => sub { { package NumberRoleTester; use Moo; with 'DDG::GoodieRole::NumberStyler'; 1; } subtest 'Initialization' => sub { new_ok('NumberRoleTester', [], 'Applied to a class'); isa_ok(NumberRoleTester::number_style_regex(), 'Regexp', 'number_style_regex()'); }; subtest 'Valid numbers' => sub { my @valid_test_cases = ( [['0,013'] => 'euro'], [['4,431', '4.321'] => 'perl'], [['4,431', '4,32'] => 'euro'], [['4534,345.0', '1'] => 'perl'], # Unenforced commas. [['4,431', '4,32', '5,42'] => 'euro'], [['4,431', '4.32', '5.42'] => 'perl'], [['4_431_123', '4 32', '99.999 999'] => 'perl'], [['4e1', '-1e25', '4.5e-25'] => 'perl'], [['-1,1e25', '4,5e-25'] => 'euro'], [['4E1', '-1E25', '4.5E-25'] => 'perl'], [['-1,1E25', '4,5E-25'] => 'euro'], ); my $number_style_regex = NumberRoleTester::number_style_regex(); foreach my $tc (@valid_test_cases) { my @numbers = @{$tc->[0]}; my $expected_style_id = $tc->[1]; is(NumberRoleTester::number_style_for(@numbers)->id, $expected_style_id, '"' . join(' ', @numbers) . '" yields a style of ' . $expected_style_id); like($_, qr/^$number_style_regex$/, "$_ matches the number_style_regex") for(@numbers); } }; subtest 'Invalid numbers' => sub { my @invalid_test_cases = ( [['5234534.34.54', '1'] => 'has a mal-formed number'], [['4,431', '4,32', '4.32'] => 'is confusingly ambiguous'], [['4,431', '4.32.10', '5.42'] => 'is hard to figure'], [['4,431', '4,32,100', '5.42'] => 'has a mal-formed number'], [['4,431', '4,32,100', '5,42'] => 'is too crazy to work out'], [['4_431_123', "4\t32", '99.999 999'] => 'no tabs in numbers'], ); foreach my $tc (@invalid_test_cases) { my @numbers = @{$tc->[0]}; my $why_not = $tc->[1]; is(NumberRoleTester::number_style_for(@numbers), undef, '"' . join(' ', @numbers) . '" fails because it ' . $why_not); } }; }; subtest 'Dates' => sub { { package DatesRoleTester; use Moo; with 'DDG::GoodieRole::Dates'; 1; } my $test_datestring_regex; my $test_formatted_datestring_regex; my $test_descriptive_datestring_regex; subtest 'Initialization' => sub { new_ok('DatesRoleTester', [], 'Applied to a class'); $test_datestring_regex = DatesRoleTester::datestring_regex(); isa_ok($test_datestring_regex, 'Regexp', 'datestring_regex()'); $test_formatted_datestring_regex = DatesRoleTester::formatted_datestring_regex(); isa_ok($test_formatted_datestring_regex, 'Regexp', 'formatted_datestring_regex()'); $test_descriptive_datestring_regex = DatesRoleTester::descriptive_datestring_regex(); isa_ok($test_descriptive_datestring_regex, 'Regexp', 'descriptive_datestring_regex()'); }; subtest 'Working single dates' => sub { my %dates_to_match = ( # Defined formats: #ISO8601 '2014-11-27' => 1417046400, '1994-02-03 14:15:29 -0100' => 760288529, '1994-02-03 14:15:29' => 760284929, '1994-02-03T14:15:29' => 760284929, '19940203T141529Z' => 760284929, '19940203' => 760233600, #HTTP 'Sat, 09 Aug 2014 18:20:00' => 1407608400, # RFC850 '08-Feb-94 14:15:29 GMT' => 760716929, # date(1) default 'Sun Sep 7 15:57:56 EST 2014' => 1410123476, 'Sun Sep 7 15:57:56 EDT 2014' => 1410119876, 'Sun Sep 14 15:57:56 UTC 2014' => 1410710276, 'Sun Sep 7 20:11:44 CET 2014' => 1410117104, 'Sun Sep 7 20:11:44 BST 2014' => 1410117104, # RFC 2822 'Sat, 13 Mar 2010 11:29:05 -0800' => 1268508545, # HTTP (without day) - any TZ # %d %b %Y %H:%M:%S %Z '01 Jan 2012 00:01:20 UTC' => 1325376080, '22 Jun 1998 00:00:02 GMT' => 898473602, '07 Sep 2014 20:11:44 CET' => 1410117104, '07 Sep 2014 20:11:44 cet' => 1410117104, '09 Aug 2014 18:20:00' => 1407608400, #Undefined/Natural formats: '13/12/2011' => 1323734400, #DMY '01/01/2001' => 978307200, #Ambiguous, but valid '29 June 2014' => 1404000000, #DMY '05 Mar 1990' => 636595200, #DMY (short) 'June 01 2012' => 1338508800, #MDY 'May 05 2011' => 1304553600, #MDY 'may 01 2010' => 1272672000, '1st june 1994' => 770428800, '5 th january 1993' => 726192000, 'JULY 4TH 1976' => 205286400, '07/13/1984' => 458524800, '7/13/1984' => 458524800, '13/07/1984' => 458524800, '13.07.1984' => 458524800, '7.13.1984' => 458524800, 'june-01-2012' => 1338508800, 'feb/01/2010' => 1264982400, '01-jun-2012' => 1338508800, '01/june/2012' => 1338508800, 'JUN-1-2012' => 1338508800, '4-jUL-1976' => 205286400, '2001-1-1' => 978307200, 'jan 6, 2014' => 1388966400, '6, jan 2014' => 1388966400, '6 jan, 2014' => 1388966400, '29 feb, 2012' => 1330473600, '2038-01-20' => 2147558400, # 32-bit signed int UNIX epoch ends 2038-01-19 '1780-01-20' => -5994172800, # Way before 32-bit signed int epoch '5th of january 1993' => 726192000, '5 of jan 1993' => 726192000, 'june the 1st 2012' => 1338508800, "11 march 2000 00:00:00" => 952732800 ); foreach my $test_date (sort keys %dates_to_match) { like($test_date, qr/^$test_datestring_regex$/, "$test_date matches the datestring_regex"); like($test_date, qr/^$test_formatted_datestring_regex$/, "$test_date matches the formatted_datestring_regex"); # test_regex should not contain any submatches $test_date =~ qr/^$test_datestring_regex$/; ok(scalar @- == 1 && scalar @+ == 1, ' with no sub-captures.'); $test_formatted_datestring_regex =~ qr/^$test_datestring_regex$/; ok(scalar @- == 1 && scalar @+ == 1, ' with no sub-captures.'); my $date_object = DatesRoleTester::parse_formatted_datestring_to_date($test_date); isa_ok($date_object, 'DateTime', $test_date); is($date_object->epoch, $dates_to_match{$test_date}, '... which represents the correct time.'); } }; subtest 'Working multi-dates' => sub { my @date_sets = ({ src => ['01/10/2014', '01/06/2014'], output => [1389312000, 1388966400], # 10 jan; 6 jan }, { src => ['01/13/2014', '01/06/2014'], output => [1389571200, 1388966400], # 13 jan; 6 jan }, { src => ['05/06/2014', '20/06/2014'], output => [1401926400, 1403222400], # 5 jun; 20 jun }, { src => ['20/06/2014', '05/06/2014'], output => [1403222400, 1401926400], # 20 jun; 5 jun }, { src => ['5/06/2014', '20/06/2014'], output => [1401926400, 1403222400], # 5 jun; 20 jun }, { src => ['20/06/2014', '5/06/2014'], output => [1403222400, 1401926400], # 20 jun; 5 jun }, { src => ['20-06-2014', '5-06-2014'], output => [1403222400, 1401926400], # 20 jun; 5 jun }, { src => ['5-06-2014', '20-06-2014'], output => [1401926400, 1403222400], # 5 jun; 20 jun }, { src => ['5-June-2014', '20-06-2014'], output => [1401926400, 1403222400], # 5 jun; 20 jun }, { src => ['5-06-2014', '4th January 2013', '20-06-2014'], output => [1401926400, 1357257600, 1403222400], # 5 jun; 4 jan, 20 jun }, { src => ['7-11-2015', 'august'], output => [1436572800, 1438387200], # 11 jul; aug 1 }, ); foreach my $set (@date_sets) { my @source = @{$set->{src}}; eq_or_diff([map { $_->epoch } (DatesRoleTester::parse_all_datestrings_to_date(@source))], $set->{output}, '"' . join(', ', @source) . '": dates parsed correctly'); } }; subtest 'Strong dates and vague or relative dates mixed' => sub { set_fixed_time('2001-02-05T00:00:00Z'); my @date_sets = ( { src => ["1990-06-13", "december"], out => ['1990-06-13T00:00:00', '1990-12-01T00:00:00'] }, # { # src => ["1990-06-13", "last december"], # out => ['1990-06-13T00:00:00', '2000-12-01T00:00:00'] # }, # { # src => ["1990-06-13", "next december"], # out => ['1990-06-13T00:00:00', '2001-12-01T00:00:00'] # }, { src => ["1990-06-13", "today"], out => ['1990-06-13T00:00:00', '2001-02-05T00:00:00'] }, { src => ["1990-06-13", "tomorrow"], out => ['1990-06-13T00:00:00', '2001-02-06T00:00:00'] }, { src => ["1990-06-13", "yesterday"], out => ['1990-06-13T00:00:00', '2001-02-04T00:00:00'] } ); foreach my $set (@date_sets) { my @source = @{$set->{src}}; my @expectation = @{$set->{out}}; my @result = DatesRoleTester::parse_all_datestrings_to_date(@source); is_deeply(\@result, \@expectation, join(", ", @source)); } restore_time(); }; subtest 'Relative naked months' => sub { my %time_strings = ( "2015-01-13T00:00:00Z" => { src => ['january', 'february'], output => ['2015-01-01T00:00:00', '2015-02-01T00:00:00'], }, "2015-02-01T00:00:00Z" => { src => ['january', 'february'], output => ['2016-01-01T00:00:00', '2016-02-01T00:00:00'], }, "2015-03-01T00:00:00Z" => { src => ['january', 'february'], output => ['2016-01-01T00:00:00', '2016-02-01T00:00:00'], }, "2014-12-01T00:00:00Z" => { src => ['january', 'february'], output => ['2015-01-01T00:00:00', '2015-02-01T00:00:00'], }, ); foreach my $query_time (sort keys %time_strings) { set_fixed_time($query_time); my @source = @{$time_strings{$query_time}{src}}; my @expectation = @{$time_strings{$query_time}{output}}; my @result = DatesRoleTester::parse_all_datestrings_to_date(@source); is_deeply(\@result, \@expectation); } }; subtest 'Invalid single dates' => sub { my %bad_strings_match = ( '24/8' => 0, '123' => 0, '123-84-1' => 0, '1st january' => 0, '1/1/1' => 0, '2014-13-13' => 1, 'Feb 38th 2015' => 1, '2014-02-29' => 1, ); foreach my $test_string (sort keys %bad_strings_match) { if ($bad_strings_match{$test_string}) { like($test_string, qr/^$test_formatted_datestring_regex$/, "$test_string matches formatted_datestring_regex"); } else { unlike($test_string, qr/^$test_formatted_datestring_regex$/, "$test_string does not match formatted_datestring_regex"); } my $result; lives_ok { $result = DatesRoleTester::parse_formatted_datestring_to_date($test_string) } '... and does not kill the parser.'; is($result, undef, '... and returns undef to signal failure.'); } }; subtest 'Invalid multi-format' => sub { my @invalid_date_sets = ( ['01/13/2014', '13/06/2014'], ['13/01/2014', '01/31/2014'], ['38/06/2014', '13/06/2014'], ['01/13/2014', '01/85/2014'], ['13/01/2014', '01/31/2014', '13/06/2014'], ['13/01/2014', '2001-01-01', '14/01/2014', '01/31/2014'], ); foreach my $set (@invalid_date_sets) { my @source = @$set; my @date_results = DatesRoleTester::parse_all_datestrings_to_date(@source); is(@date_results, 0, '"' . join(', ', @source) . '": cannot be parsed in combination.'); } }; subtest 'Valid standard string format' => sub { my %date_strings = ( '01 Jan 2001' => ['2001-1-1', 'January 1st, 2001', '1st January, 2001'], '13 Jan 2014' => ['13/01/2014', '01/13/2014', '13th Jan 2014'], ); foreach my $result (sort keys %date_strings) { foreach my $test_string (@{$date_strings{$result}}) { is(DatesRoleTester::date_output_string($test_string), $result, $test_string . ' normalizes for output as ' . $result); } } }; subtest 'Valid clock string format' => sub { my %date_strings = ( '01 Jan 2012 00:01:20 UTC' => ['01 Jan 2012 00:01:20 UTC', '01 Jan 2012 00:01:20 utc'], '22 Jun 1998 00:00:02 UTC' => ['22 Jun 1998 00:00:02 GMT'], '07 Sep 2014 20:11:44 EST' => ['07 Sep 2014 20:11:44 EST'], '07 Sep 2014 20:11:44 -0400' => ['07 Sep 2014 20:11:44 EDT'], '09 Aug 2014 18:20:00 UTC' => ['09 Aug 2014 18:20:00'], ); foreach my $result (sort keys %date_strings) { foreach my $test_string (@{$date_strings{$result}}) { is(DatesRoleTester::date_output_string($test_string, 1), $result, $test_string . ' normalizes for output as ' . $result); } } }; subtest 'Invalid standard string format' => sub { my %bad_stuff = ( 'Empty string' => '', 'Hashref' => {}, 'Object' => DatesRoleTester->new, ); foreach my $description (sort keys %bad_stuff) { my $result; lives_ok { $result = DatesRoleTester::date_output_string($bad_stuff{$description}) } $description . ' does not kill the string output'; is($result, '', '... and yields an empty string as a result'); } }; subtest 'Vague strings' => sub { my %time_strings = ( '2000-08-01T00:00:00Z' => { 'next december' => '01 Dec 2000', 'last january' => '01 Jan 2000', 'this year' => '01 Aug 2000', 'june' => '01 Jun 2001', 'december 2015' => '01 Dec 2015', 'june 2000' => '01 Jun 2000', 'jan' => '01 Jan 2001', 'august' => '01 Aug 2000', 'aug' => '01 Aug 2000', 'next jan' => '01 Jan 2001', 'last jan' => '01 Jan 2000', 'feb 2038' => '01 Feb 2038', 'next day' => '02 Aug 2000', }, '2015-12-01T00:00:00Z' => { 'next december' => '01 Dec 2016', 'last january' => '01 Jan 2015', 'june' => '01 Jun 2016', 'december' => '01 Dec 2015', 'december 2015' => '01 Dec 2015', 'june 2000' => '01 Jun 2000', 'jan' => '01 Jan 2016', 'next jan' => '01 Jan 2016', 'last jan' => '01 Jan 2015', 'feb 2038' => '01 Feb 2038', 'now' => '01 Dec 2015', 'today' => '01 Dec 2015', 'current day' => '01 Dec 2015', 'next month' => '01 Jan 2016', 'this week' => '01 Dec 2015', '1 month ago' => '01 Nov 2015', '2 years ago' => '01 Dec 2013' }, '2000-01-01T00:00:00Z' => { 'feb 21st' => '21 Feb 2000', 'january' => '01 Jan 2000', '11th feb' => '11 Feb 2000', 'march 13' => '13 Mar 2000', '12 march' => '12 Mar 2000', 'next week' => '08 Jan 2000', 'last week' => '25 Dec 1999', 'tomorrow' => '02 Jan 2000', 'yesterday' => '31 Dec 1999', 'last year' => '01 Jan 1999', 'next year' => '01 Jan 2001', 'in a day' => '02 Jan 2000', 'in a week' => '08 Jan 2000', 'in a month' => '01 Feb 2000', 'in a year' => '01 Jan 2001', 'in 1 day' => '02 Jan 2000', 'in 2 weeks' => '15 Jan 2000', 'in 3 months' => '01 Apr 2000', }, '2014-10-08T00:00:00Z' => { 'next week' => '15 Oct 2014', 'this week' => '08 Oct 2014', 'last week' => '01 Oct 2014', 'next month' => '08 Nov 2014', 'this month' => '08 Oct 2014', 'last month' => '08 Sep 2014', 'next year' => '08 Oct 2015', 'this year' => '08 Oct 2014', 'last year' => '08 Oct 2013', 'december 2015' => '01 Dec 2015', 'march 13' => '13 Mar 2014', 'in a weeks time' => '15 Oct 2014', '2 months ago' => '08 Aug 2014', 'in 2 years' => '08 Oct 2016', 'a week ago' => '01 Oct 2014', 'a month ago' => '08 Sep 2014', 'in 2 days' => '10 Oct 2014' }, ); foreach my $query_time (sort keys %time_strings) { set_fixed_time($query_time); my %strings = %{$time_strings{$query_time}}; foreach my $test_date (sort keys %strings) { like($test_date, qr/^$test_descriptive_datestring_regex$/, "$test_date matches the descriptive_datestring_regex"); my $result = DatesRoleTester::parse_descriptive_datestring_to_date($test_date); isa_ok($result, 'DateTime', $test_date); is(DatesRoleTester::date_output_string($result), $strings{$test_date}, $test_date . ' relative to ' . $query_time); } } restore_time(); }; subtest 'Valid mixture of formatted and descriptive dates' => sub { set_fixed_time('2000-01-01T00:00:00Z'); my %mixed_dates_to_test = ( '2014-11-27' => 1417046400, '1994-02-03T14:15:29' => 760284929, 'Sat, 09 Aug 2014 18:20:00' => 1407608400, '08-Feb-94 14:15:29 GMT' => 760716929, '13/12/2011' => 1323734400, '01/01/2001' => 978307200, '29 June 2014' => 1404000000, '05 Mar 1990' => 636595200, 'June 01 2012' => 1338508800, 'May 05 2011' => 1304553600, 'February 21st' => 951091200, '11th feb' => 950227200, '11 march' => 952732800, '11 mar' => 952732800, 'jun 21' => 961545600, 'next january' => 978307200, 'december' => 975628800, '22 may 2000 08:00:00' => 958982400, '22 may 08:00:00' => 958982400, '22 may 08:00' => 958982400, '08:00 22 may' => 958982400, ); foreach my $test_mixed_date (sort keys %mixed_dates_to_test) { like($test_mixed_date, qr/^$test_datestring_regex$/, "$test_mixed_date matches the datestring_regex"); my $parsed_date_object = DatesRoleTester::parse_datestring_to_date($test_mixed_date); isa_ok($parsed_date_object, 'DateTime', $test_mixed_date); is($parsed_date_object->epoch, $mixed_dates_to_test{$test_mixed_date}, ' ... represents the correct time.'); } restore_time(); }; subtest 'Relative dates with location' => sub { my $test_location = test_location('in'); { package DDG::Goodie::FakerDater; use Moo; with 'DDG::GoodieRole::Dates'; our $loc = $test_location; sub pds { shift; parse_datestring_to_date(@_); } 1; } my $with_loc = new_ok('DDG::Goodie::FakerDater', [], 'With location'); set_fixed_time('2013-12-31T23:00:00Z'); my $today_obj; lives_ok { $today_obj = $with_loc->pds('today'); } 'Parsed out today at just before midnight UTC NYE, 2013'; is($today_obj->time_zone_long_name, 'Asia/Kolkata', '... in our local time zone'); is($today_obj->year, 2014, '... where it is already 2014'); is($today_obj->hms, '04:30:00', '... for about 4.5 hours'); is($today_obj->offset / 3600, 5.5, '... which seems just about right.'); restore_time(); }; subtest 'Valid Years' => sub { #my @valids = ('1', '0001', '9999', 2015, 1997); my @valids = ('1'); my @invalids = (-1, 0, 10000); foreach my $case (@valids) { my $result; lives_ok { $result = DatesRoleTester::is_valid_year($case) }; is($result, "1", "$case is a valid year"); } foreach my $case (@invalids) { my $result; lives_ok { $result = DatesRoleTester::is_valid_year($case) }; is($result, '', "$case is an invalid year"); } } }; subtest 'ImageLoader' => sub { subtest 'object with no share' => sub { # We have to wrap the function in a method in order to get the call-stack correct. { package ImgRoleTester; use Moo; with 'DDG::GoodieRole::ImageLoader'; sub img_wrap { shift; goodie_img_tag(@_); } 1; } my $no_share; subtest 'Initialization' => sub { $no_share = new_ok('ImgRoleTester', [], 'Applied to class'); }; subtest 'non-share enabled object attempts' => sub { my %no_deaths = ( 'undef' => undef, 'array ref' => [], 'killer code ref' => sub { die }, 'with itself' => $no_share, 'empty hash ref' => +{}, 'nonsense hash ref' => {ding => 'dong'}, 'proper' => {filename => 'hi.jpg'}, ); foreach my $desc (sort keys %no_deaths) { lives_ok { $no_share->goodie_img_tag($no_deaths{$desc}) } $desc . ': does not die.'; } }; }; subtest 'object with a share' => sub { our $b64_gif = 'R0lGODlhEAAOALMAAOazToeHh0tLS/7LZv/0jvb29t/f3//Ub//ge8WSLf/rhf/3kdbW1mxsbP//mf///yH5BAAAAAAALAAAAAAQAA4AAARe8L1Ekyky67QZ1hLnjM5UUde0ECwLJoExKcppV0aCcGCmTIHEIUEqjgaORCMxIC6e0CcguWw6aFjsVMkkIr7g77ZKPJjPZqIyd7sJAgVGoEGv2xsBxqNgYPj/gAwXEQA7'; our $final_src = 'src="data:image/gif;base64,' . $b64_gif; { package DDG::Goodie::ImgShareTester; use Moo; use HTML::Entities; use Path::Class; # Hopefully the real share stays implemented this way. use MIME::Base64; with 'DDG::GoodieRole::ImageLoader'; our $tmp_dir = Path::Class::tempdir(CLEANUP => 1); our $tmp_file = file(($tmp_dir->tempfile(TEMPLATE => 'img_XXXXXX', SUFFIX => '.gif'))[1]); # Always return the same file for our purposes here. sub share { $tmp_file } sub html_enc { encode_entities(@_) } # Deal with silly symbol table twiddling. sub fill_temp { $tmp_file->spew(iomode => '>:bytes', decode_base64($b64_gif)) } sub kill_temp { undef $tmp_file } sub img_wrap { shift; goodie_img_tag(@_); } 1; } my $with_share; subtest 'Initialization' => sub { $with_share = new_ok('DDG::Goodie::ImgShareTester', [], 'Applied to class'); }; subtest 'tag creation' => sub { my $filename = $with_share->share()->stringify; my $tag_content; lives_ok { $tag_content = $with_share->img_wrap({filename => $filename}) } 'Empty file does not die'; is($tag_content, '', '... but returns empty tag.'); $with_share->fill_temp; lives_ok { $tag_content = $with_share->img_wrap({filename => $filename}) } 'Newly filled file does not die'; like($tag_content, qr/$final_src/, '... contains proper data'); lives_ok { $tag_content = $with_share->img_wrap({filename => $filename, alt => 'Yo!'}) } 'With alt'; like($tag_content, qr/$final_src/, '... contains proper data'); like($tag_content, qr/alt=\"Yo!\"/, '... and proper alt attribute'); lives_ok { $tag_content = $with_share->img_wrap({filename => $filename, alt => 'Yo!', height => 12}) } 'Plus height'; like($tag_content, qr/$final_src/, '... contains proper data'); like($tag_content, qr/alt="Yo!"/, '... and proper alt attribute'); like($tag_content, qr/height="12"/, '... and proper height attribute'); lives_ok { $tag_content = $with_share->img_wrap({filename => $filename, alt => 'Yo!', height => 12, width => 10}) } 'Plus width'; like($tag_content, qr/$final_src/, '... contains proper data'); like($tag_content, qr/alt="Yo!"/, '... and proper alt attribute'); like($tag_content, qr/height="12"/, '... and proper height attribute'); like($tag_content, qr/width="10"/, '... and proper width attribute'); lives_ok { $tag_content = $with_share->img_wrap({filename => $filename, alt => 'hello"there!', height => 12, width => 10, class => 'smooth' }); } 'Plus class'; like($tag_content, qr/$final_src/, '... contains proper data'); like($tag_content, qr/alt="hello&quot;there!"/, '... and proper alt attribute'); like($tag_content, qr/height="12"/, '... and proper height attribute'); like($tag_content, qr/width="10"/, '... and proper width attribute'); like($tag_content, qr/class="smooth"/, '... and proper class attribute'); lives_ok { $tag_content = $with_share->img_wrap({filename => $filename, atl => 'Yo!', height => 12, width => 10, class => 'smooth'}) } 'Any mispelled does not die'; is($tag_content, '', '... but yields an empty tag'); $with_share->kill_temp; lives_ok { $tag_content = $with_share->img_wrap({filename => $filename, alt => 'Yo!', height => 12, width => 10, class => 'smooth'}) } 'File disappeared does not die'; is($tag_content, '', '... but yields an empty tag'); }; }; }; done_testing;
45.623418
249
0.473504
ed6355dacdd5f3ed1b05f7dffc117531c2dea53b
5,862
pm
Perl
lib/EzmaxApi/Object/EzsigndocumentGetTemporaryProofV1Response.pm
ezmaxinc/eZmax-SDK-perl
3de20235136371b946247d2aed9e5e5704a4051c
[ "MIT" ]
null
null
null
lib/EzmaxApi/Object/EzsigndocumentGetTemporaryProofV1Response.pm
ezmaxinc/eZmax-SDK-perl
3de20235136371b946247d2aed9e5e5704a4051c
[ "MIT" ]
null
null
null
lib/EzmaxApi/Object/EzsigndocumentGetTemporaryProofV1Response.pm
ezmaxinc/eZmax-SDK-perl
3de20235136371b946247d2aed9e5e5704a4051c
[ "MIT" ]
null
null
null
=begin comment eZmax API Definition (Full) This API expose all the functionnalities for the eZmax and eZsign applications. The version of the OpenAPI document: 1.1.7 Contact: support-api@ezmax.ca Generated by: https://openapi-generator.tech =end comment =cut # # NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). # Do not edit the class manually. # Ref: https://openapi-generator.tech # package EzmaxApi::Object::EzsigndocumentGetTemporaryProofV1Response; require 5.6.0; use strict; use warnings; use utf8; use JSON qw(decode_json); use Data::Dumper; use Module::Runtime qw(use_module); use Log::Any qw($log); use Date::Parse; use DateTime; use EzmaxApi::Object::CommonResponse; use EzmaxApi::Object::CommonResponseObjDebug; use EzmaxApi::Object::CommonResponseObjDebugPayload; use EzmaxApi::Object::EzsigndocumentGetTemporaryProofV1ResponseAllOf; use EzmaxApi::Object::EzsigndocumentGetTemporaryProofV1ResponseMPayload; use base ("Class::Accessor", "Class::Data::Inheritable"); # #Response for GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getTemporaryProof # # NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). Do not edit the class manually. # REF: https://openapi-generator.tech # =begin comment eZmax API Definition (Full) This API expose all the functionnalities for the eZmax and eZsign applications. The version of the OpenAPI document: 1.1.7 Contact: support-api@ezmax.ca Generated by: https://openapi-generator.tech =end comment =cut # # NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). # Do not edit the class manually. # Ref: https://openapi-generator.tech # __PACKAGE__->mk_classdata('attribute_map' => {}); __PACKAGE__->mk_classdata('openapi_types' => {}); __PACKAGE__->mk_classdata('method_documentation' => {}); __PACKAGE__->mk_classdata('class_documentation' => {}); # new plain object sub new { my ($class, %args) = @_; my $self = bless {}, $class; $self->init(%args); return $self; } # initialize the object sub init { my ($self, %args) = @_; foreach my $attribute (keys %{$self->attribute_map}) { my $args_key = $self->attribute_map->{$attribute}; $self->$attribute( $args{ $args_key } ); } } # return perl hash sub to_hash { my $self = shift; my $_hash = decode_json(JSON->new->convert_blessed->encode($self)); return $_hash; } # used by JSON for serialization sub TO_JSON { my $self = shift; my $_data = {}; foreach my $_key (keys %{$self->attribute_map}) { if (defined $self->{$_key}) { $_data->{$self->attribute_map->{$_key}} = $self->{$_key}; } } return $_data; } # from Perl hashref sub from_hash { my ($self, $hash) = @_; # loop through attributes and use openapi_types to deserialize the data while ( my ($_key, $_type) = each %{$self->openapi_types} ) { my $_json_attribute = $self->attribute_map->{$_key}; if ($_type =~ /^array\[(.+)\]$/i) { # array my $_subclass = $1; my @_array = (); foreach my $_element (@{$hash->{$_json_attribute}}) { push @_array, $self->_deserialize($_subclass, $_element); } $self->{$_key} = \@_array; } elsif ($_type =~ /^hash\[string,(.+)\]$/i) { # hash my $_subclass = $1; my %_hash = (); while (my($_key, $_element) = each %{$hash->{$_json_attribute}}) { $_hash{$_key} = $self->_deserialize($_subclass, $_element); } $self->{$_key} = \%_hash; } elsif (exists $hash->{$_json_attribute}) { #hash(model), primitive, datetime $self->{$_key} = $self->_deserialize($_type, $hash->{$_json_attribute}); } else { $log->debugf("Warning: %s (%s) does not exist in input hash\n", $_key, $_json_attribute); } } return $self; } # deserialize non-array data sub _deserialize { my ($self, $type, $data) = @_; $log->debugf("deserializing %s with %s",Dumper($data), $type); if ($type eq 'DateTime') { return DateTime->from_epoch(epoch => str2time($data)); } elsif ( grep( /^$type$/, ('int', 'double', 'string', 'boolean'))) { return $data; } else { # hash(model) my $_instance = eval "EzmaxApi::Object::$type->new()"; return $_instance->from_hash($data); } } __PACKAGE__->class_documentation({description => 'Response for GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getTemporaryProof', class => 'EzsigndocumentGetTemporaryProofV1Response', required => [], # TODO } ); __PACKAGE__->method_documentation({ 'm_payload' => { datatype => 'EzsigndocumentGetTemporaryProofV1ResponseMPayload', base_name => 'mPayload', description => '', format => '', read_only => '', }, 'obj_debug_payload' => { datatype => 'CommonResponseObjDebugPayload', base_name => 'objDebugPayload', description => '', format => '', read_only => '', }, 'obj_debug' => { datatype => 'CommonResponseObjDebug', base_name => 'objDebug', description => '', format => '', read_only => '', }, }); __PACKAGE__->openapi_types( { 'm_payload' => 'EzsigndocumentGetTemporaryProofV1ResponseMPayload', 'obj_debug_payload' => 'CommonResponseObjDebugPayload', 'obj_debug' => 'CommonResponseObjDebug' } ); __PACKAGE__->attribute_map( { 'm_payload' => 'mPayload', 'obj_debug_payload' => 'objDebugPayload', 'obj_debug' => 'objDebug' } ); __PACKAGE__->mk_accessors(keys %{__PACKAGE__->attribute_map}); 1;
28.318841
133
0.621631
ed33ff5e20706455f1b16b56dd5a99b45d7cf67c
947
pm
Perl
lib/AmuseWikiFarm/Controller/Feed.pm
sceox/amusewiki
7d9fedb2abf4790c058ccd23c7f111a3db2464b9
[ "Artistic-1.0" ]
null
null
null
lib/AmuseWikiFarm/Controller/Feed.pm
sceox/amusewiki
7d9fedb2abf4790c058ccd23c7f111a3db2464b9
[ "Artistic-1.0" ]
39
2020-03-19T23:35:06.000Z
2020-05-07T20:22:01.000Z
lib/AmuseWikiFarm/Controller/Feed.pm
sceox/amusewiki
7d9fedb2abf4790c058ccd23c7f111a3db2464b9
[ "Artistic-1.0" ]
1
2020-04-01T21:10:25.000Z
2020-04-01T21:10:25.000Z
package AmuseWikiFarm::Controller::Feed; use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller'; } use AmuseWikiFarm::Log::Contextual; =head1 NAME AmuseWikiFarm::Controller::Feed - Catalyst Controller =head1 DESCRIPTION Catalyst Controller. =head1 METHODS =head2 index Path: /feed RSS 2.0 feed, built using XML::FeedPP =cut sub index :Chained('/site') :PathPart('feed') :Args(0) { my ( $self, $c ) = @_; my $site = $c->stash->{site}; my $feed = $site->get_rss_feed; # render and set $c->response->content_type('application/rss+xml'); $c->response->header('Access-Control-Allow-Origin', '*') unless $site->is_private; $c->response->body($feed); } =encoding utf8 =head1 AUTHOR Marco Pessotto <melmothx@gmail.com> =head1 LICENSE This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut __PACKAGE__->meta->make_immutable; 1;
17.867925
86
0.700106