��,�U�Pa?ࢀ,�U@`a@`d�,�Up0����b`d�,�U� ����g`d�,�U�����l`d�,�U�����m`�,�U`��������m*���,�U������n@��,�U���������m"�C�,�U�``m"`S�,�U`��������m,� �,�UP`pqM�?�,�Up��@qN@�,�U������q �,�U��r�Q�,�U������r+�,�,�UP�
�sQ@�,�U������s`�,�U`��������r*��,�U�������t{�Q�,�U� ����t+Y�,�U@
wp@˄,�U�PwBpA�,�U���������w<��Q�,�U������w+Y�,�U�xp@˄,�U�PxB@˄,�UP`xBpA�,�U���������x<� �,�U������x�,�,�U�`zQ��,�U���� z�@�,�U� ����zP�,�U�����@{�Q�,�U@�����{+�#�,�Up�P|T �,�UP0R�����|��S,�U���������|�`�,�U��������{* �,�U�pp}�Q�,�Up�����}+�,�,�U�P�~Q@��,�U�@�~Q�#�,�Up�~T`�,�U�����~��S,�U���������~�`�,�U��������}*�,�,�U��
��Qp��,�U�
����@��,�U�
���l�,�U�
��#�,�Up0
��T`�,�U��������S,�U�����������,�Up0
�=�,�,�Up
0�QА�,�U0P�A�,�,�U�� @�QА�,�U@`�A�6�,�U��������P���\�,�Up` �������S,�UP����������`�,�U���������w*Y�,�U�R�@ (�p@˄,�U�P�B ր,�U` `�P��,�U``�tpA�,�U��������p�<� �,�U�p������,�,�U����Q�#�,�Up���T`�,�U��Y��������S,�U������������,�,�U�`��Q�#�,�Up0��T`�,�U��������S,�U�����������`�,�U������������q*@\�,�Up��������qН�,�U`�8�=�,�,�Up��QА�,�UP�A�6�,�U�����������\�,�Up0�������S,�U����������Н�,�U`0@�=�,�,�Up 0�QА�,�U0P�A�6�,�U��������@���\�,�Up��������S,�U@����������@ۄ,�U�����P���Q�,�UP@�����+`d�,�U�P������w�,�Up@p�s�O�,�Up�������Q�,�U������+Н�,�U`H�=�,�,�Up���QА�,�U�P�A�6�,�U�����������p��,�U�����Y�,�U�P�������S,�U������������w�,�UpP��s�O�,�U��������Q�,�U�������+���,�U�����,�U�����,�U� ��l�,�U �0��l�,�U0�@����,�U@�P��,�,�Up�`�Qp��,�UP`p��p��,�Up���l�,�U�@�����,�U�����l�,�U���Y�,�U���������S,�U������������ك,�U����������>`��,�U��������������>8׃� փ�X��@�H�@�C�@�C�@D�@D�@ype name including namespace.
* @return bool True if the block type is registered, false otherwise.
*/
public function is_registered( $name ) {
return isset( $this->registered_block_types[ $name ] );
}
public function __wakeup() {
if ( ! $this->registered_block_types ) {
return;
}
if ( ! is_array( $this->registered_block_types ) ) {
throw new UnexpectedValueException();
}
foreach ( $this->registered_block_types as $value ) {
if ( ! $value instanceof WP_Block_Type ) {
throw new UnexpectedValueException();
}
}
}
/**
* Utility method to retrieve the main instance of the class.
*
* The instance will be created if it does not exist yet.
*
* @since 5.0.0
*
* @return WP_Block_Type_Registry The main instance.
*/
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
}