Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
PK!;S^t^t FieldHash.pmnu[package Hash::Util::FieldHash; use 5.009004; use strict; use warnings; use Scalar::Util qw( reftype); our $VERSION = '1.19'; require Exporter; our @ISA = qw(Exporter); our %EXPORT_TAGS = ( 'all' => [ qw( fieldhash fieldhashes idhash idhashes id id_2obj register )], ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); { require XSLoader; my %ob_reg; # private object registry sub _ob_reg { \ %ob_reg } XSLoader::load(); } sub fieldhash (\%) { for ( shift ) { return unless ref() && reftype( $_) eq 'HASH'; return $_ if Hash::Util::FieldHash::_fieldhash( $_, 0); return $_ if Hash::Util::FieldHash::_fieldhash( $_, 2) == 2; return; } } sub idhash (\%) { for ( shift ) { return unless ref() && reftype( $_) eq 'HASH'; return $_ if Hash::Util::FieldHash::_fieldhash( $_, 0); return $_ if Hash::Util::FieldHash::_fieldhash( $_, 1) == 1; return; } } sub fieldhashes { map &fieldhash( $_), @_ } sub idhashes { map &idhash( $_), @_ } 1; __END__ =head1 NAME Hash::Util::FieldHash - Support for Inside-Out Classes =head1 SYNOPSIS ### Create fieldhashes use Hash::Util qw(fieldhash fieldhashes); # Create a single field hash fieldhash my %foo; # Create three at once... fieldhashes \ my(%foo, %bar, %baz); # ...or any number fieldhashes @hashrefs; ### Create an idhash and register it for garbage collection use Hash::Util::FieldHash qw(idhash register); idhash my %name; my $object = \ do { my $o }; # register the idhash for garbage collection with $object register($object, \ %name); # the following entry will be deleted when $object goes out of scope $name{$object} = 'John Doe'; ### Register an ordinary hash for garbage collection use Hash::Util::FieldHash qw(id register); my %name; my $object = \ do { my $o }; # register the hash %name for garbage collection of $object's id register $object, \ %name; # the following entry will be deleted when $object goes out of scope $name{id $object} = 'John Doe'; =head1 FUNCTIONS C offers a number of functions in support of L of class construction. =over =item id id($obj) Returns the reference address of a reference $obj. If $obj is not a reference, returns $obj. This function is a stand-in replacement for L, that is, it returns the reference address of its argument as a numeric value. The only difference is that C returns C when given a non-reference while C returns its argument unchanged. C also uses a caching technique that makes it faster when the id of an object is requested often, but slower if it is needed only once or twice. =item id_2obj $obj = id_2obj($id) If C<$id> is the id of a registered object (see L), returns the object, otherwise an undefined value. For registered objects this is the inverse function of C. =item register register($obj) register($obj, @hashrefs) In the first form, registers an object to work with for the function C. In the second form, it additionally marks the given hashrefs down for garbage collection. This means that when the object goes out of scope, any entries in the given hashes under the key of C will be deleted from the hashes. It is a fatal error to register a non-reference $obj. Any non-hashrefs among the following arguments are silently ignored. It is I an error to register the same object multiple times with varying sets of hashrefs. Any hashrefs that are not registered yet will be added, others ignored. Registry also implies thread support. When a new thread is created, all references are replaced with new ones, including all objects. If a hash uses the reference address of an object as a key, that connection would be broken. With a registered object, its id will be updated in all hashes registered with it. =item idhash idhash my %hash Makes an idhash from the argument, which must be a hash. An I works like a normal hash, except that it stringifies a I differently. A reference is stringified as if the C function had been invoked on it, that is, its reference address in decimal is used as the key. =item idhashes idhashes \ my(%hash, %gnash, %trash) idhashes \ @hashrefs Creates many idhashes from its hashref arguments. Returns those arguments that could be converted or their number in scalar context. =item fieldhash fieldhash %hash; Creates a single fieldhash. The argument must be a hash. Returns a reference to the given hash if successful, otherwise nothing. A I is, in short, an idhash with auto-registry. When an object (or, indeed, any reference) is used as a fieldhash key, the fieldhash is automatically registered for garbage collection with the object, as if C had been called. =item fieldhashes fieldhashes @hashrefs; Creates any number of field hashes. Arguments must be hash references. Returns the converted hashrefs in list context, their number in scalar context. =back =head1 DESCRIPTION A word on terminology: I shall use the term I for a scalar piece of data that a class associates with an object. Other terms that have been used for this concept are "object variable", "(object) property", "(object) attribute" and more. Especially "attribute" has some currency among Perl programmer, but that clashes with the C pragma. The term "field" also has some currency in this sense and doesn't seem to conflict with other Perl terminology. In Perl, an object is a blessed reference. The standard way of associating data with an object is to store the data inside the object's body, that is, the piece of data pointed to by the reference. In consequence, if two or more classes want to access an object they I agree on the type of reference and also on the organization of data within the object body. Failure to agree on the type results in immediate death when the wrong method tries to access an object. Failure to agree on data organization may lead to one class trampling over the data of another. This object model leads to a tight coupling between subclasses. If one class wants to inherit from another (and both classes access object data), the classes must agree about implementation details. Inheritance can only be used among classes that are maintained together, in a single source or not. In particular, it is not possible to write general-purpose classes in this technique, classes that can advertise themselves as "Put me on your @ISA list and use my methods". If the other class has different ideas about how the object body is used, there is trouble. For reference C in L shows the standard implementation of a simple class C in the well-known hash based way. It also demonstrates the predictable failure to construct a common subclass C of C and the class C (whose objects I be globrefs). Thus, techniques are of interest that store object data I in the object body but some other place. =head2 The Inside-out Technique With I classes, each class declares a (typically lexical) hash for each field it wants to use. The reference address of an object is used as the hash key. By definition, the reference address is unique to each object so this guarantees a place for each field that is private to the class and unique to each object. See C in L for a simple example. In comparison to the standard implementation where the object is a hash and the fields correspond to hash keys, here the fields correspond to hashes, and the object determines the hash key. Thus the hashes appear to be turned I. The body of an object is never examined by an inside-out class, only its reference address is used. This allows for the body of an actual object to be I while the object methods of the class still work as designed. This is a key feature of inside-out classes. =head2 Problems of Inside-out Inside-out classes give us freedom of inheritance, but as usual there is a price. Most obviously, there is the necessity of retrieving the reference address of an object for each data access. It's a minor inconvenience, but it does clutter the code. More important (and less obvious) is the necessity of garbage collection. When a normal object dies, anything stored in the object body is garbage-collected by perl. With inside-out objects, Perl knows nothing about the data stored in field hashes by a class, but these must be deleted when the object goes out of scope. Thus the class must provide a C method to take care of that. In the presence of multiple classes it can be non-trivial to make sure that every relevant destructor is called for every object. Perl calls the first one it finds on the inheritance tree (if any) and that's it. A related issue is thread-safety. When a new thread is created, the Perl interpreter is cloned, which implies that all reference addresses in use will be replaced with new ones. Thus, if a class tries to access a field of a cloned object its (cloned) data will still be stored under the now invalid reference address of the original in the parent thread. A general C method must be provided to re-establish the association. =head2 Solutions C addresses these issues on several levels. The C function is provided in addition to the existing C. Besides its short name it can be a little faster under some circumstances (and a bit slower under others). Benchmark if it matters. The working of C also allows the use of the class name as a I as described L. The C function is incorporated in I in the sense that it is called automatically on every key that is used with the hash. No explicit call is necessary. The problems of garbage collection and thread safety are both addressed by the function C. It registers an object together with any number of hashes. Registry means that when the object dies, an entry in any of the hashes under the reference address of this object will be deleted. This guarantees garbage collection in these hashes. It also means that on thread cloning the object's entries in registered hashes will be replaced with updated entries whose key is the cloned object's reference address. Thus the object-data association becomes thread-safe. Object registry is best done when the object is initialized for use with a class. That way, garbage collection and thread safety are established for every object and every field that is initialized. Finally, I incorporate all these functions in one package. Besides automatically calling the C function on every object used as a key, the object is registered with the field hash on first use. Classes based on field hashes are fully garbage-collected and thread safe without further measures. =head2 More Problems Another problem that occurs with inside-out classes is serialization. Since the object data is not in its usual place, standard routines like C, C and C can't deal with it on their own. Both C and C provide the necessary hooks to make things work, but the functions or methods used by the hooks must be provided by each inside-out class. A general solution to the serialization problem would require another level of registry, one that associates I and fields. So far, the functions of C are unaware of any classes, which I consider a feature. Therefore C doesn't address the serialization problems. =head2 The Generic Object Classes based on the C function (and hence classes based on C and C) show a peculiar behavior in that the class name can be used like an object. Specifically, methods that set or read data associated with an object continue to work as class methods, just as if the class name were an object, distinct from all other objects, with its own data. This object may be called the I of the class. This works because field hashes respond to keys that are not references like a normal hash would and use the string offered as the hash key. Thus, if a method is called as a class method, the field hash is presented with the class name instead of an object and blithely uses it as a key. Since the keys of real objects are decimal numbers, there is no conflict and the slot in the field hash can be used like any other. The C function behaves correspondingly with respect to non-reference arguments. Two possible uses (besides ignoring the property) come to mind. A singleton class could be implemented this using the generic object. If necessary, an C method could die or ignore calls with actual objects (references), so only the generic object will ever exist. Another use of the generic object would be as a template. It is a convenient place to store class-specific defaults for various fields to be used in actual object initialization. Usually, the feature can be entirely ignored. Calling I as I normally leads to an error and isn't used routinely anywhere. It may be a problem that this error isn't indicated by a class with a generic object. =head2 How to use Field Hashes Traditionally, the definition of an inside-out class contains a bare block inside which a number of lexical hashes are declared and the basic accessor methods defined, usually through C. Further methods may be defined outside this block. There has to be a DESTROY method and, for thread support, a CLONE method. When field hashes are used, the basic structure remains the same. Each lexical hash will be made a field hash. The call to C can be omitted from the accessor methods. DESTROY and CLONE methods are not necessary. If you have an existing inside-out class, simply making all hashes field hashes with no other change should make no difference. Through the calls to C or equivalent, the field hashes never get to see a reference and work like normal hashes. Your DESTROY (and CLONE) methods are still needed. To make the field hashes kick in, it is easiest to redefine C as sub refaddr { shift } instead of importing it from C. It should now be possible to disable DESTROY and CLONE. Note that while it isn't disabled, DESTROY will be called before the garbage collection of field hashes, so it will be invoked with a functional object and will continue to function. It is not desirable to import the functions C and/or C into every class that is going to use them. They are only used once to set up the class. When the class is up and running, these functions serve no more purpose. If there are only a few field hashes to declare, it is simplest to use Hash::Util::FieldHash; early and call the functions qualified: Hash::Util::FieldHash::fieldhash my %foo; Otherwise, import the functions into a convenient package like C or, more general, C { package Aux; use Hash::Util::FieldHash ':all'; } and call Aux::fieldhash my %foo; as needed. =head2 Garbage-Collected Hashes Garbage collection in a field hash means that entries will "spontaneously" disappear when the object that created them disappears. That must be borne in mind, especially when looping over a field hash. If anything you do inside the loop could cause an object to go out of scope, a random key may be deleted from the hash you are looping over. That can throw the loop iterator, so it's best to cache a consistent snapshot of the keys and/or values and loop over that. You will still have to check that a cached entry still exists when you get to it. Garbage collection can be confusing when keys are created in a field hash from normal scalars as well as references. Once a reference is I with a field hash, the entry will be collected, even if it was later overwritten with a plain scalar key (every positive integer is a candidate). This is true even if the original entry was deleted in the meantime. In fact, deletion from a field hash, and also a test for existence constitute I in this sense and create a liability to delete the entry when the reference goes out of scope. If you happen to create an entry with an identical key from a string or integer, that will be collected instead. Thus, mixed use of references and plain scalars as field hash keys is not entirely supported. =head1 EXAMPLES The examples show a very simple class that implements a I, consisting of a first and last name (no middle initial). The name class has four methods: =over =item * C An object method that initializes the first and last name to its two arguments. If called as a class method, C creates an object in the given class and initializes that. =item * C Retrieve the first name =item * C Retrieve the last name =item * C Retrieve the full name, the first and last name joined by a blank. =back The examples show this class implemented with different levels of support by C. All supported combinations are shown. The difference between implementations is often quite small. The implementations are: =over =item * C A conventional (not inside-out) implementation where an object is a hash that stores the field values, without support by C. This implementation doesn't allow arbitrary inheritance. =item * C Inside-out implementation based on the C function. It needs a C method. For thread support a C method (not shown) would also be needed. Instead of C the function C could be used with very little functional difference. This is the basic pattern of an inside-out class. =item * C Idhash-based inside-out implementation. Like C it needs a C method and would need C for thread support. =item * C Inside-out implementation based on the C function with explicit object registry. No destructor is needed and objects are thread safe. =item * C Idhash-based inside-out implementation with explicit object registry. No destructor is needed and objects are thread safe. =item * C FieldHash-based inside-out implementation. Object registry happens automatically. No destructor is needed and objects are thread safe. =back These examples are realized in the code below, which could be copied to a file F. =head2 Example 1 use strict; use warnings; { package Name_hash; # standard implementation: the # object is a hash sub init { my $obj = shift; my ($first, $last) = @_; # create an object if called as class method $obj = bless {}, $obj unless ref $obj; $obj->{ first} = $first; $obj->{ last} = $last; $obj; } sub first { shift()->{ first} } sub last { shift()->{ last} } sub name { my $n = shift; join ' ' => $n->first, $n->last; } } { package Name_id; use Hash::Util::FieldHash qw(id); my (%first, %last); sub init { my $obj = shift; my ($first, $last) = @_; # create an object if called as class method $obj = bless \ my $o, $obj unless ref $obj; $first{ id $obj} = $first; $last{ id $obj} = $last; $obj; } sub first { $first{ id shift()} } sub last { $last{ id shift()} } sub name { my $n = shift; join ' ' => $n->first, $n->last; } sub DESTROY { my $id = id shift; delete $first{ $id}; delete $last{ $id}; } } { package Name_idhash; use Hash::Util::FieldHash; Hash::Util::FieldHash::idhashes( \ my (%first, %last) ); sub init { my $obj = shift; my ($first, $last) = @_; # create an object if called as class method $obj = bless \ my $o, $obj unless ref $obj; $first{ $obj} = $first; $last{ $obj} = $last; $obj; } sub first { $first{ shift()} } sub last { $last{ shift()} } sub name { my $n = shift; join ' ' => $n->first, $n->last; } sub DESTROY { my $n = shift; delete $first{ $n}; delete $last{ $n}; } } { package Name_id_reg; use Hash::Util::FieldHash qw(id register); my (%first, %last); sub init { my $obj = shift; my ($first, $last) = @_; # create an object if called as class method $obj = bless \ my $o, $obj unless ref $obj; register( $obj, \ (%first, %last) ); $first{ id $obj} = $first; $last{ id $obj} = $last; $obj; } sub first { $first{ id shift()} } sub last { $last{ id shift()} } sub name { my $n = shift; join ' ' => $n->first, $n->last; } } { package Name_idhash_reg; use Hash::Util::FieldHash qw(register); Hash::Util::FieldHash::idhashes \ my (%first, %last); sub init { my $obj = shift; my ($first, $last) = @_; # create an object if called as class method $obj = bless \ my $o, $obj unless ref $obj; register( $obj, \ (%first, %last) ); $first{ $obj} = $first; $last{ $obj} = $last; $obj; } sub first { $first{ shift()} } sub last { $last{ shift()} } sub name { my $n = shift; join ' ' => $n->first, $n->last; } } { package Name_fieldhash; use Hash::Util::FieldHash; Hash::Util::FieldHash::fieldhashes \ my (%first, %last); sub init { my $obj = shift; my ($first, $last) = @_; # create an object if called as class method $obj = bless \ my $o, $obj unless ref $obj; $first{ $obj} = $first; $last{ $obj} = $last; $obj; } sub first { $first{ shift()} } sub last { $last{ shift()} } sub name { my $n = shift; join ' ' => $n->first, $n->last; } } 1; To exercise the various implementations the script L can be used. It sets up a class C that is a mirror of one of the implementation classes C, C, ..., C. That determines which implementation is run. The script first verifies the function of the C class. In the second step, the free inheritability of the implementation (or lack thereof) is demonstrated. For this purpose it constructs a class called C which is a common subclass of C and the standard class C. This puts inheritability to the test because objects of C I be globrefs. Objects of C should behave like a file opened for reading and also support the C method. This class juncture works with exception of the C implementation, where object initialization fails because of the incompatibility of object bodies. =head2 Example 2 use strict; use warnings; $| = 1; use Example; { package Name; use parent 'Name_id'; # define here which implementation to run } # Verify that the base package works my $n = Name->init(qw(Albert Einstein)); print $n->name, "\n"; print "\n"; # Create a named file handle (See definition below) my $nf = NamedFile->init(qw(/tmp/x Filomena File)); # use as a file handle... for ( 1 .. 3 ) { my $l = <$nf>; print "line $_: $l"; } # ...and as a Name object print "...brought to you by ", $nf->name, "\n"; exit; # Definition of NamedFile package NamedFile; use parent 'Name'; use parent 'IO::File'; sub init { my $obj = shift; my ($file, $first, $last) = @_; $obj = $obj->IO::File::new() unless ref $obj; $obj->open($file) or die "Can't read '$file': $!"; $obj->Name::init($first, $last); } __END__ =head1 GUTS To make C work, there were two changes to F itself. C was made available for hashes, and weak references now call uvar C magic after a weakref has been cleared. The first feature is used to make field hashes intercept their keys upon access. The second one triggers garbage collection. =head2 The C interface for hashes C I magic is called from C and C through the function C, which defines the interface. The call happens for hashes with "uvar" magic if the C structure has equal values in the C and C fields. Hashes are unaffected if (and as long as) these fields hold different values. Upon the call, the C field will hold the hash key to be accessed. Upon return, the C value in C will be used in place of the original key in the hash access. The integer index value in the first parameter will be the C value from C, or -1 if the call is from C. This is a template for a function suitable for the C field in a C structure for this call. The C and C fields are irrelevant. IV watch_key(pTHX_ IV action, SV* field) { MAGIC* mg = mg_find(field, PERL_MAGIC_uvar); SV* keysv = mg->mg_obj; /* Do whatever you need to. If you decide to supply a different key newkey, return it like this */ sv_2mortal(newkey); mg->mg_obj = newkey; return 0; } =head2 Weakrefs call uvar magic When a weak reference is stored in an C that has "uvar" magic, C magic is called after the reference has gone stale. This hook can be used to trigger further garbage-collection activities associated with the referenced object. =head2 How field hashes work The three features of key hashes, I, I, and I are supported by a data structure called the I. This is a private hash where every object is stored. An "object" in this sense is any reference (blessed or unblessed) that has been used as a field hash key. The object registry keeps track of references that have been used as field hash keys. The keys are generated from the reference address like in a field hash (though the registry isn't a field hash). Each value is a weak copy of the original reference, stored in an C that is itself magical (C again). The magical structure holds a list (another hash, really) of field hashes that the reference has been used with. When the weakref becomes stale, the magic is activated and uses the list to delete the reference from all field hashes it has been used with. After that, the entry is removed from the object registry itself. Implicitly, that frees the magic structure and the storage it has been using. Whenever a reference is used as a field hash key, the object registry is checked and a new entry is made if necessary. The field hash is then added to the list of fields this reference has used. The object registry is also used to repair a field hash after thread cloning. Here, the entire object registry is processed. For every reference found there, the field hashes it has used are visited and the entry is updated. =head2 Internal function Hash::Util::FieldHash::_fieldhash # test if %hash is a field hash my $result = _fieldhash \ %hash, 0; # make %hash a field hash my $result = _fieldhash \ %hash, 1; C<_fieldhash> is the internal function used to create field hashes. It takes two arguments, a hashref and a mode. If the mode is boolean false, the hash is not changed but tested if it is a field hash. If the hash isn't a field hash the return value is boolean false. If it is, the return value indicates the mode of field hash. When called with a boolean true mode, it turns the given hash into a field hash of this mode, returning the mode of the created field hash. C<_fieldhash> does not erase the given hash. Currently there is only one type of field hash, and only the boolean value of the mode makes a difference, but that may change. =head1 AUTHOR Anno Siegel (ANNO) wrote the xs code and the changes in perl proper Jerry Hedden (JDHEDDEN) made it faster =head1 COPYRIGHT AND LICENSE Copyright (C) 2006-2007 by (Anno Siegel) 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.7 or, at your option, any later version of Perl 5 you may have available. =cut PK!?OOFieldHash/FieldHash.sonuȯELF>@G@8 @11 h<h< h<  << < 888$$111 Std111 Ptd,,,QtdRtdh<h< h< GNU pQ- So,B H,.0BE|qXIqY iKN.< 0xk>Z r  , qF"@ (@ e Y@  (__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizelibpthread.so.0HUF_inc_varPerl_sv_setivPerl_sv_2iv_flagsPerl_sv_magic__stack_chk_failPerl_croak_xs_usagePerl_hv_commonPerl_newRVPerl_sv_2mortalPerl_mg_findPerl_av_fetchPerl_hv_common_key_lenPerl_push_scopePerl_savetmpsPerl_call_pvPerl_pop_scopePerl_free_tmpsPerl_diePerl_markstack_growPerl_newSVuvPerl_sv_magicextPerl_sv_free2Perl_stack_growPerl_hv_iterinitPerl_hv_iternext_flagsPerl_sv_newmortalPerl_sv_setiv_mgPerl_sv_rvweakenPerl_newSV_typePerl_av_storePerl_sv_2pv_flagsPerl_newSVPerl_hv_iterkeysvPerl_av_pushPerl_mg_sizeboot_Hash__Util__FieldHashPerl_xs_handshakePerl_newXS_flagsPerl_newXS_deffilePerl_my_cxt_initPerl_xs_boot_epiloglibperl.so.5.26libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4 ui -ii 9h< pp< 0x< x< ? ? .? ? (? *> > > > > > > >  >  >  >  >  > ? ? ? ?  ? (? 0? 8? @? H? P? X? `? h? p? x? ?  ? !? "? #? $? %? &? '? )? *? +HHQ0 HtH5. %. hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'q%M, D%E, D%=, D%5, D%-, D%%, D%, D%, D% , D%, D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%+ D%}+ D%u+ D%m+ D%e+ D%]+ D%U+ D%M+ D%E+ D%=+ D%5+ D%-+ D%%+ D%+ D%+ DH=A+ H:+ H9tH* Ht H=+ H5 + H)HHH?HHtH* HtfD=* u+UH=* Ht H=&' Id* ]wH5* SHF % =uHHHP H1[~H5G* HHP1[AVAUATUSHHH HsLdH%(HD$1HCxHPHSxHcHHHI)LHHcH,L$E u2JD&HHD$dH3%(H []A\A]A^fHcL,AE tHIu1HDp(H5h) IU1AtH ) Au:1HuH $IUAHHD$HD$lHsQH ( H5fDHHE1E1Hc ( H Hj1jjH0QH HtH@Hff.@ATUSHGxHHHPHWxHWHchHH)HHuKHcH4L$eH8HtHpH]HHHSHLcL#[]A\HH5Mff.@ATUHSHHdH%(HD$1Ht}HUHtkHp 1ɺHHHL H,$HHjIA$LHXZHD$dH3%(uH[]A\f1USHHH/HWHCxHHCxH;H+kH5nHH(uKH3HSPHKXHHt@@ t:H@x u0HHD$HH3H9|Q?HD$H[]HSPHKXH9}H{HH5 H1fHxUNHHD$ff.@ATUS~ v>HH@Hu0HHt PDI~uHh [H]A\HIHHE1j~HE1LHKDIfPY^HtUvUH[]A\HL AUATUSHHHHCxH+HKHPHHSxHcPHH)HHHcHC LeL,L)AE u H~CMl$H+H[]A\A]H~CIuHID$H+H[]A\A]@LLH5IHh@LLHIHhH5AVAUATUSHHHCxL#HKHPLHSxHcPHH)HHHcIH@ uL#[]A\A]A^fDHpHHHI>HtϾUHLHtH@ HH1ɺHL0LS1LHHtH@HE1E11LHHhjjjHFH HtHC L)H~%HHIl$HHID$ILLHIH5 hUUHHSHfHt:HH@ Ht.@ uH1[]fDHpHHC H1[]H5 H1FfDAVAUATUSHH HdH%(HD$1HGxHPHWxHWHcHD`HH)HHHG@#3HHHGL,ȃIcHcL$L4H4F % =H@ tyMttAF tmInHtd} u^HtHHEH$A1IUHHHD$HD$} @1HCJl AE uttkIUAE LmLcL#HD$dH3%(H []A\A]A^@HfDHSILHUHCHJH@(H=Hx2HH H9HSH9 HH5j \ff.AVAUATUHSHH Hcw dH%(HD$1H L4HHL HIHHIHtE1HLH HXLHHIULHcALHH$HD$HD$HE1E1j1HHAUjI6HE1E1j1Ljj@HHD$(H0H LHhIHHHEH@Ht PDI~uHX HHuUL&HHtHh 1ɺHL LL(Ll$HL11H$LLHHD$DHt$1LHLHHLA$MiAALl$HjHT$HHt$[E1E11$LLjj@HT$8H HtH@E1E1j1HLPLjH [HtCH1HLH $HLAHE1E1AD$1HLjATjHD$(H0$H D;|$4HLD$4HH5hAWAVAUATUHSHHGxL?HPLHWxHWHcD`HH)HMcJN,C HsIHsHH$HHHD$HT$HAt.AVLMHI)HB t HRz t=HL9uH4$HHUJLmLmH[]A\A]A^A_fHHHD$@HD$fHsHgHH5 H51bfATHL1UH HSH HE1LH HH5HE1LH HH5HE1LH HH5wE1LH \HHH5pHHH5amHHcH5dWHHH5vAHHH5H@(!HHH5H@(H5 HߺH@(#HI8HI$[]A\fHHsvref, countrefobjhref, modeclassnameHash::Util::FieldHashobj, ...Attempt to register a non-ref1.19v5.26.0FieldHash.c$$Hash::Util::FieldHash::id$@Hash::Util::FieldHash::CLONEHash::Util::FieldHash::_ob_regCan't get object registry hashRogue call of 'HUF_watch_key_id'Rogue call of 'HUF_watch_key_safe'Hash::Util::FieldHash::_fieldhashHash::Util::FieldHash::id_2objHash::Util::FieldHash::registerHash::Util::FieldHash::_active_fieldsHash::Util::FieldHash::_test_uvar_getHash::Util::FieldHash::_test_uvar_sameHash::Util::FieldHash::_test_uvar_set;8x dh$hhX(@hx$|hzRx $FJ w?:*3$"DH\pYLh D `@|:FBB A(A0JPx 0A(A BBBJ AD] D(B0LM,FAA v ABA <HBAD G0S8B@Z8A0T  AABJ (TAAG0 AAD @BAA z DBD O(H0`(A W ABA LFBA A(J0] (A ABBI ] (A ABBE LXFBB A(A0N (A BBBG r8T@BHBPL04djELD ` CAG T CAA @4FBB A(A0GP` 0A(A BBBE PBBB A(D0GPXH`JhBpLPW 0A(A BBBA H4FBH E(I0A8D@t 8C0A(B BBBE TL(bGA A(G0f8T@BHBPI0_8K@GHBPM(C ABBG0$FBE B(A0A8D 8A0A(B BBBE &HGBT^fBNILIEI}VBBQHxNFBB B(A0D8DP 8A0A(B BBBJ (FMO `ABGNUp0x< U   )h< p< o`0 C >    oo oot o<  0@P`p 0@P`p 0GA$3a1) GA$3p1113)GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA*FORTIFYGA+GLIBCXX_ASSERTIONSFieldHash.so-5.26.3-423.el8_10.x86_64.debug37zXZִF!t/]?Eh=ڊ2N AV/N>Jq/* rm&298 Iie<k ˂W4mRS,B[(B08J((/*wFBa AV[h*?Zކ@`,Qʔ8?J-B}1K%H+5$x$P}drߜjGA%s1Y P˫OsG.=ĝk""2b4\L_B!ᄋit>YlC"1{u{NLYL?@=<]>X3J|8,ocz;@[:;>A"N}n#H5޻P+N"YFCeEת]g׼K ϥV/Y^"!Ǔ-77PJ/^Kcn6@ -锲y20ɼ0icڜ݋бj)s84ُG00#˭q)^Uemv3tW(ʄ{A51[l<`hX\ OӞ r6CNL-ACNUI_S }?'4AV)1(1E$ߦ'"?4ǺxXi_P07aPsce ;$jW0'e5s~>nܼG+y-+ۙj*ᶏyj!*lSTB׍)/CP²ʿҧ18g uqj- TE Sr]qJd= _lT= Z!KAn(7+xKDi&#NgOj~+16MMsi[A&vW n}N P߿伕_7O=}~ƯU݆Q !wEF4v*?W K@k=KmHW]\e1Ԫ0t؃xg*kiw¢ڐt[ g/!V+gYZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata 88$o``8( 000C8ot t bEo 0T  ^B hcn@@w})) 2))X,,,,11 h< h<p< p<x< x<< <> >@ @@ @@`@H LB0|B4F(PK!C-Util.sonuȯELF>&@@8@88  x  $$ Ptd$$QtdRtd GNUrU|>ȿg8!6]@!]_BE|@qX d) >RrE `A0o1K e> MPy<a ';df, uqrPF"1 1`  Pf% __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizelibpthread.so.0Perl_croak_xs_usagePerl_mg_getPerl_newSVpvf_nocontextPerl_sv_2mortalPerl_cvgv_from_hekPerl_croak_nocontextPerl_sv_copypv_flagsPerl_mg_findPerl_looks_like_numberPerl_amagic_callPerl_sv_newmortalPerl_sv_taintedPerl_sv_setiv_mgPerl_sv_del_backrefPerl_ckwarnPerl_warn_nocontextPerl_croak_no_modifyPerl_sv_rvweakenPerl_sv_setuv_mgPerl_sv_reftypePerl_sv_setpvPerl_mg_setPerl_sv_upgradePerl_sv_2nv_flagsPerl_sv_2iv_flagsPerl_sv_magicPerl_sv_2uv_flagsPerl_newSV_typePerl_sv_mortalcopy_flagsPerl_block_gimmePerl_newSVivPerl_hv_commonPerl_newSVpvnPerl_sv_setpvf_nocontextPerl_drand48_rPerl_seedPerl_drand48_init_rPerl_newSVsvPerl_sv_2bool_flagsPerl_get_hvPerl_av_pushPerl_newRV_noincPerl_sv_blessPerl_sv_cmp_flagsPerl_sv_setsv_flagsPerl_sv_setnvPerl_sv_setivPerl_safesysmallocPerl_save_pushptrmemcpyPerl_mg_sizePerl_stack_growPL_memory_wrapPerl_savepvnPerl_gv_fetchpvPerl_safesysfreestrlenPerl_safesyscallocstpcpyPerl_hv_common_key_lenstrcpyPerl_newSVPerl_gv_init_pvnPerl_cvgv_setPerl_sv_2pv_flagsPL_no_usymPerl_sv_free2Perl_sv_2cvPerl_save_sptrPerl_call_svPerl_pad_pushPerl_av_fetchPerl_av_clearPerl_av_extendPerl_av_storePerl_markstack_growPerl_was_lvalue_subPerl_cxincPerl_leave_scopePerl_new_stackinfo__stack_chk_failPerl_croak_popstackboot_List__UtilPerl_xs_handshakePerl_newXS_flagsPerl_newXS_deffilePerl_gv_stashpvnPerl_xs_boot_epilogPerl_gv_add_by_typelibperl.so.5.26libc.so.6_edata__bss_start_endGLIBC_2.14GLIBC_2.4GLIBC_2.2.56ii Aui K ' `'  п  ؿ # * - P W  ( 0 8 @ H P X  `  h  p  x          Ƚ н ؽ         ! " $( %0 &8 '@ (H )P +X ,` .h /p 0x 1 2 3 4 5 6 7 8 9 :Ⱦ ;о <ؾ = > ? @ A B C D E F( G0 H8 I@ JH KP LX M` Nh Op Qx R S T U V W X Y Z [ȿ \HH HtH5 % hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhV% D% D%} D%u D%m D%e D%] D%U D%M D%E D%= D%5 D%- D%% D% D% D% D% D% D% D% D% D%ݚ D%՚ D%͚ D%Ś D% D% D% D% D% D% D% D% D%} D%u D%m D%e D%] D%U D%M D%E D%= D%5 D%- D%% D% D% D% D% D% D% D% D% D%ݙ D%ՙ D%͙ D%ř D% D% D% D% D% D% D% D% D%} D%u D%m D%e D%] D%U D%M D%E D%= D%5 D%- D%% D% D% D% D% D% D% D% D% D%ݘ DH= H H9tHƘ Ht H=٘ H5Ҙ H)HHH?HHtH HtfD= u+UH= Ht H=v dm ]wHGxHOLHPHWxHcBHI)LHu8HLhHHHr HPIDHHGHPHH5{ATUHSHGxHHPHWxHcHGZHH)HHuoHcHHL AT$ u?DuHPHH]H][]A\3HhtHH]H][]A\@LHEAT$ HHH5zf.AUATUSHHHHCxH+HKHPHHSxHcPHH)HHHcL,L$AE  Iu~ H@]~H@8HH1Hx H@(HW@t+HH@HIHLHHtItHHtHpH=z1HHHELcL#H[]A\A]H(H~HCJD HH[]A\A]LHAE H=y1H5yRfAVAUATUSHHHCxL+HKHPLHSxHcPHH)HHHcH,L4Ld)AD$ uSt`It$F < unAF u#仉F MeHkH+[]A\A]A^fLH@fDLHAD$ H=|18H5xlH=|1@f.AUATUSHHHGxHHPHWxHWHchHH)HHHcL$L,AD$ u3 t=tKHCH8HLkL+H[]A\A]DMd$AD$  uID$HtL`MtI|$uAD$tqLVHuLAD$ fHH5dwGAUATUSHHHGxHHPHWxHWHchHH)HHuqHcL,L$AE uIu"HPHCHLcL#H[]A\A]ÐVLHhHuDLAE HH5vAUATUSHHHGxHHPHWxHWHchHH)HHHcL,L$AE tIE@t HH@uFLHHhHPH߅HEHSHLcL#H[]A\A]DLH8 HA HLEf.LAE ^HH5upAUATUSHHHHCxHKH3HPHSxHcPHH)HHHcH,L,HC@#tkHPHCL$AM u{1ҁuYHCAL$ Ll(%uotfIT$AL$ MeHkH+H[]A\A]HILHLHAM q@LHmH5ltODf.AUATUSHHHHCxHKH3HPHSxHcPHH)HHHcH,L,HC@#tkHPHCL$AU usHCLl(AD$ uBt9IT$AD$ MeHkH+H[]A\A]fDH`ILHmLHmAU yH5Us8USHHHHCxHKH3HPHSxHcPHH)HHHcHH,B u<t uHDt|u;usHr%H߀B FHCHD(HH[]fD HtHH=r1[]H5\r?H=r1lff.USHHHHCxHKH3HPHSxHcPHH)HHu*HcHH4H,}HCHD(HH[]H5q@f.AVAUATUSHHHCxH3HPHSxHSHchHH)HHHCHcL$L4@#HPHCL,AF HKtUIVJl!AE HуHH?@turIUAE LmLcL#[]A\A]A^H8HLcL#[]A\A]A^DHIcLHAF V@LHH5|p_Df.AVAUATUSHGxHHHPHWxHWHchHH)HHHGHcL$L,@#HPHGL4AE u}u(HCH8HLcL#[]A\A]A^fIu1HLHHHCJl AF@uL\$HD$ IEAHD$fE1t$ If|$H@ HD$E1AGL|$ I8IIEHIEHH[]A\A]A^A_@IH@ fH*|$HD$@1LIHD$(IEIEHH[]A\A]A^A_C |$"H%HR =cfH*XD$AAD$D9EMMLD|$ ESAuD$LLIEHL$0LHHHH|$H9HL$HL$fD% =xH@(HLAG % =IH(C % =iH@(XAL$|@% =HH@ HL$HHHH)H9C @A AtHH@ HD$A#HAH@ AfH*|$@HHЃfHH H*XfHT$LLHLh1H|$HyHyHH)H9HD$1HLL$L$~LLf(CHLrA ALHp(t$fHLPHD$fDfDH,HЃfHH H*Xf HD$Ip(t$ fLLL\$8D$fDD$L\$8HD$l$fHLL$L$%LLf(HL8H#HL`D$UDLLL\$@AN L\$LLL\$8D$DD$L\$8HD$D$HHHH|$H9Hx1fH*l$HfH*l$HƒfHH H*XD$yHD$f|$lfL|$ HD$|$XHHH|$H9HHHH9HƒfHH H*XD$M@AWAVAUATUSH(HGxLHPMHWxHWHcDxHHI)IIcLt$H,I)H9HHM HHIH$LcIcHLHD$I40HD$[E1H8HD$_I$H@HH?ImAD$I$M}HxImIFML9t$IH$EN$AD$ <BMd$AT$ @HC L)HULHrTID$HH0HH*IEAD$9LHM}+5ID$HHpHHIEIFML9t$LcDt$L|$EMcMKDHH([]A\A]A^A_fDLHAD$ LLHAT$ IH5yh H=M1DH=!Q1DH=HQ1fAWAVAUATUSHHHHHCxHKH3HPHSxHcHt$BHH)HH HH4L$F % =HnHJ|!HP(H8 H<$HHD$G  3*H$LhMAE n MHE1LbzfB<:tLMtALHHH)f HHHHLH@H@ HD$HIE@]jH@8HHHt$HD$ H@H@ HD$(Ft0HHPHFHTHHtRtHHt HHD$ IE@]HP8HHJ LqHR(B HD$LH|$HD$0HHD$8H|$ IT$0T$8A<9MHc_HItHt$I<V::Lf8HxBHE1LjL)Ht$8A HH=AXAYIHtlHt$ L::f0HxHMMtAAMLLL$HLHjLL$(A$Ht$8ZYHL-1HsMHT$HI)HAHIH-/e zIEH@HuHHH9huPLp LH߈PIELAM `\HD$H4$HH0HHH[]A\A]A^A_@Ѓ u HS% B#=H$Hp1ҹ HHqH@HbLhn'MDLLbI:uLbBMfD1HHKHDHp HVrVPLHIHHBAG fHP8HHR(LzHP8HHR(HHRI|HP8HHR(LzHP8HHR(HHRE|$ELHP8HHR(LzHP8HHR(HHRITH:jHP8HHR(LzHP8HHR(HHRET$EHP8HHR(LzH@8HH@(HH@IDL8H4$1HmHD H=b H5F1IE@]H@8HH@(LxHH@M|IGHD$f0!IUHR@~HhHIUHBH$LHHLp IEI@]FLHHH@(@IE@]LHwHH@(LxIE@]LHSHH@(HH@I|IE@]LH HH@(LxIE@]LHHH@(HH@AD$IE@]LHHH@(LxIE@]LHHH@(HH@IDH8IE@]uLHnHH@(LxIE@]`LHJHH@(HH@E\$EIE@]KLHHH@(LxIE@]6LH*IE@]HP8HHR(LzHHRI|LHHH@(LxIE@]9LHHH@(II6HVvtVHHD$0HD$PALH7HH@(LxIE@]LHHH@(HH@I|rZHrH$@ D$% =u@H$H@HH=B1=u5H$H@HHBH=G1H4$1H]H4$1HHHP8HH@8HH@(H=A1|H5ZBHP8HHR(QAWAVAUATUSHHH/dH%(HD$x1HGxIHPHWxHGQL$LT$HHcHI)IDd$(E Hc|$HHT$pE1H H4H|$PHHL$@HL$hiH$HC@"D$,Au HJ H5AHiHIH5OAHD$HIwHIHD$TIvHHH$H@\E1AL;E1E1IT4HD$H@HHCxHHCxH;ML+CH4$IHD7L;AƃM|$,E1EL;9l$(=HD$HHD$(PMHcH4IH9KH8DHSL|$@L{R"ʉL$XLhHHƀH@|$_LpM5IAF AF( HH@HHIcHH)H+kHHjIH@HCIHHRHHS IHHRH4ЋS0H3ILHAF A;F$0AF HHcH H,IHHhfEHUH+CHEHHEHCxH+CpHE C@E(HHEHCXHE HCPHSHCXB"u0B#YL4$HLu@IR`UHH0HE0HU8AFHS"B#fEHsNI@`IHcP`~LH@IHcP`IEHH0H@HCH$HH@(HD$AAD$E1E1IމD$ H8H$HD$0Dl$8DHD$H $H@IHHD$09L$ ~IDHL$LHQHHD$IFAhIFI.H)HIM|$8,/LcfIFMcH4LEeO,HqIEA9u؉l$8E1H$H$9D$(6Dl$8LMtAD$LH`HHcP H,RHHhu9s0HE8H0HsH@HCHu@UHHP`HE@VQVHcU HCpHHCxE(C@HEHHEHHE HCXHh HHH@HHH+SH|$_H HQHHRHSHH HIH HK HH HIHHHHHH@MAD$I$LxAGD$(D$LHSHcL$(DHH,…"HC H)HH9D$(E1Dp (@I1LLH=HJDIGM9uLHDl$(蜽|$X|$,IcHL|$@HkHHgLHEHCLHHD$xdH3%(HĈ[]A\A]A^A_Ã|$,DE>LS"MAD$I$hB\-LLHcEGAfIFLJ4(I艹HcLLHȸ9uD$HHsHcH4H19HSHHf.H)l$(HcD$(H9/H HHL$ 蟸 HHI蜹LSl$HLHL$ HcI4LT$HLT$D1Ld$0؉l$LIHL|$8MAEDl$HD$ LDl$ fLSD$ JtHF< D$DIHM,AIEE9ELd$0l$LL|$8fLLuZfDHL L` HI葸@HHCMcLl$PJDHE1?H=a=12H蕶0EDd$HC,,HCIcHAH4聸A9uH߉T$ Ht$T$ Ht$AF H<D$XH$HHqLHAD$(H5.S H=71谷 H获IHIFLpHHHHE1E1K1HmHH5W7~fAWIAVAUATUSHhL/dH%(HD$X1HGxMHPHWxHcHGHDrHI)IDd$E IcHL$HHT$PE1H4HH|$(LH\$DHIG@"D$Au L&H5|6LELIH5+6)IvLH$9H$LHp)H@\LAAD$ADmH\$AD$LBD%ՉD$ AH{IcHH8IvL$C/L&9D$~AEHsHH,H$H@H(HCxHHCxH;H+SHt$HHHH0HF u<t HHH@HHD$IH[LIHÃ|$HhIhHHD$IGIHhHIH|$IH|$ƀI@|$3HPHHB B( HH@IHIcHI)M+oILiHAw0H@IGH H HIH IO H H HIH IHIIB ;B$B IHcP L,RILhfAEAuI+OHAMIIEIGxI+GpHAE AG@AE(IIEIGXIE IGPIWIGXB"u0B#ZI]@HLR`AUHI0IE0IU8CIW"B#fAEIwH@`HHcP`~HL߰HHcP`HEHI0H@IGHLh(AAD$AD$ LMIHL$ID$I8JHD9t$ ~JlH$LH@H(MoAhIH0H|F u<t QHH<H@HHHHIHcP L$RIL`At$A9w0~L{ID$8I0HfH@IGIt$@AT$HHP`ID$@VIVIcT$ IGpHIGxAD$(AG@ID$IID$IID$ IGXIh IIH@H(II+WHt$3|$H HQHHRIWHH HIH IO HH HIHIHIII@HD$L`JIGH\$(IhHHD$IGIHD$XdH3%(dHh[]A\A]A^A_tHff.H(QKAD;l$ jIIGH\$HDI~WtHff.@(ID9t$)IHcP HRHHXsA9w0jHC8I0HcH@IGHs@SHHP`HC@VAVHcS IGpHIGxC(AG@HCIHCIHC IGXIh IIHRHII+GH\$3H HAHH@IGH H HIH IO H H HIHIHIIIH\$IGHDIfDLدH=31BDHHz LWDHHz LDHOHF80=DHHF80 DL00LHT$8t$4HL$ 躬HT$8t$4HL$ B @1Lf1Hƪ9fMoHLIyHLIEIoL^HEMgM'fDL;LLHI_H!HIoI/XfHHT$(HT$(jf L辬HIHBHP7HөFfDL賩]fD1fLL۬1L׭MHH57,^fAWAVIAUATUSHXLgHdH%(HD$H1HGxH\$HPHWxHcDxIH)HIIX(E IcHL$8HT$@E1HD$HIH$؃I4$D$ HHILHpkHE@\EAAEM|$Md81 9IM9IIM.H@HIFxHIFxI;M+nHLID(3IH0HV \cH1HeHRHR1HGHF809:ft$ IPH\$IhHDIVHH$IFILxHIƀIL$#HPHHB B( H|$HH@IHIcHH)HI+FHHAHAv0H@IFH H HIH IN H H HIH IHIIB ;B$B IHcP HRHHPf:rI+NHJIHBIFxI+FpHB AF@B(IHBIFXHB IFPINIFXA"u0A#GHj@HMLI`JHI0HB0HJ8EIN"A#fBIvCHE@`HEHcP`~LL3HEHcP`IGHI0H@IFHEHh(AAEM|$Md7fty1 tgf9IM9[ILHPIH` InAhIH0HV tH1HtHRHw1HuHF809hIHcP HRHHXsA9v0HC8I0HEH@IFHs@SHHP`HC@VVHcS IFpHIFxC(AF@HCIHCIHC IFXIh IIHRHII+FH\$#H HAHH@IFH H HIH IN H H HIHIHIIIfDtH>H 1H1ff.R(EfDtH>H 1H1ff.B(EfDIHcP HRHHXsA9v0~LHC8I0HjH@IFHs@SHHP`HC@VOVHcS IFpHIFxC(AF@HCIHCIHC IFXIh IIHRH!II+FH\$#H HAHH@IFH H HIH IN H H HIHIHIIIL$ IhIPHL$HDIVHH$IFIHD$HdH3%(THX[]A\A]A^A_@1L&fD1LfDLȤ1f1fLà{L諠LHT$蓡HT$0fDLأLHT$(t$$HL$ HT$(t$$HL$B @ LHIHBHPL11LdڠH="1謢HH5"ݡxAWIHAVAUATUSHxIIwdH%(HD$h1IGxHHHIOxCD$HHcHH)Hl$ + HcE1LHH)HcD$HHT$(HT$`H H4HD$8HL$0HL$X萢HD$IG@"jD$@u LpH5!L菠LIH5u!sIt$LI胞IuLwHD$H@\$ ED$D$ CD$LAƍD+ӉD$\$$0D< AD9t$IIcII8It$H,NjD$$H.D9D$ ~AFIwHHIEHIGxHIGxI;I+WHt$LHIH0HnF ;HHBH@H`|$1|$AD$D9t$|$|$ZHD$(IHD$hdH3%(Hx[]A\A]A^A_H\$0I_H\$HXHIƀIL$HHPHHB B( HH@IHHD$(I+GHHAHAw0H@IGH H HIH IO H H HIH IHIIB ;B$3B IHcP HRHHPfHȉrI+GHBIHBIGxI+GpHB AG@B(IHBIGXHB IGPIOIGXA"u0A#sLt$LLr@II`JHI0HB0HJ8AFIO"A#fBIwI@`IHcP`~HLIHcP`HCHI0H@IGHD$HH@(HD$EAD$D$$LMI'@<t{ tkID9|$ H|$ID$I8JHD9|$$~JlIELH(HD$IFAhIH0HtF t8HHtH@H|$_1|$ID$D9|$ ]MIHcP H,RHHhuA9w0HE8I0HH@IGHu@UHHP`HE@VmVHcU IGpHIGxE(AG@HEIHEIHE IGXIh IIH@H.II+WH\$H|$H HQHHRIWHH HIH IO HH HIHIHIIIOIHD$(fgtHHz THff.H(9g|$3IWD$HHLD$HL ºLL$@9LL$@HLID$IWHD$LHL$H,ºHEtHHz /Hff.@(|$HcD$HLHL$(HL$HHT$@蛙HT$@HLHL$D$HHcD$(HuHD1Ln,1LVfLHT$@HT$@dfHSHF80ADHHF80DLӖffDL賖lfDL訚D$~$H\$HlH3LH艙H9uIWHcD$HD$8HDI/fH=A1–EDLHT$HT$0sfDL`LHT$(t$$HL$蒗HT$(t$$HL$B @Lt$0I_LHct$L?HIGLID LFHIHBHPD$LD$1nL詙H58Ι@f.AWIAVAUATUSHXHdH%(HD$H1HGxH\$HPHWxHWHcDhHH)IIELIcH,H<HD$H<$L蕙HHL$8E1HT$@LHMwHHAL4$LH57Lt$LIH5IuLIIvLIEHHD$HPH9tHLC@HE@\AHt$AD$LnLdDIFIMIHIGxHIGxI;I+WHLH跗IHH9tHLLC@IM9uIGHt$HH$IGIHD$HdH3%(HX[]A\A]A^A_fDLhHIƀI@|$#HPHHB B( HH@IHHD$I+GHHAHAw0H@IGH H HIH IO H H HIH IHIIB ;B$B IHcP HRHHPfHȉrI+GHBIHBIGxI+GpHB AG@B(IHBIGXHB IGPIOIGXA"u0A#Hj@HMLI`JHI0HB0HJ8EIO"A#fBIw HE@`HEHcP`~LLHEHcP`IEHI0H@IGHEHh(At^H|$AD$LoLd@IUIFLHIoAhIHH9tHLԓC@IM9uIHcP H,RHHhuA9w0HE8I0HH@IGHu@UHHP`HE@VVHcU IGpHIGxE(AG@HEIHEIHE IGXIh IIHRHII+GH|$#H HAHH@IGH H HIH IO H H HIHIHIII@]fDIGHt$I8HH$IGIK@LHT$+HT$HL5LHT$(t$$HL$ڐHT$(t$$HL$B @HL(HL&LHF L莑HIHBHPLHT$裏HT$0fD1L"gH=19HH5CjDAWIAVAUATUSHXH/H_dH%(HD$H1HGxIHPHWxHcHHI)‰L$ IE|HcD$ HL$8E1MHT$@EHD$HHH$H37IHTA7ILHp~IE@\`A-< tzIE9IJ4DIH@H0IGxHIGxI; I+WLLH`IH0HtF neHHqH@HIGl$ HcHL$L4$HHMwM7HIHcP HRHHXsA9w0HC8I0HH@IGHs@SHHP`HC@VVHcS IGpHIGxC(AG@HCIHCIHC IGXIh IIHRHII+GH|$H HAHH@IGH H HIH IO H H HIHIHIII@IGH|$I8HL4$MwM7HD$HdH3%(HX[]A\A]A^A_LpHIƀIL$HPHHB B( HH@II+oHHHhHAw0H@IGH H HIH IO H H HIH IHIIB ;B$B IHcP H,RHHhfEuI+OHMIHEIGxI+GpHE AG@E(IHEIGXHE IGPIWIGXB"u0B#0Lm@IULR`UHI0HE0HU8AEIW"B#fEIwKIE@`IEHcP`~LL;IEHcP`IFAHI0H@IGIELh(%@<te tUIE9ILDHPJH` MoAhIH0HtF tVHHtH@HIHcP HRHHXsA9w0HC8I0H H@IGHs@SHHP`HC@VVHcS IGpHIGxC(AG@HCIHCIHC IGXIh IIH@HII+WHL4$H HQHHRIWHH HIH IO HH HIHL$IHIIID$ IWHL$HHHMwM7'ft;tHHz Hff.H(wf1L6^fLHT$HT$fHHF80}DLӆcfDLHT$(t$$HL$ZHT$(t$$HL$B @t;tHHz +Hff.@(f1LFifHHF80JDL&LNm L藈HIHBHPL踆0L18LV1LHH5U|WH=1)@AUHL11ATH +H,USH H諈E1HLH HPAH5E1HLiHH H#H5@(ЇE1HL8HH HH5@(蟇E1HLHH vHH5@(nE1HLHH EHH5@(=E1HLHH HH5f@( E1HLtHH HުH5H@(ۆE1HLBHH HH5-@(誆E1HLH H/H5胆E1HLH ]HH5\E1HLHH 3HH5@(+E1HLHH HH5@(E1HLaHH HH5@(ɅE1HL1HH HH5@(蘅E1HLH rHH5hqE1HLH KHH5UJE1HLH $HOH5C#E1HLH HH53E1HLcH HH5"ՄE1HL<H HH5讄E1HLH HӝH5臄E1HLH aHܗH5`E1HLHH 7HH5@(/E1HLHH HH5@(E1HLHH HH5@(̓E1HLH H2H5覃E1HLXH HkH5pE1HL1H YHH5_XE1HL H 2HH5N1E1HLH HH5= E1HLH HH5+E1HLH HȅH5輂E1HLnH HaH5 蕂E1HLGH oH H5nE1HL H HHH5GE1HLH !HH5E E1HLH HH5HH5H賁H̴H5H蝁HH5H臁 HH5HE1HjHHIA0EH(XZ} t!ALHHA H ^ HEH0Ht-HHhHDH[]A\A]@H1H蓂H@H0HHsvNot a subroutine reference%s::%sproto, codeCan't unweaken a nonreferenceReference is not weaknum, str%lu%ld%gList::Util::_Pair::name, suba subroutineUndefined subroutine %sblock, ...a1.49v5.26.0ListUtil.cList::Util::maxList::Util::minList::Util::productList::Util::sumList::Util::sum0List::Util::maxstrList::Util::minstr&@List::Util::reduceList::Util::firstList::Util::allList::Util::anyList::Util::noneList::Util::notallList::Util::pairsList::Util::unpairsList::Util::pairkeysList::Util::pairvaluesList::Util::pairfirstList::Util::pairgrepList::Util::pairmapList::Util::shuffleList::Util::uniqList::Util::uniqnumList::Util::uniqstr$$Scalar::Util::dualvarScalar::Util::isdualScalar::Util::blessedScalar::Util::reftypeScalar::Util::refaddrScalar::Util::weakenScalar::Util::unweakenScalar::Util::isweakScalar::Util::readonlyScalar::Util::taintedScalar::Util::isvstringScalar::Util::openhandleSub::Util::set_prototypeSub::Util::set_subnameSub::Util::subnameList::UtilREAL_MULTICALLset_prototype: not a referenceset_prototype: not a subroutine referenceOdd number of elements in pairvaluesOdd number of elements in pairkeysOdd number of elements in pairsNot a reference at List::Util::unpairs() argument %dNot an ARRAY reference at List::Util::unpairs() argument %dCan't use string ("%.32s") as %s ref while "strict refs" in useOdd number of elements in pairmapOdd number of elements in pairfirstOdd number of elements in pairgrepScalar::Util::looks_like_number;$#r@wh}@~p$pd@PT pD00HH< PH p 8 ` ` zRx $pFJ w?:*3$"D vp\8|xi8t|FAD ^ ABD X ABE L$}nFBA A(J0 (A ABBA a (A ABBI <D~FBB A(A0 (A BBBJ 8@ FBA A(G0{ (A ABBF 8|FBA A(G0g (A ABBB 8\FBA A(G0 (A ABBF 80!FBA A(J0 (A ABBD 80$FBA A(J0 (A ABBG 4lEAJ  AAG U JAE (ЃrEAJ S AAA L$AFBB A(A0 (A BBBD S (A BBBF L $$FBB A(A0 (A BBBJ x (A BBBA Lp<FBB A(A0 (A BBBG z (A BBBG HLFBB B(A0A8G@ 8A0A(B BBBJ FBE B(A0A8Dp 8A0A(B BBBA  8A0A(B BBBC DxJHENptxRBENp<<FEB A(A0 (I BEBE H܎FEB B(A0A8DP 8A0A(B BBBG H$FEB B(A0A8DP 8A0A(B BBBC dpdFBB B(A0A8D` 8A0A(B BBBE @ 8A0A(B BBBF HFIB B(A0A8GpX 8A0A(B BBBB \$`FBB B(A0A8DP 8A0A(B BBBD Z8A0A(B BBBR|< FBB E(A0A8D 8A0A(B BBBE ^ 8A0A(B BBBH  8A0A(B BBBD HFBB B(A0A8D` 8A0A(B BBBG ld p FBB B(A0A8JjH[BJHXA 8A0A(B BBBE L ' FBB B(A0A8J] 8A0A(B BBBA L$ FEB B(A0A8D 8A0A(B BBBH Ltx FBE B(A0A8D 8A0A(B BBBE L FHB B(A0A8D 8A0A(B BBBH L `FEB B(A0A8D 8A0A(B BBBG Ld FEB B(A0A8D 8A0A(B BBBI H fFNO A(L08H@a8A0K (G ABBI GNU'`' U    o(x ` W  ( ooooo  0@P`p 0@P`p 0@P`p 0@P`p  0 @ P ` p !! !0!@!P!`!p!GA$3a1&&GA$3a1GA$3a1GA$3a1&' GA$3p864'GA$gcc 8.2.1 20180905 GA*GOW*EGA*GA+stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS GA*FORTIFYGA*GA! GA* GA!stack_realign GA$3h864&& GA$3h864&&GA$3a1GA$3a1GA$3a1GA$3a1ţUtil.so-1.49-2.el8.x86_64.debug:7zXZִF!t/W]?Eh=ڊ2N o>Gi҅v Lscқ q;VLTޝKP}JCiDo۩4#)kС59]FC4+J_5gTOj j|_^y$(Ї\^}XLXy5[3GL=X+iB2BR1ϭ_ON$ݩV~<>Cl~Y üp 0u@1lcTHC.WWB0x gbʟ( R{N^+؟ >4~ iXޢ#'옞֟fq=LM&d">mwpDs?2aG>˚(HJCk@.jW- t %"irv%>1i}/C\0UЉxJUXs1Cl"1kڬO@~BtUǞh/ }p!晰+ϗ!¶˽s"I.0XNSjIvSYVt-$qBGؑHMov5xi% &&/ Klc0gק_MK0?'VCO)"͝]/\]6Fo,Gr͓Eף/wܖsC39k^`G\T5_\9tvV0B\a h#n UvVo3mRg!} l&"Q'BTׁTRY"\(_CDv~J]( K$B^܀|֝Ϧ-Hged;u H.o &\hTŗJ)mM71ۀ|`sU%wiEKWx ۳XQb?6^G:> cP{s'/K{yQqDIcSR-jTX?/ UNCXB fr %&AmrQ`1P-KVސ>EaV\kbe\Gt#$E`0hnԾPUc$W[~nrsST5V6 wq ebO"}s &GOwgYZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata $o((4( `` 0x x W8oEo@T^B(hcn!!pw&&|} 2ȣȣ($        ` ``$"PK!t XS.pmnu[package List::Util::XS; use strict; use warnings; use List::Util; our $VERSION = "1.49"; # FIXUP $VERSION = eval $VERSION; # FIXUP 1; __END__ =head1 NAME List::Util::XS - Indicate if List::Util was compiled with a C compiler =head1 SYNOPSIS use List::Util::XS 1.20; =head1 DESCRIPTION C can be used as a dependency to ensure List::Util was installed using a C compiler and that the XS version is installed. During installation C<$List::Util::XS::VERSION> will be set to C if the XS was not compiled. Starting with release 1.23_03, Scalar-List-Util is B using the XS implementation, but for backwards compatibility, we still ship the C module which just loads C. =head1 SEE ALSO L, L, L =head1 COPYRIGHT Copyright (c) 2008 Graham Barr . All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut PK!+~ ~ Configuration.phpnuIw * * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; final class Configuration implements ConfigurationInterface { private $config; /** * @param array $config */ public function __construct(array $config = []) { $this->config = $config; } /** * {@inheritdoc} */ public function merge(array $config = []) { $this->config = \array_replace_recursive($this->config, $config); } /** * {@inheritdoc} */ public function replace(array $config = []) { $this->config = $config; } /** * {@inheritdoc} */ public function get(?string $key = null, $default = null) { if ($key === null) { return $this->config; } // accept a/b/c as ['a']['b']['c'] if (\strpos($key, '/')) { return $this->getConfigByPath($key, $default); } if (!isset($this->config[$key])) { return $default; } return $this->config[$key]; } /** * {@inheritdoc} */ public function set(string $key, $value = null) { // accept a/b/c as ['a']['b']['c'] if (\strpos($key, '/')) { $this->setByPath($key, $value); } $this->config[$key] = $value; } /** * @param string $keyPath * @param string|null $default * * @return mixed|null */ private function getConfigByPath(string $keyPath, $default = null) { $keyArr = \explode('/', $keyPath); $data = $this->config; foreach ($keyArr as $k) { if (!\is_array($data) || !isset($data[$k])) { return $default; } $data = $data[$k]; } return $data; } /** * @param string $keyPath * @param string|null $value */ private function setByPath(string $keyPath, $value = null) { $keyArr = \explode('/', $keyPath); $pointer = &$this->config; while (($k = \array_shift($keyArr)) !== null) { if (!\is_array($pointer)) { $pointer = []; } if (!isset($pointer[$k])) { $pointer[$k] = null; } $pointer = &$pointer[$k]; } $pointer = $value; } } PK!̧hArrayCollection.phpnuIw * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; /** * Array collection * * Provides a wrapper around a standard PHP array. * * @internal */ class ArrayCollection implements \IteratorAggregate, \Countable, \ArrayAccess { /** * @var array */ private $elements; /** * Constructor * * @param array $elements */ public function __construct(array $elements = []) { $this->elements = $elements; } /** * @return mixed */ public function first() { return \reset($this->elements); } /** * @return mixed */ public function last() { return \end($this->elements); } /** * Retrieve an external iterator * * @return \ArrayIterator */ public function getIterator() { return new \ArrayIterator($this->elements); } /** * @param mixed $element * * @return bool */ public function add($element): bool { $this->elements[] = $element; return true; } /** * @param mixed $key * @param mixed $value */ public function set($key, $value) { $this->elements[$key] = $value; } /** * @param mixed $key * * @return mixed */ public function get($key) { return isset($this->elements[$key]) ? $this->elements[$key] : null; } /** * @param mixed $key * * @return mixed|null */ public function remove($key) { if (!\array_key_exists($key, $this->elements)) { return; } $removed = $this->elements[$key]; unset($this->elements[$key]); return $removed; } /** * @return bool */ public function isEmpty(): bool { return empty($this->elements); } /** * @param mixed $element * * @return bool */ public function contains($element): bool { return \in_array($element, $this->elements, true); } /** * @param mixed $element * * @return mixed|false */ public function indexOf($element) { return \array_search($element, $this->elements, true); } /** * @param mixed $key * * @return bool */ public function containsKey($key): bool { return \array_key_exists($key, $this->elements); } /** * Count elements of an object * * @return int The count as an integer. */ public function count(): int { return \count($this->elements); } /** * Whether an offset exists * * @param mixed $offset An offset to check for. * * @return bool true on success or false on failure. */ public function offsetExists($offset): bool { return $this->containsKey($offset); } /** * Offset to retrieve * * @param mixed $offset The offset to retrieve. * * @return mixed */ public function offsetGet($offset) { return $this->get($offset); } /** * Offset to set * * @param mixed $offset The offset to assign the value to. * @param mixed $value The value to set. * * @return void */ public function offsetSet($offset, $value) { if ($offset === null) { $this->add($value); } else { $this->set($offset, $value); } } /** * Offset to unset * * @param mixed $offset The offset to unset. * * @return void */ public function offsetUnset($offset) { $this->remove($offset); } /** * Returns a subset of the array * * @param int $offset * @param int|null $length * * @return array */ public function slice(int $offset, ?int $length = null): array { return \array_slice($this->elements, $offset, $length, true); } /** * @return array */ public function toArray(): array { return $this->elements; } /** * @param array $elements * * @return $this */ public function replaceWith(array $elements) { $this->elements = $elements; return $this; } public function removeGaps() { $this->elements = \array_filter($this->elements); } } PK!EConfigurationAwareInterface.phpnuIw * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; /** * Implement this class to inject the configuration where needed */ interface ConfigurationAwareInterface { /** * @param ConfigurationInterface $configuration */ public function setConfiguration(ConfigurationInterface $configuration); } PK!^m LinkParserHelper.phpnuIw * * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; use League\CommonMark\Cursor; final class LinkParserHelper { /** * Attempt to parse link destination * * @param Cursor $cursor * * @return null|string The string, or null if no match */ public static function parseLinkDestination(Cursor $cursor): ?string { if ($res = $cursor->match(RegexHelper::REGEX_LINK_DESTINATION_BRACES)) { // Chop off surrounding <..>: return UrlEncoder::unescapeAndEncode( RegexHelper::unescape(\substr($res, 1, -1)) ); } if ($cursor->getCharacter() === '<') { return null; } $destination = self::manuallyParseLinkDestination($cursor); if ($destination === null) { return null; } return UrlEncoder::unescapeAndEncode( RegexHelper::unescape($destination) ); } /** * @param Cursor $cursor * * @return int */ public static function parseLinkLabel(Cursor $cursor): int { $match = $cursor->match('/^\[(?:[^\\\\\[\]]|\\\\.){0,1000}\]/'); if ($match === null) { return 0; } $length = \mb_strlen($match, 'utf-8'); if ($length > 1001) { return 0; } return $length; } /** * Attempt to parse link title (sans quotes) * * @param Cursor $cursor * * @return null|string The string, or null if no match */ public static function parseLinkTitle(Cursor $cursor): ?string { if ($title = $cursor->match('/' . RegexHelper::PARTIAL_LINK_TITLE . '/')) { // Chop off quotes from title and unescape return RegexHelper::unescape(\substr($title, 1, -1)); } return null; } /** * @param Cursor $cursor * * @return string|null */ private static function manuallyParseLinkDestination(Cursor $cursor): ?string { $oldPosition = $cursor->getPosition(); $oldState = $cursor->saveState(); $openParens = 0; while (($c = $cursor->getCharacter()) !== null) { if ($c === '\\' && $cursor->peek() !== null && RegexHelper::isEscapable($cursor->peek())) { $cursor->advanceBy(2); } elseif ($c === '(') { $cursor->advanceBy(1); $openParens++; } elseif ($c === ')') { if ($openParens < 1) { break; } $cursor->advanceBy(1); $openParens--; } elseif (\preg_match(RegexHelper::REGEX_WHITESPACE_CHAR, $c)) { break; } else { $cursor->advanceBy(1); } } if ($openParens !== 0) { return null; } if ($cursor->getPosition() === $oldPosition && $c !== ')') { return null; } $newPos = $cursor->getPosition(); $cursor->restoreState($oldState); $cursor->advanceBy($newPos - $cursor->getPosition()); return $cursor->getPreviousText(); } } PK!  UrlEncoder.phpnuIw * * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; final class UrlEncoder { private static $encodeCache = ['%00', '%01', '%02', '%03', '%04', '%05', '%06', '%07', '%08', '%09', '%0A', '%0B', '%0C', '%0D', '%0E', '%0F', '%10', '%11', '%12', '%13', '%14', '%15', '%16', '%17', '%18', '%19', '%1A', '%1B', '%1C', '%1D', '%1E', '%1F', '%20', '!', '%22', '#', '$', '%25', '&', "'", '(', ')', '*', '+', ',', '-', '.', '/', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '%3C', '=', '%3E', '?', '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '%5B', '%5C', '%5D', '%5E', '_', '%60', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '%7B', '%7C', '%7D', '~', '%7F']; /** * @param string $uri * * @return string */ public static function unescapeAndEncode(string $uri): string { // Optimization: if the URL only includes characters we know will be kept as-is, then just return the URL as-is. if (\preg_match('/^[A-Za-z0-9~!@#$&*()\-_=+;:,.\/?]+$/', $uri)) { return $uri; } $result = ''; /** @var string[] $chars */ $chars = \preg_split('//u', $uri, -1, \PREG_SPLIT_NO_EMPTY); $l = \count($chars); for ($i = 0; $i < $l; $i++) { $code = $chars[$i]; if ($code === '%' && $i + 2 < $l) { if (\preg_match('/^[0-9a-f]{2}$/i', $chars[$i + 1] . $chars[$i + 2]) === 1) { $result .= '%' . $chars[$i + 1] . $chars[$i + 2]; $i += 2; continue; } } if (\ord($code) < 128) { $result .= self::$encodeCache[\ord($code)]; continue; } $result .= \rawurlencode($code); } return $result; } } PK!+KHtml5EntityDecoder.phpnuIw * * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; final class Html5EntityDecoder { /** * @param string $entity * * @return string */ public static function decode(string $entity): string { if (\substr($entity, -1) !== ';') { return $entity; } if (\substr($entity, 0, 2) === '&#') { if (\strtolower(\substr($entity, 2, 1)) === 'x') { return self::fromHex(\substr($entity, 3, -1)); } return self::fromDecimal(\substr($entity, 2, -1)); } return \html_entity_decode($entity, \ENT_QUOTES | \ENT_HTML5, 'UTF-8'); } /** * @param mixed $number * * @return string */ private static function fromDecimal($number): string { // Only convert code points within planes 0-2, excluding NULL if (empty($number) || $number > 0x2FFFF) { return self::fromHex('fffd'); } $entity = '&#' . $number . ';'; $converted = \mb_decode_numericentity($entity, [0x0, 0x2FFFF, 0, 0xFFFF], 'UTF-8'); if ($converted === $entity) { return self::fromHex('fffd'); } return $converted; } /** * @param string $hexChars * * @return string */ private static function fromHex(string $hexChars): string { return self::fromDecimal(\hexdec($hexChars)); } } PK!L˲Xml.phpnuIw * * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; /** * Utility class for handling/generating XML and HTML */ final class Xml { /** * @param string $string * * @return string */ public static function escape($string) { return \str_replace(['&', '<', '>', '"'], ['&', '<', '>', '"'], $string); } } PK!hConfigurationInterface.phpnuIw * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; interface ConfigurationInterface { /** * Merge an existing array into the current configuration * * @param array $config */ public function merge(array $config = []); /** * Replace the entire array with something else * * @param array $config */ public function replace(array $config = []); /** * Return the configuration value at the given key, or $default if no such config exists * * The key can be a string or a slash-delimited path to a nested value * * @param string|null $key * @param mixed|null $default * * @return mixed|null */ public function get(?string $key = null, $default = null); /** * Set the configuration value at the given key * * The key can be a string or a slash-delimited path to a nested value * * @param string $key * @param mixed|null $value */ public function set(string $key, $value = null); } PK!yͨͨHtml5Entities.phpnuIw * * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; @trigger_error(sprintf('The "%s" class is deprecated since league/commonmark 1.1, use "%s" instead.', Html5Entities::class, Html5EntityDecoder::class), E_USER_DEPRECATED); /** * @deprecated Use Html5EntityDecoder instead */ final class Html5Entities { /** * @deprecated */ public static $entitiesByName = [ 'Aacute' => 'Á', 'Aacut' => 'Á', 'aacute' => 'á', 'aacut' => 'á', 'Abreve' => 'Ă', 'abreve' => 'ă', 'ac' => '∾', 'acd' => '∿', 'acE' => '∾̳', 'Acirc' => 'Â', 'Acir' => 'Â', 'acirc' => 'â', 'acir' => 'â', 'acute' => '´', 'acut' => '´', 'Acy' => 'А', 'acy' => 'а', 'AElig' => 'Æ', 'AEli' => 'Æ', 'aelig' => 'æ', 'aeli' => 'æ', 'af' => '⁡', 'Afr' => '𝔄', 'afr' => '𝔞', 'Agrave' => 'À', 'Agrav' => 'À', 'agrave' => 'à', 'agrav' => 'à', 'alefsym' => 'ℵ', 'aleph' => 'ℵ', 'Alpha' => 'Α', 'alpha' => 'α', 'Amacr' => 'Ā', 'amacr' => 'ā', 'amalg' => '⨿', 'AMP' => '&', 'AM' => '&', 'amp' => '&', 'am' => '&', 'And' => '⩓', 'and' => '∧', 'andand' => '⩕', 'andd' => '⩜', 'andslope' => '⩘', 'andv' => '⩚', 'ang' => '∠', 'ange' => '⦤', 'angle' => '∠', 'angmsd' => '∡', 'angmsdaa' => '⦨', 'angmsdab' => '⦩', 'angmsdac' => '⦪', 'angmsdad' => '⦫', 'angmsdae' => '⦬', 'angmsdaf' => '⦭', 'angmsdag' => '⦮', 'angmsdah' => '⦯', 'angrt' => '∟', 'angrtvb' => '⊾', 'angrtvbd' => '⦝', 'angsph' => '∢', 'angst' => 'Å', 'angzarr' => '⍼', 'Aogon' => 'Ą', 'aogon' => 'ą', 'Aopf' => '𝔸', 'aopf' => '𝕒', 'ap' => '≈', 'apacir' => '⩯', 'apE' => '⩰', 'ape' => '≊', 'apid' => '≋', 'apos' => '\'', 'ApplyFunction' => '⁡', 'approx' => '≈', 'approxeq' => '≊', 'Aring' => 'Å', 'Arin' => 'Å', 'aring' => 'å', 'arin' => 'å', 'Ascr' => '𝒜', 'ascr' => '𝒶', 'Assign' => '≔', 'ast' => '*', 'asymp' => '≈', 'asympeq' => '≍', 'Atilde' => 'Ã', 'Atild' => 'Ã', 'atilde' => 'ã', 'atild' => 'ã', 'Auml' => 'Ä', 'Aum' => 'Ä', 'auml' => 'ä', 'aum' => 'ä', 'awconint' => '∳', 'awint' => '⨑', 'backcong' => '≌', 'backepsilon' => '϶', 'backprime' => '‵', 'backsim' => '∽', 'backsimeq' => '⋍', 'Backslash' => '∖', 'Barv' => '⫧', 'barvee' => '⊽', 'Barwed' => '⌆', 'barwed' => '⌅', 'barwedge' => '⌅', 'bbrk' => '⎵', 'bbrktbrk' => '⎶', 'bcong' => '≌', 'Bcy' => 'Б', 'bcy' => 'б', 'bdquo' => '„', 'becaus' => '∵', 'Because' => '∵', 'because' => '∵', 'bemptyv' => '⦰', 'bepsi' => '϶', 'bernou' => 'ℬ', 'Bernoullis' => 'ℬ', 'Beta' => 'Β', 'beta' => 'β', 'beth' => 'ℶ', 'between' => '≬', 'Bfr' => '𝔅', 'bfr' => '𝔟', 'bigcap' => '⋂', 'bigcirc' => '◯', 'bigcup' => '⋃', 'bigodot' => '⨀', 'bigoplus' => '⨁', 'bigotimes' => '⨂', 'bigsqcup' => '⨆', 'bigstar' => '★', 'bigtriangledown' => '▽', 'bigtriangleup' => '△', 'biguplus' => '⨄', 'bigvee' => '⋁', 'bigwedge' => '⋀', 'bkarow' => '⤍', 'blacklozenge' => '⧫', 'blacksquare' => '▪', 'blacktriangle' => '▴', 'blacktriangledown' => '▾', 'blacktriangleleft' => '◂', 'blacktriangleright' => '▸', 'blank' => '␣', 'blk12' => '▒', 'blk14' => '░', 'blk34' => '▓', 'block' => '█', 'bne' => '=⃥', 'bnequiv' => '≡⃥', 'bNot' => '⫭', 'bnot' => '⌐', 'Bopf' => '𝔹', 'bopf' => '𝕓', 'bot' => '⊥', 'bottom' => '⊥', 'bowtie' => '⋈', 'boxbox' => '⧉', 'boxDL' => '╗', 'boxDl' => '╖', 'boxdL' => '╕', 'boxdl' => '┐', 'boxDR' => '╔', 'boxDr' => '╓', 'boxdR' => '╒', 'boxdr' => '┌', 'boxH' => '═', 'boxh' => '─', 'boxHD' => '╦', 'boxHd' => '╤', 'boxhD' => '╥', 'boxhd' => '┬', 'boxHU' => '╩', 'boxHu' => '╧', 'boxhU' => '╨', 'boxhu' => '┴', 'boxminus' => '⊟', 'boxplus' => '⊞', 'boxtimes' => '⊠', 'boxUL' => '╝', 'boxUl' => '╜', 'boxuL' => '╛', 'boxul' => '┘', 'boxUR' => '╚', 'boxUr' => '╙', 'boxuR' => '╘', 'boxur' => '└', 'boxV' => '║', 'boxv' => '│', 'boxVH' => '╬', 'boxVh' => '╫', 'boxvH' => '╪', 'boxvh' => '┼', 'boxVL' => '╣', 'boxVl' => '╢', 'boxvL' => '╡', 'boxvl' => '┤', 'boxVR' => '╠', 'boxVr' => '╟', 'boxvR' => '╞', 'boxvr' => '├', 'bprime' => '‵', 'Breve' => '˘', 'breve' => '˘', 'brvbar' => '¦', 'brvba' => '¦', 'Bscr' => 'ℬ', 'bscr' => '𝒷', 'bsemi' => '⁏', 'bsim' => '∽', 'bsime' => '⋍', 'bsol' => '\\', 'bsolb' => '⧅', 'bsolhsub' => '⟈', 'bull' => '•', 'bullet' => '•', 'bump' => '≎', 'bumpE' => '⪮', 'bumpe' => '≏', 'Bumpeq' => '≎', 'bumpeq' => '≏', 'Cacute' => 'Ć', 'cacute' => 'ć', 'Cap' => '⋒', 'cap' => '∩', 'capand' => '⩄', 'capbrcup' => '⩉', 'capcap' => '⩋', 'capcup' => '⩇', 'capdot' => '⩀', 'CapitalDifferentialD' => 'ⅅ', 'caps' => '∩︀', 'caret' => '⁁', 'caron' => 'ˇ', 'Cayleys' => 'ℭ', 'ccaps' => '⩍', 'Ccaron' => 'Č', 'ccaron' => 'č', 'Ccedil' => 'Ç', 'Ccedi' => 'Ç', 'ccedil' => 'ç', 'ccedi' => 'ç', 'Ccirc' => 'Ĉ', 'ccirc' => 'ĉ', 'Cconint' => '∰', 'ccups' => '⩌', 'ccupssm' => '⩐', 'Cdot' => 'Ċ', 'cdot' => 'ċ', 'cedil' => '¸', 'cedi' => '¸', 'Cedilla' => '¸', 'cemptyv' => '⦲', 'cent' => '¢', 'cen' => '¢', 'CenterDot' => '·', 'centerdot' => '·', 'Cfr' => 'ℭ', 'cfr' => '𝔠', 'CHcy' => 'Ч', 'chcy' => 'ч', 'check' => '✓', 'checkmark' => '✓', 'Chi' => 'Χ', 'chi' => 'χ', 'cir' => '○', 'circ' => 'ˆ', 'circeq' => '≗', 'circlearrowleft' => '↺', 'circlearrowright' => '↻', 'circledast' => '⊛', 'circledcirc' => '⊚', 'circleddash' => '⊝', 'CircleDot' => '⊙', 'circledR' => '®', 'circledS' => 'Ⓢ', 'CircleMinus' => '⊖', 'CirclePlus' => '⊕', 'CircleTimes' => '⊗', 'cirE' => '⧃', 'cire' => '≗', 'cirfnint' => '⨐', 'cirmid' => '⫯', 'cirscir' => '⧂', 'ClockwiseContourIntegral' => '∲', 'CloseCurlyDoubleQuote' => '”', 'CloseCurlyQuote' => '’', 'clubs' => '♣', 'clubsuit' => '♣', 'Colon' => '∷', 'colon' => ':', 'Colone' => '⩴', 'colone' => '≔', 'coloneq' => '≔', 'comma' => ',', 'commat' => '@', 'comp' => '∁', 'compfn' => '∘', 'complement' => '∁', 'complexes' => 'ℂ', 'cong' => '≅', 'congdot' => '⩭', 'Congruent' => '≡', 'Conint' => '∯', 'conint' => '∮', 'ContourIntegral' => '∮', 'Copf' => 'ℂ', 'copf' => '𝕔', 'coprod' => '∐', 'Coproduct' => '∐', 'COPY' => '©', 'COP' => '©', 'copy' => '©', 'cop' => '©', 'copysr' => '℗', 'CounterClockwiseContourIntegral' => '∳', 'crarr' => '↵', 'Cross' => '⨯', 'cross' => '✗', 'Cscr' => '𝒞', 'cscr' => '𝒸', 'csub' => '⫏', 'csube' => '⫑', 'csup' => '⫐', 'csupe' => '⫒', 'ctdot' => '⋯', 'cudarrl' => '⤸', 'cudarrr' => '⤵', 'cuepr' => '⋞', 'cuesc' => '⋟', 'cularr' => '↶', 'cularrp' => '⤽', 'Cup' => '⋓', 'cup' => '∪', 'cupbrcap' => '⩈', 'CupCap' => '≍', 'cupcap' => '⩆', 'cupcup' => '⩊', 'cupdot' => '⊍', 'cupor' => '⩅', 'cups' => '∪︀', 'curarr' => '↷', 'curarrm' => '⤼', 'curlyeqprec' => '⋞', 'curlyeqsucc' => '⋟', 'curlyvee' => '⋎', 'curlywedge' => '⋏', 'curren' => '¤', 'curre' => '¤', 'curvearrowleft' => '↶', 'curvearrowright' => '↷', 'cuvee' => '⋎', 'cuwed' => '⋏', 'cwconint' => '∲', 'cwint' => '∱', 'cylcty' => '⌭', 'Dagger' => '‡', 'dagger' => '†', 'daleth' => 'ℸ', 'Darr' => '↡', 'dArr' => '⇓', 'darr' => '↓', 'dash' => '‐', 'Dashv' => '⫤', 'dashv' => '⊣', 'dbkarow' => '⤏', 'dblac' => '˝', 'Dcaron' => 'Ď', 'dcaron' => 'ď', 'Dcy' => 'Д', 'dcy' => 'д', 'DD' => 'ⅅ', 'dd' => 'ⅆ', 'ddagger' => '‡', 'ddarr' => '⇊', 'DDotrahd' => '⤑', 'ddotseq' => '⩷', 'deg' => '°', 'de' => '°', 'Del' => '∇', 'Delta' => 'Δ', 'delta' => 'δ', 'demptyv' => '⦱', 'dfisht' => '⥿', 'Dfr' => '𝔇', 'dfr' => '𝔡', 'dHar' => '⥥', 'dharl' => '⇃', 'dharr' => '⇂', 'DiacriticalAcute' => '´', 'DiacriticalDot' => '˙', 'DiacriticalDoubleAcute' => '˝', 'DiacriticalGrave' => '`', 'DiacriticalTilde' => '˜', 'diam' => '⋄', 'Diamond' => '⋄', 'diamond' => '⋄', 'diamondsuit' => '♦', 'diams' => '♦', 'die' => '¨', 'DifferentialD' => 'ⅆ', 'digamma' => 'ϝ', 'disin' => '⋲', 'div' => '÷', 'divide' => '÷', 'divid' => '÷', 'divideontimes' => '⋇', 'divonx' => '⋇', 'DJcy' => 'Ђ', 'djcy' => 'ђ', 'dlcorn' => '⌞', 'dlcrop' => '⌍', 'dollar' => '$', 'Dopf' => '𝔻', 'dopf' => '𝕕', 'Dot' => '¨', 'dot' => '˙', 'DotDot' => '⃜', 'doteq' => '≐', 'doteqdot' => '≑', 'DotEqual' => '≐', 'dotminus' => '∸', 'dotplus' => '∔', 'dotsquare' => '⊡', 'doublebarwedge' => '⌆', 'DoubleContourIntegral' => '∯', 'DoubleDot' => '¨', 'DoubleDownArrow' => '⇓', 'DoubleLeftArrow' => '⇐', 'DoubleLeftRightArrow' => '⇔', 'DoubleLeftTee' => '⫤', 'DoubleLongLeftArrow' => '⟸', 'DoubleLongLeftRightArrow' => '⟺', 'DoubleLongRightArrow' => '⟹', 'DoubleRightArrow' => '⇒', 'DoubleRightTee' => '⊨', 'DoubleUpArrow' => '⇑', 'DoubleUpDownArrow' => '⇕', 'DoubleVerticalBar' => '∥', 'DownArrow' => '↓', 'Downarrow' => '⇓', 'downarrow' => '↓', 'DownArrowBar' => '⤓', 'DownArrowUpArrow' => '⇵', 'DownBreve' => '̑', 'downdownarrows' => '⇊', 'downharpoonleft' => '⇃', 'downharpoonright' => '⇂', 'DownLeftRightVector' => '⥐', 'DownLeftTeeVector' => '⥞', 'DownLeftVector' => '↽', 'DownLeftVectorBar' => '⥖', 'DownRightTeeVector' => '⥟', 'DownRightVector' => '⇁', 'DownRightVectorBar' => '⥗', 'DownTee' => '⊤', 'DownTeeArrow' => '↧', 'drbkarow' => '⤐', 'drcorn' => '⌟', 'drcrop' => '⌌', 'Dscr' => '𝒟', 'dscr' => '𝒹', 'DScy' => 'Ѕ', 'dscy' => 'ѕ', 'dsol' => '⧶', 'Dstrok' => 'Đ', 'dstrok' => 'đ', 'dtdot' => '⋱', 'dtri' => '▿', 'dtrif' => '▾', 'duarr' => '⇵', 'duhar' => '⥯', 'dwangle' => '⦦', 'DZcy' => 'Џ', 'dzcy' => 'џ', 'dzigrarr' => '⟿', 'Eacute' => 'É', 'Eacut' => 'É', 'eacute' => 'é', 'eacut' => 'é', 'easter' => '⩮', 'Ecaron' => 'Ě', 'ecaron' => 'ě', 'ecir' => 'ê', 'Ecirc' => 'Ê', 'Ecir' => 'Ê', 'ecirc' => 'ê', 'ecolon' => '≕', 'Ecy' => 'Э', 'ecy' => 'э', 'eDDot' => '⩷', 'Edot' => 'Ė', 'eDot' => '≑', 'edot' => 'ė', 'ee' => 'ⅇ', 'efDot' => '≒', 'Efr' => '𝔈', 'efr' => '𝔢', 'eg' => '⪚', 'Egrave' => 'È', 'Egrav' => 'È', 'egrave' => 'è', 'egrav' => 'è', 'egs' => '⪖', 'egsdot' => '⪘', 'el' => '⪙', 'Element' => '∈', 'elinters' => '⏧', 'ell' => 'ℓ', 'els' => '⪕', 'elsdot' => '⪗', 'Emacr' => 'Ē', 'emacr' => 'ē', 'empty' => '∅', 'emptyset' => '∅', 'EmptySmallSquare' => '◻', 'emptyv' => '∅', 'EmptyVerySmallSquare' => '▫', 'emsp' => ' ', 'emsp13' => ' ', 'emsp14' => ' ', 'ENG' => 'Ŋ', 'eng' => 'ŋ', 'ensp' => ' ', 'Eogon' => 'Ę', 'eogon' => 'ę', 'Eopf' => '𝔼', 'eopf' => '𝕖', 'epar' => '⋕', 'eparsl' => '⧣', 'eplus' => '⩱', 'epsi' => 'ε', 'Epsilon' => 'Ε', 'epsilon' => 'ε', 'epsiv' => 'ϵ', 'eqcirc' => '≖', 'eqcolon' => '≕', 'eqsim' => '≂', 'eqslantgtr' => '⪖', 'eqslantless' => '⪕', 'Equal' => '⩵', 'equals' => '=', 'EqualTilde' => '≂', 'equest' => '≟', 'Equilibrium' => '⇌', 'equiv' => '≡', 'equivDD' => '⩸', 'eqvparsl' => '⧥', 'erarr' => '⥱', 'erDot' => '≓', 'Escr' => 'ℰ', 'escr' => 'ℯ', 'esdot' => '≐', 'Esim' => '⩳', 'esim' => '≂', 'Eta' => 'Η', 'eta' => 'η', 'ETH' => 'Ð', 'ET' => 'Ð', 'eth' => 'ð', 'et' => 'ð', 'Euml' => 'Ë', 'Eum' => 'Ë', 'euml' => 'ë', 'eum' => 'ë', 'euro' => '€', 'excl' => '!', 'exist' => '∃', 'Exists' => '∃', 'expectation' => 'ℰ', 'ExponentialE' => 'ⅇ', 'exponentiale' => 'ⅇ', 'fallingdotseq' => '≒', 'Fcy' => 'Ф', 'fcy' => 'ф', 'female' => '♀', 'ffilig' => 'ffi', 'fflig' => 'ff', 'ffllig' => 'ffl', 'Ffr' => '𝔉', 'ffr' => '𝔣', 'filig' => 'fi', 'FilledSmallSquare' => '◼', 'FilledVerySmallSquare' => '▪', 'fjlig' => 'fj', 'flat' => '♭', 'fllig' => 'fl', 'fltns' => '▱', 'fnof' => 'ƒ', 'Fopf' => '𝔽', 'fopf' => '𝕗', 'ForAll' => '∀', 'forall' => '∀', 'fork' => '⋔', 'forkv' => '⫙', 'Fouriertrf' => 'ℱ', 'fpartint' => '⨍', 'frac12' => '½', 'frac1' => '¼', 'frac13' => '⅓', 'frac14' => '¼', 'frac15' => '⅕', 'frac16' => '⅙', 'frac18' => '⅛', 'frac23' => '⅔', 'frac25' => '⅖', 'frac34' => '¾', 'frac3' => '¾', 'frac35' => '⅗', 'frac38' => '⅜', 'frac45' => '⅘', 'frac56' => '⅚', 'frac58' => '⅝', 'frac78' => '⅞', 'frasl' => '⁄', 'frown' => '⌢', 'Fscr' => 'ℱ', 'fscr' => '𝒻', 'gacute' => 'ǵ', 'Gamma' => 'Γ', 'gamma' => 'γ', 'Gammad' => 'Ϝ', 'gammad' => 'ϝ', 'gap' => '⪆', 'Gbreve' => 'Ğ', 'gbreve' => 'ğ', 'Gcedil' => 'Ģ', 'Gcirc' => 'Ĝ', 'gcirc' => 'ĝ', 'Gcy' => 'Г', 'gcy' => 'г', 'Gdot' => 'Ġ', 'gdot' => 'ġ', 'gE' => '≧', 'ge' => '≥', 'gEl' => '⪌', 'gel' => '⋛', 'geq' => '≥', 'geqq' => '≧', 'geqslant' => '⩾', 'ges' => '⩾', 'gescc' => '⪩', 'gesdot' => '⪀', 'gesdoto' => '⪂', 'gesdotol' => '⪄', 'gesl' => '⋛︀', 'gesles' => '⪔', 'Gfr' => '𝔊', 'gfr' => '𝔤', 'Gg' => '⋙', 'gg' => '≫', 'ggg' => '⋙', 'gimel' => 'ℷ', 'GJcy' => 'Ѓ', 'gjcy' => 'ѓ', 'gl' => '≷', 'gla' => '⪥', 'glE' => '⪒', 'glj' => '⪤', 'gnap' => '⪊', 'gnapprox' => '⪊', 'gnE' => '≩', 'gne' => '⪈', 'gneq' => '⪈', 'gneqq' => '≩', 'gnsim' => '⋧', 'Gopf' => '𝔾', 'gopf' => '𝕘', 'grave' => '`', 'GreaterEqual' => '≥', 'GreaterEqualLess' => '⋛', 'GreaterFullEqual' => '≧', 'GreaterGreater' => '⪢', 'GreaterLess' => '≷', 'GreaterSlantEqual' => '⩾', 'GreaterTilde' => '≳', 'Gscr' => '𝒢', 'gscr' => 'ℊ', 'gsim' => '≳', 'gsime' => '⪎', 'gsiml' => '⪐', 'GT' => '>', 'G' => '>', 'Gt' => '≫', 'gt' => '>', 'g' => '>', 'gtcc' => '⪧', 'gtcir' => '⩺', 'gtdot' => '⋗', 'gtlPar' => '⦕', 'gtquest' => '⩼', 'gtrapprox' => '⪆', 'gtrarr' => '⥸', 'gtrdot' => '⋗', 'gtreqless' => '⋛', 'gtreqqless' => '⪌', 'gtrless' => '≷', 'gtrsim' => '≳', 'gvertneqq' => '≩︀', 'gvnE' => '≩︀', 'Hacek' => 'ˇ', 'hairsp' => ' ', 'half' => '½', 'hamilt' => 'ℋ', 'HARDcy' => 'Ъ', 'hardcy' => 'ъ', 'hArr' => '⇔', 'harr' => '↔', 'harrcir' => '⥈', 'harrw' => '↭', 'Hat' => '^', 'hbar' => 'ℏ', 'Hcirc' => 'Ĥ', 'hcirc' => 'ĥ', 'hearts' => '♥', 'heartsuit' => '♥', 'hellip' => '…', 'hercon' => '⊹', 'Hfr' => 'ℌ', 'hfr' => '𝔥', 'HilbertSpace' => 'ℋ', 'hksearow' => '⤥', 'hkswarow' => '⤦', 'hoarr' => '⇿', 'homtht' => '∻', 'hookleftarrow' => '↩', 'hookrightarrow' => '↪', 'Hopf' => 'ℍ', 'hopf' => '𝕙', 'horbar' => '―', 'HorizontalLine' => '─', 'Hscr' => 'ℋ', 'hscr' => '𝒽', 'hslash' => 'ℏ', 'Hstrok' => 'Ħ', 'hstrok' => 'ħ', 'HumpDownHump' => '≎', 'HumpEqual' => '≏', 'hybull' => '⁃', 'hyphen' => '‐', 'Iacute' => 'Í', 'Iacut' => 'Í', 'iacute' => 'í', 'iacut' => 'í', 'ic' => '⁣', 'Icirc' => 'Î', 'Icir' => 'Î', 'icirc' => 'î', 'icir' => 'î', 'Icy' => 'И', 'icy' => 'и', 'Idot' => 'İ', 'IEcy' => 'Е', 'iecy' => 'е', 'iexcl' => '¡', 'iexc' => '¡', 'iff' => '⇔', 'Ifr' => 'ℑ', 'ifr' => '𝔦', 'Igrave' => 'Ì', 'Igrav' => 'Ì', 'igrave' => 'ì', 'igrav' => 'ì', 'ii' => 'ⅈ', 'iiiint' => '⨌', 'iiint' => '∭', 'iinfin' => '⧜', 'iiota' => '℩', 'IJlig' => 'IJ', 'ijlig' => 'ij', 'Im' => 'ℑ', 'Imacr' => 'Ī', 'imacr' => 'ī', 'image' => 'ℑ', 'ImaginaryI' => 'ⅈ', 'imagline' => 'ℐ', 'imagpart' => 'ℑ', 'imath' => 'ı', 'imof' => '⊷', 'imped' => 'Ƶ', 'Implies' => '⇒', 'in' => '∈', 'incare' => '℅', 'infin' => '∞', 'infintie' => '⧝', 'inodot' => 'ı', 'Int' => '∬', 'int' => '∫', 'intcal' => '⊺', 'integers' => 'ℤ', 'Integral' => '∫', 'intercal' => '⊺', 'Intersection' => '⋂', 'intlarhk' => '⨗', 'intprod' => '⨼', 'InvisibleComma' => '⁣', 'InvisibleTimes' => '⁢', 'IOcy' => 'Ё', 'iocy' => 'ё', 'Iogon' => 'Į', 'iogon' => 'į', 'Iopf' => '𝕀', 'iopf' => '𝕚', 'Iota' => 'Ι', 'iota' => 'ι', 'iprod' => '⨼', 'iquest' => '¿', 'iques' => '¿', 'Iscr' => 'ℐ', 'iscr' => '𝒾', 'isin' => '∈', 'isindot' => '⋵', 'isinE' => '⋹', 'isins' => '⋴', 'isinsv' => '⋳', 'isinv' => '∈', 'it' => '⁢', 'Itilde' => 'Ĩ', 'itilde' => 'ĩ', 'Iukcy' => 'І', 'iukcy' => 'і', 'Iuml' => 'Ï', 'Ium' => 'Ï', 'iuml' => 'ï', 'ium' => 'ï', 'Jcirc' => 'Ĵ', 'jcirc' => 'ĵ', 'Jcy' => 'Й', 'jcy' => 'й', 'Jfr' => '𝔍', 'jfr' => '𝔧', 'jmath' => 'ȷ', 'Jopf' => '𝕁', 'jopf' => '𝕛', 'Jscr' => '𝒥', 'jscr' => '𝒿', 'Jsercy' => 'Ј', 'jsercy' => 'ј', 'Jukcy' => 'Є', 'jukcy' => 'є', 'Kappa' => 'Κ', 'kappa' => 'κ', 'kappav' => 'ϰ', 'Kcedil' => 'Ķ', 'kcedil' => 'ķ', 'Kcy' => 'К', 'kcy' => 'к', 'Kfr' => '𝔎', 'kfr' => '𝔨', 'kgreen' => 'ĸ', 'KHcy' => 'Х', 'khcy' => 'х', 'KJcy' => 'Ќ', 'kjcy' => 'ќ', 'Kopf' => '𝕂', 'kopf' => '𝕜', 'Kscr' => '𝒦', 'kscr' => '𝓀', 'lAarr' => '⇚', 'Lacute' => 'Ĺ', 'lacute' => 'ĺ', 'laemptyv' => '⦴', 'lagran' => 'ℒ', 'Lambda' => 'Λ', 'lambda' => 'λ', 'Lang' => '⟪', 'lang' => '⟨', 'langd' => '⦑', 'langle' => '⟨', 'lap' => '⪅', 'Laplacetrf' => 'ℒ', 'laquo' => '«', 'laqu' => '«', 'Larr' => '↞', 'lArr' => '⇐', 'larr' => '←', 'larrb' => '⇤', 'larrbfs' => '⤟', 'larrfs' => '⤝', 'larrhk' => '↩', 'larrlp' => '↫', 'larrpl' => '⤹', 'larrsim' => '⥳', 'larrtl' => '↢', 'lat' => '⪫', 'lAtail' => '⤛', 'latail' => '⤙', 'late' => '⪭', 'lates' => '⪭︀', 'lBarr' => '⤎', 'lbarr' => '⤌', 'lbbrk' => '❲', 'lbrace' => '{', 'lbrack' => '[', 'lbrke' => '⦋', 'lbrksld' => '⦏', 'lbrkslu' => '⦍', 'Lcaron' => 'Ľ', 'lcaron' => 'ľ', 'Lcedil' => 'Ļ', 'lcedil' => 'ļ', 'lceil' => '⌈', 'lcub' => '{', 'Lcy' => 'Л', 'lcy' => 'л', 'ldca' => '⤶', 'ldquo' => '“', 'ldquor' => '„', 'ldrdhar' => '⥧', 'ldrushar' => '⥋', 'ldsh' => '↲', 'lE' => '≦', 'le' => '≤', 'LeftAngleBracket' => '⟨', 'LeftArrow' => '←', 'Leftarrow' => '⇐', 'leftarrow' => '←', 'LeftArrowBar' => '⇤', 'LeftArrowRightArrow' => '⇆', 'leftarrowtail' => '↢', 'LeftCeiling' => '⌈', 'LeftDoubleBracket' => '⟦', 'LeftDownTeeVector' => '⥡', 'LeftDownVector' => '⇃', 'LeftDownVectorBar' => '⥙', 'LeftFloor' => '⌊', 'leftharpoondown' => '↽', 'leftharpoonup' => '↼', 'leftleftarrows' => '⇇', 'LeftRightArrow' => '↔', 'Leftrightarrow' => '⇔', 'leftrightarrow' => '↔', 'leftrightarrows' => '⇆', 'leftrightharpoons' => '⇋', 'leftrightsquigarrow' => '↭', 'LeftRightVector' => '⥎', 'LeftTee' => '⊣', 'LeftTeeArrow' => '↤', 'LeftTeeVector' => '⥚', 'leftthreetimes' => '⋋', 'LeftTriangle' => '⊲', 'LeftTriangleBar' => '⧏', 'LeftTriangleEqual' => '⊴', 'LeftUpDownVector' => '⥑', 'LeftUpTeeVector' => '⥠', 'LeftUpVector' => '↿', 'LeftUpVectorBar' => '⥘', 'LeftVector' => '↼', 'LeftVectorBar' => '⥒', 'lEg' => '⪋', 'leg' => '⋚', 'leq' => '≤', 'leqq' => '≦', 'leqslant' => '⩽', 'les' => '⩽', 'lescc' => '⪨', 'lesdot' => '⩿', 'lesdoto' => '⪁', 'lesdotor' => '⪃', 'lesg' => '⋚︀', 'lesges' => '⪓', 'lessapprox' => '⪅', 'lessdot' => '⋖', 'lesseqgtr' => '⋚', 'lesseqqgtr' => '⪋', 'LessEqualGreater' => '⋚', 'LessFullEqual' => '≦', 'LessGreater' => '≶', 'lessgtr' => '≶', 'LessLess' => '⪡', 'lesssim' => '≲', 'LessSlantEqual' => '⩽', 'LessTilde' => '≲', 'lfisht' => '⥼', 'lfloor' => '⌊', 'Lfr' => '𝔏', 'lfr' => '𝔩', 'lg' => '≶', 'lgE' => '⪑', 'lHar' => '⥢', 'lhard' => '↽', 'lharu' => '↼', 'lharul' => '⥪', 'lhblk' => '▄', 'LJcy' => 'Љ', 'ljcy' => 'љ', 'Ll' => '⋘', 'll' => '≪', 'llarr' => '⇇', 'llcorner' => '⌞', 'Lleftarrow' => '⇚', 'llhard' => '⥫', 'lltri' => '◺', 'Lmidot' => 'Ŀ', 'lmidot' => 'ŀ', 'lmoust' => '⎰', 'lmoustache' => '⎰', 'lnap' => '⪉', 'lnapprox' => '⪉', 'lnE' => '≨', 'lne' => '⪇', 'lneq' => '⪇', 'lneqq' => '≨', 'lnsim' => '⋦', 'loang' => '⟬', 'loarr' => '⇽', 'lobrk' => '⟦', 'LongLeftArrow' => '⟵', 'Longleftarrow' => '⟸', 'longleftarrow' => '⟵', 'LongLeftRightArrow' => '⟷', 'Longleftrightarrow' => '⟺', 'longleftrightarrow' => '⟷', 'longmapsto' => '⟼', 'LongRightArrow' => '⟶', 'Longrightarrow' => '⟹', 'longrightarrow' => '⟶', 'looparrowleft' => '↫', 'looparrowright' => '↬', 'lopar' => '⦅', 'Lopf' => '𝕃', 'lopf' => '𝕝', 'loplus' => '⨭', 'lotimes' => '⨴', 'lowast' => '∗', 'lowbar' => '_', 'LowerLeftArrow' => '↙', 'LowerRightArrow' => '↘', 'loz' => '◊', 'lozenge' => '◊', 'lozf' => '⧫', 'lpar' => '(', 'lparlt' => '⦓', 'lrarr' => '⇆', 'lrcorner' => '⌟', 'lrhar' => '⇋', 'lrhard' => '⥭', 'lrm' => '‎', 'lrtri' => '⊿', 'lsaquo' => '‹', 'Lscr' => 'ℒ', 'lscr' => '𝓁', 'Lsh' => '↰', 'lsh' => '↰', 'lsim' => '≲', 'lsime' => '⪍', 'lsimg' => '⪏', 'lsqb' => '[', 'lsquo' => '‘', 'lsquor' => '‚', 'Lstrok' => 'Ł', 'lstrok' => 'ł', 'LT' => '<', 'L' => '<', 'Lt' => '≪', 'lt' => '<', 'l' => '<', 'ltcc' => '⪦', 'ltcir' => '⩹', 'ltdot' => '⋖', 'lthree' => '⋋', 'ltimes' => '⋉', 'ltlarr' => '⥶', 'ltquest' => '⩻', 'ltri' => '◃', 'ltrie' => '⊴', 'ltrif' => '◂', 'ltrPar' => '⦖', 'lurdshar' => '⥊', 'luruhar' => '⥦', 'lvertneqq' => '≨︀', 'lvnE' => '≨︀', 'macr' => '¯', 'mac' => '¯', 'male' => '♂', 'malt' => '✠', 'maltese' => '✠', 'Map' => '⤅', 'map' => '↦', 'mapsto' => '↦', 'mapstodown' => '↧', 'mapstoleft' => '↤', 'mapstoup' => '↥', 'marker' => '▮', 'mcomma' => '⨩', 'Mcy' => 'М', 'mcy' => 'м', 'mdash' => '—', 'mDDot' => '∺', 'measuredangle' => '∡', 'MediumSpace' => ' ', 'Mellintrf' => 'ℳ', 'Mfr' => '𝔐', 'mfr' => '𝔪', 'mho' => '℧', 'micro' => 'µ', 'micr' => 'µ', 'mid' => '∣', 'midast' => '*', 'midcir' => '⫰', 'middot' => '·', 'middo' => '·', 'minus' => '−', 'minusb' => '⊟', 'minusd' => '∸', 'minusdu' => '⨪', 'MinusPlus' => '∓', 'mlcp' => '⫛', 'mldr' => '…', 'mnplus' => '∓', 'models' => '⊧', 'Mopf' => '𝕄', 'mopf' => '𝕞', 'mp' => '∓', 'Mscr' => 'ℳ', 'mscr' => '𝓂', 'mstpos' => '∾', 'Mu' => 'Μ', 'mu' => 'μ', 'multimap' => '⊸', 'mumap' => '⊸', 'nabla' => '∇', 'Nacute' => 'Ń', 'nacute' => 'ń', 'nang' => '∠⃒', 'nap' => '≉', 'napE' => '⩰̸', 'napid' => '≋̸', 'napos' => 'ʼn', 'napprox' => '≉', 'natur' => '♮', 'natural' => '♮', 'naturals' => 'ℕ', 'nbsp' => ' ', 'nbs' => ' ', 'nbump' => '≎̸', 'nbumpe' => '≏̸', 'ncap' => '⩃', 'Ncaron' => 'Ň', 'ncaron' => 'ň', 'Ncedil' => 'Ņ', 'ncedil' => 'ņ', 'ncong' => '≇', 'ncongdot' => '⩭̸', 'ncup' => '⩂', 'Ncy' => 'Н', 'ncy' => 'н', 'ndash' => '–', 'ne' => '≠', 'nearhk' => '⤤', 'neArr' => '⇗', 'nearr' => '↗', 'nearrow' => '↗', 'nedot' => '≐̸', 'NegativeMediumSpace' => '​', 'NegativeThickSpace' => '​', 'NegativeThinSpace' => '​', 'NegativeVeryThinSpace' => '​', 'nequiv' => '≢', 'nesear' => '⤨', 'nesim' => '≂̸', 'NestedGreaterGreater' => '≫', 'NestedLessLess' => '≪', 'NewLine' => ' ', 'nexist' => '∄', 'nexists' => '∄', 'Nfr' => '𝔑', 'nfr' => '𝔫', 'ngE' => '≧̸', 'nge' => '≱', 'ngeq' => '≱', 'ngeqq' => '≧̸', 'ngeqslant' => '⩾̸', 'nges' => '⩾̸', 'nGg' => '⋙̸', 'ngsim' => '≵', 'nGt' => '≫⃒', 'ngt' => '≯', 'ngtr' => '≯', 'nGtv' => '≫̸', 'nhArr' => '⇎', 'nharr' => '↮', 'nhpar' => '⫲', 'ni' => '∋', 'nis' => '⋼', 'nisd' => '⋺', 'niv' => '∋', 'NJcy' => 'Њ', 'njcy' => 'њ', 'nlArr' => '⇍', 'nlarr' => '↚', 'nldr' => '‥', 'nlE' => '≦̸', 'nle' => '≰', 'nLeftarrow' => '⇍', 'nleftarrow' => '↚', 'nLeftrightarrow' => '⇎', 'nleftrightarrow' => '↮', 'nleq' => '≰', 'nleqq' => '≦̸', 'nleqslant' => '⩽̸', 'nles' => '⩽̸', 'nless' => '≮', 'nLl' => '⋘̸', 'nlsim' => '≴', 'nLt' => '≪⃒', 'nlt' => '≮', 'nltri' => '⋪', 'nltrie' => '⋬', 'nLtv' => '≪̸', 'nmid' => '∤', 'NoBreak' => '⁠', 'NonBreakingSpace' => ' ', 'Nopf' => 'ℕ', 'nopf' => '𝕟', 'Not' => '⫬', 'not' => '¬', 'no' => '¬', 'NotCongruent' => '≢', 'NotCupCap' => '≭', 'NotDoubleVerticalBar' => '∦', 'NotElement' => '∉', 'NotEqual' => '≠', 'NotEqualTilde' => '≂̸', 'NotExists' => '∄', 'NotGreater' => '≯', 'NotGreaterEqual' => '≱', 'NotGreaterFullEqual' => '≧̸', 'NotGreaterGreater' => '≫̸', 'NotGreaterLess' => '≹', 'NotGreaterSlantEqual' => '⩾̸', 'NotGreaterTilde' => '≵', 'NotHumpDownHump' => '≎̸', 'NotHumpEqual' => '≏̸', 'notin' => '∉', 'notindot' => '⋵̸', 'notinE' => '⋹̸', 'notinva' => '∉', 'notinvb' => '⋷', 'notinvc' => '⋶', 'NotLeftTriangle' => '⋪', 'NotLeftTriangleBar' => '⧏̸', 'NotLeftTriangleEqual' => '⋬', 'NotLess' => '≮', 'NotLessEqual' => '≰', 'NotLessGreater' => '≸', 'NotLessLess' => '≪̸', 'NotLessSlantEqual' => '⩽̸', 'NotLessTilde' => '≴', 'NotNestedGreaterGreater' => '⪢̸', 'NotNestedLessLess' => '⪡̸', 'notni' => '∌', 'notniva' => '∌', 'notnivb' => '⋾', 'notnivc' => '⋽', 'NotPrecedes' => '⊀', 'NotPrecedesEqual' => '⪯̸', 'NotPrecedesSlantEqual' => '⋠', 'NotReverseElement' => '∌', 'NotRightTriangle' => '⋫', 'NotRightTriangleBar' => '⧐̸', 'NotRightTriangleEqual' => '⋭', 'NotSquareSubset' => '⊏̸', 'NotSquareSubsetEqual' => '⋢', 'NotSquareSuperset' => '⊐̸', 'NotSquareSupersetEqual' => '⋣', 'NotSubset' => '⊂⃒', 'NotSubsetEqual' => '⊈', 'NotSucceeds' => '⊁', 'NotSucceedsEqual' => '⪰̸', 'NotSucceedsSlantEqual' => '⋡', 'NotSucceedsTilde' => '≿̸', 'NotSuperset' => '⊃⃒', 'NotSupersetEqual' => '⊉', 'NotTilde' => '≁', 'NotTildeEqual' => '≄', 'NotTildeFullEqual' => '≇', 'NotTildeTilde' => '≉', 'NotVerticalBar' => '∤', 'npar' => '∦', 'nparallel' => '∦', 'nparsl' => '⫽⃥', 'npart' => '∂̸', 'npolint' => '⨔', 'npr' => '⊀', 'nprcue' => '⋠', 'npre' => '⪯̸', 'nprec' => '⊀', 'npreceq' => '⪯̸', 'nrArr' => '⇏', 'nrarr' => '↛', 'nrarrc' => '⤳̸', 'nrarrw' => '↝̸', 'nRightarrow' => '⇏', 'nrightarrow' => '↛', 'nrtri' => '⋫', 'nrtrie' => '⋭', 'nsc' => '⊁', 'nsccue' => '⋡', 'nsce' => '⪰̸', 'Nscr' => '𝒩', 'nscr' => '𝓃', 'nshortmid' => '∤', 'nshortparallel' => '∦', 'nsim' => '≁', 'nsime' => '≄', 'nsimeq' => '≄', 'nsmid' => '∤', 'nspar' => '∦', 'nsqsube' => '⋢', 'nsqsupe' => '⋣', 'nsub' => '⊄', 'nsubE' => '⫅̸', 'nsube' => '⊈', 'nsubset' => '⊂⃒', 'nsubseteq' => '⊈', 'nsubseteqq' => '⫅̸', 'nsucc' => '⊁', 'nsucceq' => '⪰̸', 'nsup' => '⊅', 'nsupE' => '⫆̸', 'nsupe' => '⊉', 'nsupset' => '⊃⃒', 'nsupseteq' => '⊉', 'nsupseteqq' => '⫆̸', 'ntgl' => '≹', 'Ntilde' => 'Ñ', 'Ntild' => 'Ñ', 'ntilde' => 'ñ', 'ntild' => 'ñ', 'ntlg' => '≸', 'ntriangleleft' => '⋪', 'ntrianglelefteq' => '⋬', 'ntriangleright' => '⋫', 'ntrianglerighteq' => '⋭', 'Nu' => 'Ν', 'nu' => 'ν', 'num' => '#', 'numero' => '№', 'numsp' => ' ', 'nvap' => '≍⃒', 'nVDash' => '⊯', 'nVdash' => '⊮', 'nvDash' => '⊭', 'nvdash' => '⊬', 'nvge' => '≥⃒', 'nvgt' => '>⃒', 'nvHarr' => '⤄', 'nvinfin' => '⧞', 'nvlArr' => '⤂', 'nvle' => '≤⃒', 'nvlt' => '<⃒', 'nvltrie' => '⊴⃒', 'nvrArr' => '⤃', 'nvrtrie' => '⊵⃒', 'nvsim' => '∼⃒', 'nwarhk' => '⤣', 'nwArr' => '⇖', 'nwarr' => '↖', 'nwarrow' => '↖', 'nwnear' => '⤧', 'Oacute' => 'Ó', 'Oacut' => 'Ó', 'oacute' => 'ó', 'oacut' => 'ó', 'oast' => '⊛', 'ocir' => 'ô', 'Ocirc' => 'Ô', 'Ocir' => 'Ô', 'ocirc' => 'ô', 'Ocy' => 'О', 'ocy' => 'о', 'odash' => '⊝', 'Odblac' => 'Ő', 'odblac' => 'ő', 'odiv' => '⨸', 'odot' => '⊙', 'odsold' => '⦼', 'OElig' => 'Œ', 'oelig' => 'œ', 'ofcir' => '⦿', 'Ofr' => '𝔒', 'ofr' => '𝔬', 'ogon' => '˛', 'Ograve' => 'Ò', 'Ograv' => 'Ò', 'ograve' => 'ò', 'ograv' => 'ò', 'ogt' => '⧁', 'ohbar' => '⦵', 'ohm' => 'Ω', 'oint' => '∮', 'olarr' => '↺', 'olcir' => '⦾', 'olcross' => '⦻', 'oline' => '‾', 'olt' => '⧀', 'Omacr' => 'Ō', 'omacr' => 'ō', 'Omega' => 'Ω', 'omega' => 'ω', 'Omicron' => 'Ο', 'omicron' => 'ο', 'omid' => '⦶', 'ominus' => '⊖', 'Oopf' => '𝕆', 'oopf' => '𝕠', 'opar' => '⦷', 'OpenCurlyDoubleQuote' => '“', 'OpenCurlyQuote' => '‘', 'operp' => '⦹', 'oplus' => '⊕', 'Or' => '⩔', 'or' => '∨', 'orarr' => '↻', 'ord' => 'º', 'order' => 'ℴ', 'orderof' => 'ℴ', 'ordf' => 'ª', 'ordm' => 'º', 'origof' => '⊶', 'oror' => '⩖', 'orslope' => '⩗', 'orv' => '⩛', 'oS' => 'Ⓢ', 'Oscr' => '𝒪', 'oscr' => 'ℴ', 'Oslash' => 'Ø', 'Oslas' => 'Ø', 'oslash' => 'ø', 'oslas' => 'ø', 'osol' => '⊘', 'Otilde' => 'Õ', 'Otild' => 'Õ', 'otilde' => 'õ', 'otild' => 'õ', 'Otimes' => '⨷', 'otimes' => '⊗', 'otimesas' => '⨶', 'Ouml' => 'Ö', 'Oum' => 'Ö', 'ouml' => 'ö', 'oum' => 'ö', 'ovbar' => '⌽', 'OverBar' => '‾', 'OverBrace' => '⏞', 'OverBracket' => '⎴', 'OverParenthesis' => '⏜', 'par' => '¶', 'para' => '¶', 'parallel' => '∥', 'parsim' => '⫳', 'parsl' => '⫽', 'part' => '∂', 'PartialD' => '∂', 'Pcy' => 'П', 'pcy' => 'п', 'percnt' => '%', 'period' => '.', 'permil' => '‰', 'perp' => '⊥', 'pertenk' => '‱', 'Pfr' => '𝔓', 'pfr' => '𝔭', 'Phi' => 'Φ', 'phi' => 'φ', 'phiv' => 'ϕ', 'phmmat' => 'ℳ', 'phone' => '☎', 'Pi' => 'Π', 'pi' => 'π', 'pitchfork' => '⋔', 'piv' => 'ϖ', 'planck' => 'ℏ', 'planckh' => 'ℎ', 'plankv' => 'ℏ', 'plus' => '+', 'plusacir' => '⨣', 'plusb' => '⊞', 'pluscir' => '⨢', 'plusdo' => '∔', 'plusdu' => '⨥', 'pluse' => '⩲', 'PlusMinus' => '±', 'plusmn' => '±', 'plusm' => '±', 'plussim' => '⨦', 'plustwo' => '⨧', 'pm' => '±', 'Poincareplane' => 'ℌ', 'pointint' => '⨕', 'Popf' => 'ℙ', 'popf' => '𝕡', 'pound' => '£', 'poun' => '£', 'Pr' => '⪻', 'pr' => '≺', 'prap' => '⪷', 'prcue' => '≼', 'prE' => '⪳', 'pre' => '⪯', 'prec' => '≺', 'precapprox' => '⪷', 'preccurlyeq' => '≼', 'Precedes' => '≺', 'PrecedesEqual' => '⪯', 'PrecedesSlantEqual' => '≼', 'PrecedesTilde' => '≾', 'preceq' => '⪯', 'precnapprox' => '⪹', 'precneqq' => '⪵', 'precnsim' => '⋨', 'precsim' => '≾', 'Prime' => '″', 'prime' => '′', 'primes' => 'ℙ', 'prnap' => '⪹', 'prnE' => '⪵', 'prnsim' => '⋨', 'prod' => '∏', 'Product' => '∏', 'profalar' => '⌮', 'profline' => '⌒', 'profsurf' => '⌓', 'prop' => '∝', 'Proportion' => '∷', 'Proportional' => '∝', 'propto' => '∝', 'prsim' => '≾', 'prurel' => '⊰', 'Pscr' => '𝒫', 'pscr' => '𝓅', 'Psi' => 'Ψ', 'psi' => 'ψ', 'puncsp' => ' ', 'Qfr' => '𝔔', 'qfr' => '𝔮', 'qint' => '⨌', 'Qopf' => 'ℚ', 'qopf' => '𝕢', 'qprime' => '⁗', 'Qscr' => '𝒬', 'qscr' => '𝓆', 'quaternions' => 'ℍ', 'quatint' => '⨖', 'quest' => '?', 'questeq' => '≟', 'QUOT' => '"', 'QUO' => '"', 'quot' => '"', 'quo' => '"', 'rAarr' => '⇛', 'race' => '∽̱', 'Racute' => 'Ŕ', 'racute' => 'ŕ', 'radic' => '√', 'raemptyv' => '⦳', 'Rang' => '⟫', 'rang' => '⟩', 'rangd' => '⦒', 'range' => '⦥', 'rangle' => '⟩', 'raquo' => '»', 'raqu' => '»', 'Rarr' => '↠', 'rArr' => '⇒', 'rarr' => '→', 'rarrap' => '⥵', 'rarrb' => '⇥', 'rarrbfs' => '⤠', 'rarrc' => '⤳', 'rarrfs' => '⤞', 'rarrhk' => '↪', 'rarrlp' => '↬', 'rarrpl' => '⥅', 'rarrsim' => '⥴', 'Rarrtl' => '⤖', 'rarrtl' => '↣', 'rarrw' => '↝', 'rAtail' => '⤜', 'ratail' => '⤚', 'ratio' => '∶', 'rationals' => 'ℚ', 'RBarr' => '⤐', 'rBarr' => '⤏', 'rbarr' => '⤍', 'rbbrk' => '❳', 'rbrace' => '}', 'rbrack' => ']', 'rbrke' => '⦌', 'rbrksld' => '⦎', 'rbrkslu' => '⦐', 'Rcaron' => 'Ř', 'rcaron' => 'ř', 'Rcedil' => 'Ŗ', 'rcedil' => 'ŗ', 'rceil' => '⌉', 'rcub' => '}', 'Rcy' => 'Р', 'rcy' => 'р', 'rdca' => '⤷', 'rdldhar' => '⥩', 'rdquo' => '”', 'rdquor' => '”', 'rdsh' => '↳', 'Re' => 'ℜ', 'real' => 'ℜ', 'realine' => 'ℛ', 'realpart' => 'ℜ', 'reals' => 'ℝ', 'rect' => '▭', 'REG' => '®', 'RE' => '®', 'reg' => '®', 're' => '®', 'ReverseElement' => '∋', 'ReverseEquilibrium' => '⇋', 'ReverseUpEquilibrium' => '⥯', 'rfisht' => '⥽', 'rfloor' => '⌋', 'Rfr' => 'ℜ', 'rfr' => '𝔯', 'rHar' => '⥤', 'rhard' => '⇁', 'rharu' => '⇀', 'rharul' => '⥬', 'Rho' => 'Ρ', 'rho' => 'ρ', 'rhov' => 'ϱ', 'RightAngleBracket' => '⟩', 'RightArrow' => '→', 'Rightarrow' => '⇒', 'rightarrow' => '→', 'RightArrowBar' => '⇥', 'RightArrowLeftArrow' => '⇄', 'rightarrowtail' => '↣', 'RightCeiling' => '⌉', 'RightDoubleBracket' => '⟧', 'RightDownTeeVector' => '⥝', 'RightDownVector' => '⇂', 'RightDownVectorBar' => '⥕', 'RightFloor' => '⌋', 'rightharpoondown' => '⇁', 'rightharpoonup' => '⇀', 'rightleftarrows' => '⇄', 'rightleftharpoons' => '⇌', 'rightrightarrows' => '⇉', 'rightsquigarrow' => '↝', 'RightTee' => '⊢', 'RightTeeArrow' => '↦', 'RightTeeVector' => '⥛', 'rightthreetimes' => '⋌', 'RightTriangle' => '⊳', 'RightTriangleBar' => '⧐', 'RightTriangleEqual' => '⊵', 'RightUpDownVector' => '⥏', 'RightUpTeeVector' => '⥜', 'RightUpVector' => '↾', 'RightUpVectorBar' => '⥔', 'RightVector' => '⇀', 'RightVectorBar' => '⥓', 'ring' => '˚', 'risingdotseq' => '≓', 'rlarr' => '⇄', 'rlhar' => '⇌', 'rlm' => '‏', 'rmoust' => '⎱', 'rmoustache' => '⎱', 'rnmid' => '⫮', 'roang' => '⟭', 'roarr' => '⇾', 'robrk' => '⟧', 'ropar' => '⦆', 'Ropf' => 'ℝ', 'ropf' => '𝕣', 'roplus' => '⨮', 'rotimes' => '⨵', 'RoundImplies' => '⥰', 'rpar' => ')', 'rpargt' => '⦔', 'rppolint' => '⨒', 'rrarr' => '⇉', 'Rrightarrow' => '⇛', 'rsaquo' => '›', 'Rscr' => 'ℛ', 'rscr' => '𝓇', 'Rsh' => '↱', 'rsh' => '↱', 'rsqb' => ']', 'rsquo' => '’', 'rsquor' => '’', 'rthree' => '⋌', 'rtimes' => '⋊', 'rtri' => '▹', 'rtrie' => '⊵', 'rtrif' => '▸', 'rtriltri' => '⧎', 'RuleDelayed' => '⧴', 'ruluhar' => '⥨', 'rx' => '℞', 'Sacute' => 'Ś', 'sacute' => 'ś', 'sbquo' => '‚', 'Sc' => '⪼', 'sc' => '≻', 'scap' => '⪸', 'Scaron' => 'Š', 'scaron' => 'š', 'sccue' => '≽', 'scE' => '⪴', 'sce' => '⪰', 'Scedil' => 'Ş', 'scedil' => 'ş', 'Scirc' => 'Ŝ', 'scirc' => 'ŝ', 'scnap' => '⪺', 'scnE' => '⪶', 'scnsim' => '⋩', 'scpolint' => '⨓', 'scsim' => '≿', 'Scy' => 'С', 'scy' => 'с', 'sdot' => '⋅', 'sdotb' => '⊡', 'sdote' => '⩦', 'searhk' => '⤥', 'seArr' => '⇘', 'searr' => '↘', 'searrow' => '↘', 'sect' => '§', 'sec' => '§', 'semi' => ';', 'seswar' => '⤩', 'setminus' => '∖', 'setmn' => '∖', 'sext' => '✶', 'Sfr' => '𝔖', 'sfr' => '𝔰', 'sfrown' => '⌢', 'sharp' => '♯', 'SHCHcy' => 'Щ', 'shchcy' => 'щ', 'SHcy' => 'Ш', 'shcy' => 'ш', 'ShortDownArrow' => '↓', 'ShortLeftArrow' => '←', 'shortmid' => '∣', 'shortparallel' => '∥', 'ShortRightArrow' => '→', 'ShortUpArrow' => '↑', 'shy' => '­', 'sh' => '­', 'Sigma' => 'Σ', 'sigma' => 'σ', 'sigmaf' => 'ς', 'sigmav' => 'ς', 'sim' => '∼', 'simdot' => '⩪', 'sime' => '≃', 'simeq' => '≃', 'simg' => '⪞', 'simgE' => '⪠', 'siml' => '⪝', 'simlE' => '⪟', 'simne' => '≆', 'simplus' => '⨤', 'simrarr' => '⥲', 'slarr' => '←', 'SmallCircle' => '∘', 'smallsetminus' => '∖', 'smashp' => '⨳', 'smeparsl' => '⧤', 'smid' => '∣', 'smile' => '⌣', 'smt' => '⪪', 'smte' => '⪬', 'smtes' => '⪬︀', 'SOFTcy' => 'Ь', 'softcy' => 'ь', 'sol' => '/', 'solb' => '⧄', 'solbar' => '⌿', 'Sopf' => '𝕊', 'sopf' => '𝕤', 'spades' => '♠', 'spadesuit' => '♠', 'spar' => '∥', 'sqcap' => '⊓', 'sqcaps' => '⊓︀', 'sqcup' => '⊔', 'sqcups' => '⊔︀', 'Sqrt' => '√', 'sqsub' => '⊏', 'sqsube' => '⊑', 'sqsubset' => '⊏', 'sqsubseteq' => '⊑', 'sqsup' => '⊐', 'sqsupe' => '⊒', 'sqsupset' => '⊐', 'sqsupseteq' => '⊒', 'squ' => '□', 'Square' => '□', 'square' => '□', 'SquareIntersection' => '⊓', 'SquareSubset' => '⊏', 'SquareSubsetEqual' => '⊑', 'SquareSuperset' => '⊐', 'SquareSupersetEqual' => '⊒', 'SquareUnion' => '⊔', 'squarf' => '▪', 'squf' => '▪', 'srarr' => '→', 'Sscr' => '𝒮', 'sscr' => '𝓈', 'ssetmn' => '∖', 'ssmile' => '⌣', 'sstarf' => '⋆', 'Star' => '⋆', 'star' => '☆', 'starf' => '★', 'straightepsilon' => 'ϵ', 'straightphi' => 'ϕ', 'strns' => '¯', 'Sub' => '⋐', 'sub' => '⊂', 'subdot' => '⪽', 'subE' => '⫅', 'sube' => '⊆', 'subedot' => '⫃', 'submult' => '⫁', 'subnE' => '⫋', 'subne' => '⊊', 'subplus' => '⪿', 'subrarr' => '⥹', 'Subset' => '⋐', 'subset' => '⊂', 'subseteq' => '⊆', 'subseteqq' => '⫅', 'SubsetEqual' => '⊆', 'subsetneq' => '⊊', 'subsetneqq' => '⫋', 'subsim' => '⫇', 'subsub' => '⫕', 'subsup' => '⫓', 'succ' => '≻', 'succapprox' => '⪸', 'succcurlyeq' => '≽', 'Succeeds' => '≻', 'SucceedsEqual' => '⪰', 'SucceedsSlantEqual' => '≽', 'SucceedsTilde' => '≿', 'succeq' => '⪰', 'succnapprox' => '⪺', 'succneqq' => '⪶', 'succnsim' => '⋩', 'succsim' => '≿', 'SuchThat' => '∋', 'Sum' => '∑', 'sum' => '∑', 'sung' => '♪', 'Sup' => '⋑', 'sup' => '³', 'sup1' => '¹', 'sup2' => '²', 'sup3' => '³', 'supdot' => '⪾', 'supdsub' => '⫘', 'supE' => '⫆', 'supe' => '⊇', 'supedot' => '⫄', 'Superset' => '⊃', 'SupersetEqual' => '⊇', 'suphsol' => '⟉', 'suphsub' => '⫗', 'suplarr' => '⥻', 'supmult' => '⫂', 'supnE' => '⫌', 'supne' => '⊋', 'supplus' => '⫀', 'Supset' => '⋑', 'supset' => '⊃', 'supseteq' => '⊇', 'supseteqq' => '⫆', 'supsetneq' => '⊋', 'supsetneqq' => '⫌', 'supsim' => '⫈', 'supsub' => '⫔', 'supsup' => '⫖', 'swarhk' => '⤦', 'swArr' => '⇙', 'swarr' => '↙', 'swarrow' => '↙', 'swnwar' => '⤪', 'szlig' => 'ß', 'szli' => 'ß', 'Tab' => ' ', 'target' => '⌖', 'Tau' => 'Τ', 'tau' => 'τ', 'tbrk' => '⎴', 'Tcaron' => 'Ť', 'tcaron' => 'ť', 'Tcedil' => 'Ţ', 'tcedil' => 'ţ', 'Tcy' => 'Т', 'tcy' => 'т', 'tdot' => '⃛', 'telrec' => '⌕', 'Tfr' => '𝔗', 'tfr' => '𝔱', 'there4' => '∴', 'Therefore' => '∴', 'therefore' => '∴', 'Theta' => 'Θ', 'theta' => 'θ', 'thetasym' => 'ϑ', 'thetav' => 'ϑ', 'thickapprox' => '≈', 'thicksim' => '∼', 'ThickSpace' => '  ', 'thinsp' => ' ', 'ThinSpace' => ' ', 'thkap' => '≈', 'thksim' => '∼', 'THORN' => 'Þ', 'THOR' => 'Þ', 'thorn' => 'þ', 'thor' => 'þ', 'Tilde' => '∼', 'tilde' => '˜', 'TildeEqual' => '≃', 'TildeFullEqual' => '≅', 'TildeTilde' => '≈', 'times' => '×', 'time' => '×', 'timesb' => '⊠', 'timesbar' => '⨱', 'timesd' => '⨰', 'tint' => '∭', 'toea' => '⤨', 'top' => '⊤', 'topbot' => '⌶', 'topcir' => '⫱', 'Topf' => '𝕋', 'topf' => '𝕥', 'topfork' => '⫚', 'tosa' => '⤩', 'tprime' => '‴', 'TRADE' => '™', 'trade' => '™', 'triangle' => '▵', 'triangledown' => '▿', 'triangleleft' => '◃', 'trianglelefteq' => '⊴', 'triangleq' => '≜', 'triangleright' => '▹', 'trianglerighteq' => '⊵', 'tridot' => '◬', 'trie' => '≜', 'triminus' => '⨺', 'TripleDot' => '⃛', 'triplus' => '⨹', 'trisb' => '⧍', 'tritime' => '⨻', 'trpezium' => '⏢', 'Tscr' => '𝒯', 'tscr' => '𝓉', 'TScy' => 'Ц', 'tscy' => 'ц', 'TSHcy' => 'Ћ', 'tshcy' => 'ћ', 'Tstrok' => 'Ŧ', 'tstrok' => 'ŧ', 'twixt' => '≬', 'twoheadleftarrow' => '↞', 'twoheadrightarrow' => '↠', 'Uacute' => 'Ú', 'Uacut' => 'Ú', 'uacute' => 'ú', 'uacut' => 'ú', 'Uarr' => '↟', 'uArr' => '⇑', 'uarr' => '↑', 'Uarrocir' => '⥉', 'Ubrcy' => 'Ў', 'ubrcy' => 'ў', 'Ubreve' => 'Ŭ', 'ubreve' => 'ŭ', 'Ucirc' => 'Û', 'Ucir' => 'Û', 'ucirc' => 'û', 'ucir' => 'û', 'Ucy' => 'У', 'ucy' => 'у', 'udarr' => '⇅', 'Udblac' => 'Ű', 'udblac' => 'ű', 'udhar' => '⥮', 'ufisht' => '⥾', 'Ufr' => '𝔘', 'ufr' => '𝔲', 'Ugrave' => 'Ù', 'Ugrav' => 'Ù', 'ugrave' => 'ù', 'ugrav' => 'ù', 'uHar' => '⥣', 'uharl' => '↿', 'uharr' => '↾', 'uhblk' => '▀', 'ulcorn' => '⌜', 'ulcorner' => '⌜', 'ulcrop' => '⌏', 'ultri' => '◸', 'Umacr' => 'Ū', 'umacr' => 'ū', 'uml' => '¨', 'um' => '¨', 'UnderBar' => '_', 'UnderBrace' => '⏟', 'UnderBracket' => '⎵', 'UnderParenthesis' => '⏝', 'Union' => '⋃', 'UnionPlus' => '⊎', 'Uogon' => 'Ų', 'uogon' => 'ų', 'Uopf' => '𝕌', 'uopf' => '𝕦', 'UpArrow' => '↑', 'Uparrow' => '⇑', 'uparrow' => '↑', 'UpArrowBar' => '⤒', 'UpArrowDownArrow' => '⇅', 'UpDownArrow' => '↕', 'Updownarrow' => '⇕', 'updownarrow' => '↕', 'UpEquilibrium' => '⥮', 'upharpoonleft' => '↿', 'upharpoonright' => '↾', 'uplus' => '⊎', 'UpperLeftArrow' => '↖', 'UpperRightArrow' => '↗', 'Upsi' => 'ϒ', 'upsi' => 'υ', 'upsih' => 'ϒ', 'Upsilon' => 'Υ', 'upsilon' => 'υ', 'UpTee' => '⊥', 'UpTeeArrow' => '↥', 'upuparrows' => '⇈', 'urcorn' => '⌝', 'urcorner' => '⌝', 'urcrop' => '⌎', 'Uring' => 'Ů', 'uring' => 'ů', 'urtri' => '◹', 'Uscr' => '𝒰', 'uscr' => '𝓊', 'utdot' => '⋰', 'Utilde' => 'Ũ', 'utilde' => 'ũ', 'utri' => '▵', 'utrif' => '▴', 'uuarr' => '⇈', 'Uuml' => 'Ü', 'Uum' => 'Ü', 'uuml' => 'ü', 'uum' => 'ü', 'uwangle' => '⦧', 'vangrt' => '⦜', 'varepsilon' => 'ϵ', 'varkappa' => 'ϰ', 'varnothing' => '∅', 'varphi' => 'ϕ', 'varpi' => 'ϖ', 'varpropto' => '∝', 'vArr' => '⇕', 'varr' => '↕', 'varrho' => 'ϱ', 'varsigma' => 'ς', 'varsubsetneq' => '⊊︀', 'varsubsetneqq' => '⫋︀', 'varsupsetneq' => '⊋︀', 'varsupsetneqq' => '⫌︀', 'vartheta' => 'ϑ', 'vartriangleleft' => '⊲', 'vartriangleright' => '⊳', 'Vbar' => '⫫', 'vBar' => '⫨', 'vBarv' => '⫩', 'Vcy' => 'В', 'vcy' => 'в', 'VDash' => '⊫', 'Vdash' => '⊩', 'vDash' => '⊨', 'vdash' => '⊢', 'Vdashl' => '⫦', 'Vee' => '⋁', 'vee' => '∨', 'veebar' => '⊻', 'veeeq' => '≚', 'vellip' => '⋮', 'Verbar' => '‖', 'verbar' => '|', 'Vert' => '‖', 'vert' => '|', 'VerticalBar' => '∣', 'VerticalLine' => '|', 'VerticalSeparator' => '❘', 'VerticalTilde' => '≀', 'VeryThinSpace' => ' ', 'Vfr' => '𝔙', 'vfr' => '𝔳', 'vltri' => '⊲', 'vnsub' => '⊂⃒', 'vnsup' => '⊃⃒', 'Vopf' => '𝕍', 'vopf' => '𝕧', 'vprop' => '∝', 'vrtri' => '⊳', 'Vscr' => '𝒱', 'vscr' => '𝓋', 'vsubnE' => '⫋︀', 'vsubne' => '⊊︀', 'vsupnE' => '⫌︀', 'vsupne' => '⊋︀', 'Vvdash' => '⊪', 'vzigzag' => '⦚', 'Wcirc' => 'Ŵ', 'wcirc' => 'ŵ', 'wedbar' => '⩟', 'Wedge' => '⋀', 'wedge' => '∧', 'wedgeq' => '≙', 'weierp' => '℘', 'Wfr' => '𝔚', 'wfr' => '𝔴', 'Wopf' => '𝕎', 'wopf' => '𝕨', 'wp' => '℘', 'wr' => '≀', 'wreath' => '≀', 'Wscr' => '𝒲', 'wscr' => '𝓌', 'xcap' => '⋂', 'xcirc' => '◯', 'xcup' => '⋃', 'xdtri' => '▽', 'Xfr' => '𝔛', 'xfr' => '𝔵', 'xhArr' => '⟺', 'xharr' => '⟷', 'Xi' => 'Ξ', 'xi' => 'ξ', 'xlArr' => '⟸', 'xlarr' => '⟵', 'xmap' => '⟼', 'xnis' => '⋻', 'xodot' => '⨀', 'Xopf' => '𝕏', 'xopf' => '𝕩', 'xoplus' => '⨁', 'xotime' => '⨂', 'xrArr' => '⟹', 'xrarr' => '⟶', 'Xscr' => '𝒳', 'xscr' => '𝓍', 'xsqcup' => '⨆', 'xuplus' => '⨄', 'xutri' => '△', 'xvee' => '⋁', 'xwedge' => '⋀', 'Yacute' => 'Ý', 'Yacut' => 'Ý', 'yacute' => 'ý', 'yacut' => 'ý', 'YAcy' => 'Я', 'yacy' => 'я', 'Ycirc' => 'Ŷ', 'ycirc' => 'ŷ', 'Ycy' => 'Ы', 'ycy' => 'ы', 'yen' => '¥', 'ye' => '¥', 'Yfr' => '𝔜', 'yfr' => '𝔶', 'YIcy' => 'Ї', 'yicy' => 'ї', 'Yopf' => '𝕐', 'yopf' => '𝕪', 'Yscr' => '𝒴', 'yscr' => '𝓎', 'YUcy' => 'Ю', 'yucy' => 'ю', 'Yuml' => 'Ÿ', 'yuml' => 'ÿ', 'yum' => 'ÿ', 'Zacute' => 'Ź', 'zacute' => 'ź', 'Zcaron' => 'Ž', 'zcaron' => 'ž', 'Zcy' => 'З', 'zcy' => 'з', 'Zdot' => 'Ż', 'zdot' => 'ż', 'zeetrf' => 'ℨ', 'ZeroWidthSpace' => '​', 'Zeta' => 'Ζ', 'zeta' => 'ζ', 'Zfr' => 'ℨ', 'zfr' => '𝔷', 'ZHcy' => 'Ж', 'zhcy' => 'ж', 'zigrarr' => '⇝', 'Zopf' => 'ℤ', 'zopf' => '𝕫', 'Zscr' => '𝒵', 'zscr' => '𝓏', 'zwj' => '‍', 'zwnj' => '‌', ]; /** * @param string $entity * * @return string * * @deprecated Use Html5EntityDecoder::decode() instead */ public static function decodeEntity(string $entity): string { return Html5EntityDecoder::decode($entity); } /** * @param mixed $number * * @return string * * @deprecated This method will be removed in v2.0.0 */ public static function fromDecimal($number): string { // Only convert code points within planes 0-2, excluding NULL if (empty($number) || $number > 0x2FFFF) { return self::fromHex('fffd'); } $entity = '&#' . $number . ';'; $converted = \mb_decode_numericentity($entity, [0x0, 0x2FFFF, 0, 0xFFFF], 'UTF-8'); if ($converted === $entity) { return self::fromHex('fffd'); } return $converted; } /** * @param string $hexChars * * @return string * * @deprecated This method will be removed in v2.0.0 */ public static function fromHex(string $hexChars): string { return self::fromDecimal(\hexdec($hexChars)); } } PK!v{P$$RegexHelper.phpnuIw * * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; use League\CommonMark\Block\Element\HtmlBlock; /** * Provides regular expressions and utilities for parsing Markdown */ final class RegexHelper { // Partial regular expressions (wrap with `/` on each side before use) public const PARTIAL_ENTITY = '&(?:#x[a-f0-9]{1,6}|#[0-9]{1,7}|[a-z][a-z0-9]{1,31});'; public const PARTIAL_ESCAPABLE = '[!"#$%&\'()*+,.\/:;<=>?@[\\\\\]^_`{|}~-]'; public const PARTIAL_ESCAPED_CHAR = '\\\\' . self::PARTIAL_ESCAPABLE; public const PARTIAL_IN_DOUBLE_QUOTES = '"(' . self::PARTIAL_ESCAPED_CHAR . '|[^"\x00])*"'; public const PARTIAL_IN_SINGLE_QUOTES = '\'(' . self::PARTIAL_ESCAPED_CHAR . '|[^\'\x00])*\''; public const PARTIAL_IN_PARENS = '\\((' . self::PARTIAL_ESCAPED_CHAR . '|[^)\x00])*\\)'; public const PARTIAL_REG_CHAR = '[^\\\\()\x00-\x20]'; public const PARTIAL_IN_PARENS_NOSP = '\((' . self::PARTIAL_REG_CHAR . '|' . self::PARTIAL_ESCAPED_CHAR . '|\\\\)*\)'; public const PARTIAL_TAGNAME = '[A-Za-z][A-Za-z0-9-]*'; public const PARTIAL_BLOCKTAGNAME = '(?:address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h1|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul)'; public const PARTIAL_ATTRIBUTENAME = '[a-zA-Z_:][a-zA-Z0-9:._-]*'; public const PARTIAL_UNQUOTEDVALUE = '[^"\'=<>`\x00-\x20]+'; public const PARTIAL_SINGLEQUOTEDVALUE = '\'[^\']*\''; public const PARTIAL_DOUBLEQUOTEDVALUE = '"[^"]*"'; public const PARTIAL_ATTRIBUTEVALUE = '(?:' . self::PARTIAL_UNQUOTEDVALUE . '|' . self::PARTIAL_SINGLEQUOTEDVALUE . '|' . self::PARTIAL_DOUBLEQUOTEDVALUE . ')'; public const PARTIAL_ATTRIBUTEVALUESPEC = '(?:' . '\s*=' . '\s*' . self::PARTIAL_ATTRIBUTEVALUE . ')'; public const PARTIAL_ATTRIBUTE = '(?:' . '\s+' . self::PARTIAL_ATTRIBUTENAME . self::PARTIAL_ATTRIBUTEVALUESPEC . '?)'; public const PARTIAL_OPENTAG = '<' . self::PARTIAL_TAGNAME . self::PARTIAL_ATTRIBUTE . '*' . '\s*\/?>'; public const PARTIAL_CLOSETAG = '<\/' . self::PARTIAL_TAGNAME . '\s*[>]'; public const PARTIAL_OPENBLOCKTAG = '<' . self::PARTIAL_BLOCKTAGNAME . self::PARTIAL_ATTRIBUTE . '*' . '\s*\/?>'; public const PARTIAL_CLOSEBLOCKTAG = '<\/' . self::PARTIAL_BLOCKTAGNAME . '\s*[>]'; public const PARTIAL_HTMLCOMMENT = '|'; public const PARTIAL_PROCESSINGINSTRUCTION = '[<][?].*?[?][>]'; public const PARTIAL_DECLARATION = ']*>'; public const PARTIAL_CDATA = ''; public const PARTIAL_HTMLTAG = '(?:' . self::PARTIAL_OPENTAG . '|' . self::PARTIAL_CLOSETAG . '|' . self::PARTIAL_HTMLCOMMENT . '|' . self::PARTIAL_PROCESSINGINSTRUCTION . '|' . self::PARTIAL_DECLARATION . '|' . self::PARTIAL_CDATA . ')'; public const PARTIAL_HTMLBLOCKOPEN = '<(?:' . self::PARTIAL_BLOCKTAGNAME . '(?:[\s\/>]|$)' . '|' . '\/' . self::PARTIAL_BLOCKTAGNAME . '(?:[\s>]|$)' . '|' . '[?!])'; public const PARTIAL_LINK_TITLE = '^(?:"(' . self::PARTIAL_ESCAPED_CHAR . '|[^"\x00])*"' . '|' . '\'(' . self::PARTIAL_ESCAPED_CHAR . '|[^\'\x00])*\'' . '|' . '\((' . self::PARTIAL_ESCAPED_CHAR . '|[^()\x00])*\))'; public const REGEX_PUNCTUATION = '/^[\x{2000}-\x{206F}\x{2E00}-\x{2E7F}\p{Pc}\p{Pd}\p{Pe}\p{Pf}\p{Pi}\p{Po}\p{Ps}\\\\\'!"#\$%&\(\)\*\+,\-\.\\/:;<=>\?@\[\]\^_`\{\|\}~]/u'; public const REGEX_UNSAFE_PROTOCOL = '/^javascript:|vbscript:|file:|data:/i'; public const REGEX_SAFE_DATA_PROTOCOL = '/^data:image\/(?:png|gif|jpeg|webp)/i'; public const REGEX_NON_SPACE = '/[^ \t\f\v\r\n]/'; public const REGEX_WHITESPACE_CHAR = '/^[ \t\n\x0b\x0c\x0d]/'; public const REGEX_WHITESPACE = '/[ \t\n\x0b\x0c\x0d]+/'; public const REGEX_UNICODE_WHITESPACE_CHAR = '/^\pZ|\s/u'; public const REGEX_THEMATIC_BREAK = '/^(?:(?:\*[ \t]*){3,}|(?:_[ \t]*){3,}|(?:-[ \t]*){3,})[ \t]*$/'; public const REGEX_LINK_DESTINATION_BRACES = '/^(?:<(?:[^<>\\n\\\\\\x00]|\\\\.)*>)/'; /** * @param string $character * * @return bool */ public static function isEscapable(string $character): bool { return \preg_match('/' . self::PARTIAL_ESCAPABLE . '/', $character) === 1; } /** * Attempt to match a regex in string s at offset offset * * @param string $regex * @param string $string * @param int $offset * * @return int|null Index of match, or null */ public static function matchAt(string $regex, string $string, int $offset = 0): ?int { $matches = []; $string = \mb_substr($string, $offset, null, 'utf-8'); if (!\preg_match($regex, $string, $matches, \PREG_OFFSET_CAPTURE)) { return null; } // PREG_OFFSET_CAPTURE always returns the byte offset, not the char offset, which is annoying $charPos = \mb_strlen(\mb_strcut($string, 0, $matches[0][1], 'utf-8'), 'utf-8'); return $offset + $charPos; } /** * Functional wrapper around preg_match_all * * @param string $pattern * @param string $subject * @param int $offset * * @return array|null */ public static function matchAll(string $pattern, string $subject, int $offset = 0): ?array { if ($offset !== 0) { $subject = \substr($subject, $offset); } \preg_match_all($pattern, $subject, $matches, \PREG_PATTERN_ORDER); $fullMatches = \reset($matches); if (empty($fullMatches)) { return null; } if (\count($fullMatches) === 1) { foreach ($matches as &$match) { $match = \reset($match); } } return $matches ?: null; } /** * Replace backslash escapes with literal characters * * @param string $string * * @return string */ public static function unescape(string $string): string { $allEscapedChar = '/\\\\(' . self::PARTIAL_ESCAPABLE . ')/'; /** @var string $escaped */ $escaped = \preg_replace($allEscapedChar, '$1', $string); /** @var string $replaced */ $replaced = \preg_replace_callback('/' . self::PARTIAL_ENTITY . '/i', function ($e) { return Html5EntityDecoder::decode($e[0]); }, $escaped); return $replaced; } /** * @param int $type HTML block type * * @return string * * @internal */ public static function getHtmlBlockOpenRegex(int $type): string { switch ($type) { case HtmlBlock::TYPE_1_CODE_CONTAINER: return '/^<(?:script|pre|style)(?:\s|>|$)/i'; case HtmlBlock::TYPE_2_COMMENT: return '/^/'; case HtmlBlock::TYPE_3: return '/\?>/'; case HtmlBlock::TYPE_4: return '/>/'; case HtmlBlock::TYPE_5_CDATA: return '/\]\]>/'; } throw new \InvalidArgumentException('Invalid HTML block type'); } /** * @param string $url * * @return bool */ public static function isLinkPotentiallyUnsafe(string $url): bool { return \preg_match(self::REGEX_UNSAFE_PROTOCOL, $url) !== 0 && \preg_match(self::REGEX_SAFE_DATA_PROTOCOL, $url) === 0; } } PK!aNPrioritizedList.phpnuIw * * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Util; /** * @internal */ final class PrioritizedList implements \IteratorAggregate { private $list = []; private $optimized; /** * @param mixed $item * @param int $priority */ public function add($item, int $priority) { $this->list[$priority][] = $item; $this->optimized = null; } /** * @return \Traversable */ public function getIterator(): iterable { if ($this->optimized === null) { \krsort($this->list); $sorted = []; foreach ($this->list as $group) { foreach ($group as $item) { $sorted[] = $item; } } $this->optimized = new \ArrayIterator($sorted); } return $this->optimized; } } PK!;S^t^t FieldHash.pmnu[PK!?OOtFieldHash/FieldHash.sonuȯPK!C-Util.sonuȯPK!t /XS.pmnu[PK!+~ ~ ^Configuration.phpnuIwPK!̧hArrayCollection.phpnuIwPK!EvConfigurationAwareInterface.phpnuIwPK!^m LinkParserHelper.phpnuIwPK!  UrlEncoder.phpnuIwPK!+KSHtml5EntityDecoder.phpnuIwPK!L˲Xml.phpnuIwPK!hConfigurationInterface.phpnuIwPK!yͨͨHtml5Entities.phpnuIwPK!v{P$$هRegexHelper.phpnuIwPK!aNPrioritizedList.phpnuIwPK