File manager - Edit - /home/procutfilms/htdocs/procutfilms.com/wp-admin.zip
Back
PK ! ��/�� � tools.phpnu �[��� <?php /** * Tools Administration Screen. * * @package WordPress * @subpackage Administration */ if ( isset( $_GET['page'] ) && ! empty( $_POST ) ) { // Ensure POST-ing to `tools.php?page=export_personal_data` and `tools.php?page=remove_personal_data` // continues to work after creating the new files for exporting and erasing of personal data. if ( 'export_personal_data' === $_GET['page'] ) { require_once ABSPATH . 'wp-admin/export-personal-data.php'; return; } elseif ( 'remove_personal_data' === $_GET['page'] ) { require_once ABSPATH . 'wp-admin/erase-personal-data.php'; return; } } // The privacy policy guide used to be outputted from here. Since WP 5.3 it is in wp-admin/privacy-policy-guide.php. if ( isset( $_GET['wp-privacy-policy-guide'] ) ) { require_once dirname( __DIR__ ) . '/wp-load.php'; wp_redirect( admin_url( 'options-privacy.php?tab=policyguide' ), 301 ); exit; } elseif ( isset( $_GET['page'] ) ) { // These were also moved to files in WP 5.3. if ( 'export_personal_data' === $_GET['page'] ) { require_once dirname( __DIR__ ) . '/wp-load.php'; wp_redirect( admin_url( 'export-personal-data.php' ), 301 ); exit; } elseif ( 'remove_personal_data' === $_GET['page'] ) { require_once dirname( __DIR__ ) . '/wp-load.php'; wp_redirect( admin_url( 'erase-personal-data.php' ), 301 ); exit; } } /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; // Used in the HTML title tag. $title = __( 'Tools' ); get_current_screen()->add_help_tab( array( 'id' => 'converter', 'title' => __( 'Categories and Tags Converter' ), 'content' => '<p>' . __( 'Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.' ) . '</p>' . '<p>' . __( 'The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.' ) . '</p>', ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/tools-screen/">Documentation on Tools</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap"> <h1><?php echo esc_html( $title ); ?></h1> <?php if ( current_user_can( 'import' ) ) : $cats = get_taxonomy( 'category' ); $tags = get_taxonomy( 'post_tag' ); if ( current_user_can( $cats->cap->manage_terms ) || current_user_can( $tags->cap->manage_terms ) ) : ?> <div class="card"> <h2 class="title"><?php _e( 'Categories and Tags Converter' ); ?></h2> <p> <?php printf( /* translators: %s: URL to Import screen. */ __( 'If you want to convert your categories to tags (or vice versa), use the <a href="%s">Categories and Tags Converter</a> available from the Import screen.' ), 'import.php' ); ?> </p> </div> <?php endif; endif; /** * Fires at the end of the Tools Administration screen. * * @since 2.8.0 */ do_action( 'tool_box' ); ?> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; PK ! A1NI� � admin-post.phpnu �[��� <?php /** * WordPress Generic Request (POST/GET) Handler * * Intended for form submission handling in themes and plugins. * * @package WordPress * @subpackage Administration */ /** We are located in WordPress Administration Screens */ if ( ! defined( 'WP_ADMIN' ) ) { define( 'WP_ADMIN', true ); } /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; /** Allow for cross-domain requests (from the front end). */ send_origin_headers(); require_once ABSPATH . 'wp-admin/includes/admin.php'; nocache_headers(); /** This action is documented in wp-admin/admin.php */ do_action( 'admin_init' ); $action = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : ''; // Reject invalid parameters. if ( ! is_scalar( $action ) ) { wp_die( '', 400 ); } if ( ! is_user_logged_in() ) { if ( empty( $action ) ) { /** * Fires on a non-authenticated admin post request where no action is supplied. * * @since 2.6.0 */ do_action( 'admin_post_nopriv' ); } else { // If no action is registered, return a Bad Request response. if ( ! has_action( "admin_post_nopriv_{$action}" ) ) { wp_die( '', 400 ); } /** * Fires on a non-authenticated admin post request for the given action. * * The dynamic portion of the hook name, `$action`, refers to the given * request action. * * @since 2.6.0 */ do_action( "admin_post_nopriv_{$action}" ); } } else { if ( empty( $action ) ) { /** * Fires on an authenticated admin post request where no action is supplied. * * @since 2.6.0 */ do_action( 'admin_post' ); } else { // If no action is registered, return a Bad Request response. if ( ! has_action( "admin_post_{$action}" ) ) { wp_die( '', 400 ); } /** * Fires on an authenticated admin post request for the given action. * * The dynamic portion of the hook name, `$action`, refers to the given * request action. * * @since 2.6.0 */ do_action( "admin_post_{$action}" ); } } PK ! ���� � ms-upgrade-network.phpnu �[��� <?php /** * Multisite upgrade administration panel. * * @package WordPress * @subpackage Multisite * @since 3.0.0 */ require_once __DIR__ . '/admin.php'; wp_redirect( network_admin_url( 'upgrade.php' ) ); exit; PK ! �U�� � plugin-install.phpnu �[��� <?php /** * Install plugin administration panel. * * @package WordPress * @subpackage Administration */ // TODO: Route this page via a specific iframe handler instead of the do_action below. if ( ! defined( 'IFRAME_REQUEST' ) && isset( $_GET['tab'] ) && ( 'plugin-information' === $_GET['tab'] ) ) { define( 'IFRAME_REQUEST', true ); } /** * WordPress Administration Bootstrap. */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'install_plugins' ) ) { wp_die( __( 'Sorry, you are not allowed to install plugins on this site.' ) ); } if ( is_multisite() && ! is_network_admin() ) { wp_redirect( network_admin_url( 'plugin-install.php' ) ); exit; } $wp_list_table = _get_list_table( 'WP_Plugin_Install_List_Table' ); $pagenum = $wp_list_table->get_pagenum(); if ( ! empty( $_REQUEST['_wp_http_referer'] ) ) { $location = remove_query_arg( '_wp_http_referer', wp_unslash( $_SERVER['REQUEST_URI'] ) ); if ( ! empty( $_REQUEST['paged'] ) ) { $location = add_query_arg( 'paged', (int) $_REQUEST['paged'], $location ); } wp_redirect( $location ); exit; } $wp_list_table->prepare_items(); $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); if ( $pagenum > $total_pages && $total_pages > 0 ) { wp_redirect( add_query_arg( 'paged', $total_pages ) ); exit; } // Used in the HTML title tag. $title = __( 'Add Plugins' ); $parent_file = 'plugins.php'; wp_enqueue_script( 'plugin-install' ); if ( 'plugin-information' !== $tab ) { add_thickbox(); } $body_id = $tab; wp_enqueue_script( 'updates' ); /** * Fires before each tab on the Install Plugins screen is loaded. * * The dynamic portion of the hook name, `$tab`, allows for targeting * individual tabs. * * Possible hook names include: * * - `install_plugins_pre_beta` * - `install_plugins_pre_favorites` * - `install_plugins_pre_featured` * - `install_plugins_pre_plugin-information` * - `install_plugins_pre_popular` * - `install_plugins_pre_recommended` * - `install_plugins_pre_search` * - `install_plugins_pre_upload` * * @since 2.7.0 */ do_action( "install_plugins_pre_{$tab}" ); /* * Call the pre upload action on every non-upload plugin installation screen * because the form is always displayed on these screens. */ if ( 'upload' !== $tab ) { /** This action is documented in wp-admin/plugin-install.php */ do_action( 'install_plugins_pre_upload' ); } get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '<p>' . sprintf( /* translators: %s: https://wordpress.org/plugins/ */ __( 'Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official <a href="%s">WordPress Plugin Directory</a> are compatible with the license WordPress uses.' ), __( 'https://wordpress.org/plugins/' ) ) . '</p>' . '<p>' . __( 'You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.' ) . ' <span id="live-search-desc" class="hide-if-no-js">' . __( 'The search results will be updated as you type.' ) . '</span></p>', ) ); get_current_screen()->add_help_tab( array( 'id' => 'adding-plugins', 'title' => __( 'Adding Plugins' ), 'content' => '<p>' . __( 'If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.' ) . '</p>' . '<p>' . __( 'If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.' ) . '</p>' . '<p>' . __( 'You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.' ) . '</p>' . '<p>' . __( 'If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.' ) . '</p>', ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . '<p>' . __( '<a href="https://wordpress.org/documentation/article/plugins-add-new-screen/">Documentation on Installing Plugins</a>' ) . '</p>' . '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>' ); get_current_screen()->set_screen_reader_content( array( 'heading_views' => __( 'Filter plugins list' ), 'heading_pagination' => __( 'Plugins list navigation' ), 'heading_list' => __( 'Plugins list' ), ) ); /** * WordPress Administration Template Header. */ require_once ABSPATH . 'wp-admin/admin-header.php'; WP_Plugin_Dependencies::initialize(); WP_Plugin_Dependencies::display_admin_notice_for_unmet_dependencies(); WP_Plugin_Dependencies::display_admin_notice_for_circular_dependencies(); ?> <div class="wrap <?php echo esc_attr( "plugin-install-tab-$tab" ); ?>"> <h1 class="wp-heading-inline"> <?php echo esc_html( $title ); ?> </h1> <?php if ( ! empty( $tabs['upload'] ) && current_user_can( 'upload_plugins' ) ) { printf( ' <a href="%s" class="upload-view-toggle page-title-action"><span class="upload">%s</span><span class="browse">%s</span></a>', ( 'upload' === $tab ) ? self_admin_url( 'plugin-install.php' ) : self_admin_url( 'plugin-install.php?tab=upload' ), __( 'Upload Plugin' ), __( 'Browse Plugins' ) ); } ?> <hr class="wp-header-end"> <?php /* * Output the upload plugin form on every non-upload plugin installation screen, so it can be * displayed via JavaScript rather then opening up the devoted upload plugin page. */ if ( 'upload' !== $tab ) { ?> <div class="upload-plugin-wrap"> <?php /** This action is documented in wp-admin/plugin-install.php */ do_action( 'install_plugins_upload' ); ?> </div> <?php $wp_list_table->views(); } /** * Fires after the plugins list table in each tab of the Install Plugins screen. * * The dynamic portion of the hook name, `$tab`, allows for targeting * individual tabs. * * Possible hook names include: * * - `install_plugins_beta` * - `install_plugins_favorites` * - `install_plugins_featured` * - `install_plugins_plugin-information` * - `install_plugins_popular` * - `install_plugins_recommended` * - `install_plugins_search` * - `install_plugins_upload` * * @since 2.7.0 * * @param int $paged The current page number of the plugins list table. */ do_action( "install_plugins_{$tab}", $paged ); ?> <span class="spinner"></span> </div> <?php wp_print_request_filesystem_credentials_modal(); wp_print_admin_notice_templates(); /** * WordPress Administration Template Footer. */ require_once ABSPATH . 'wp-admin/admin-footer.php'; PK ! |6h� � images/date-button-2x.gifnu �[��� GIF89a! �a vvv���mmm���ZZZ����������sss������qqq�����������nnn����������������[[[���eeejjj�����搐��������������```������������䶶����XXXaaa���UUU������������kkkDDD��������������ppp���ccc___fffrrr��㱱����hhhYYY��������������^^^iii���lllddd������]]]ooo��������QQQRRR��������٭�����\\\��� !� a , ! @��a������a���,060,���������MI!"�����"!!IM�?IK&!���+I��II?� � % W %������͈I������I�PI�#I��I���IP�I H���$ ڀ��� :��0L�*�Nd�E��2n�1R���( ɲ%K%T�HҠ�I�a��͜]x�l��" I*T�� g����'` T�I� r�D� =��J�bK�T$q@H���$��CΜxsB���$S�L���ÆV�@ t�;�\���$2�hPx9�� ����-8�^퀴iԪE�$�H$b̈a$SHܺy�>+�R��E �ʙgp� �n9\jo����'I�G��@^�˟�� � I(�x bժ &�_ �P�E�A���}���� �2�/$Q"�}�O4p(`Z j�">$a����tЁ=i�I��U^�@�� � ; 0�A �!L$��0V�b�L �E7ܰ� �Î&�@���!�R$�"�e�xPٞ| ;PK ! ) 7I� � images/wordpress-logo.svgnu �[��� <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="64px" height="64px" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve"><style>.style0{fill: #0073aa;}</style><g><g><path d="M4.548 31.999c0 10.9 6.3 20.3 15.5 24.706L6.925 20.827C5.402 24.2 4.5 28 4.5 31.999z M50.531 30.614c0-3.394-1.219-5.742-2.264-7.57c-1.391-2.263-2.695-4.177-2.695-6.439c0-2.523 1.912-4.872 4.609-4.872 c0.121 0 0.2 0 0.4 0.022C45.653 7.3 39.1 4.5 32 4.548c-9.591 0-18.027 4.921-22.936 12.4 c0.645 0 1.3 0 1.8 0.033c2.871 0 7.316-0.349 7.316-0.349c1.479-0.086 1.7 2.1 0.2 2.3 c0 0-1.487 0.174-3.142 0.261l9.997 29.735l6.008-18.017l-4.276-11.718c-1.479-0.087-2.879-0.261-2.879-0.261 c-1.48-0.087-1.306-2.349 0.174-2.262c0 0 4.5 0.3 7.2 0.349c2.87 0 7.317-0.349 7.317-0.349 c1.479-0.086 1.7 2.1 0.2 2.262c0 0-1.489 0.174-3.142 0.261l9.92 29.508l2.739-9.148 C49.628 35.7 50.5 33 50.5 30.614z M32.481 34.4l-8.237 23.934c2.46 0.7 5.1 1.1 7.8 1.1 c3.197 0 6.262-0.552 9.116-1.556c-0.072-0.118-0.141-0.243-0.196-0.379L32.481 34.4z M56.088 18.8 c0.119 0.9 0.2 1.8 0.2 2.823c0 2.785-0.521 5.916-2.088 9.832l-8.385 24.242c8.161-4.758 13.65-13.6 13.65-23.728 C59.451 27.2 58.2 22.7 56.1 18.83z M32 0c-17.645 0-32 14.355-32 32C0 49.6 14.4 64 32 64s32-14.355 32-32.001 C64 14.4 49.6 0 32 0z M32 62.533c-16.835 0-30.533-13.698-30.533-30.534C1.467 15.2 15.2 1.5 32 1.5 s30.534 13.7 30.5 30.532C62.533 48.8 48.8 62.5 32 62.533z" class="style0"/></g></g></svg>PK ! ;}DD�$ �$ images/contribute-code.svgnu �[��� <svg width="291" height="290" viewBox="0 0 291 290" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#a)"> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M145.5 288.965c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.617 0-57.247 25.63-57.247 57.247 0 31.616 25.63 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M129.031 287.393c31.617 0 57.247-25.63 57.247-57.247 0-31.616-25.63-57.246-57.247-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.617 25.63 57.247 57.246 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M113.158 282.732c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M98.456 275.154c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.617 0-57.247 25.63-57.247 57.246 0 31.616 25.63 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M85.453 264.928c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.616 0-57.247 25.63-57.247 57.247 0 31.616 25.63 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M74.626 252.425c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M66.35 238.099c31.616 0 57.246-25.63 57.246-57.247 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.617 25.63 57.247 57.246 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M60.944 222.464c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.616 0-57.246 25.63-57.246 57.247 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M58.584 206.087c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M59.377 189.566c31.616 0 57.246-25.63 57.246-57.247 0-31.616-25.63-57.246-57.246-57.246-31.617 0-57.247 25.63-57.247 57.246 0 31.617 25.63 57.247 57.247 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M63.274 173.497c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.616 0-57.246 25.63-57.246 57.247 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M70.15 158.441c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.617 0-57.247 25.63-57.247 57.247 0 31.616 25.63 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M79.742 144.97c31.617 0 57.247-25.63 57.247-57.247 0-31.616-25.63-57.246-57.247-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.617 25.63 57.247 57.246 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M91.71 133.554c31.617 0 57.247-25.63 57.247-57.246 0-31.616-25.63-57.246-57.246-57.246-31.617 0-57.247 25.63-57.247 57.246 0 31.616 25.63 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M105.628 124.612c31.616 0 57.246-25.63 57.246-57.247 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.617 25.63 57.247 57.246 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M120.985 118.467c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.617 0-57.247 25.63-57.247 57.246 0 31.616 25.63 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M137.233 115.335c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.617 0-57.247 25.63-57.247 57.246 0 31.616 25.63 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M153.768 115.335c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M170.016 118.467c31.617 0 57.247-25.63 57.247-57.246 0-31.616-25.63-57.246-57.247-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M185.373 124.612c31.616 0 57.246-25.63 57.246-57.247 0-31.616-25.63-57.246-57.246-57.246-31.617 0-57.247 25.63-57.247 57.246 0 31.617 25.63 57.247 57.247 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M199.29 133.554c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M211.258 144.97c31.617 0 57.247-25.63 57.247-57.247 0-31.616-25.63-57.246-57.247-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.617 25.63 57.247 57.246 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M220.859 158.441c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.616 0-57.246 25.63-57.246 57.247 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M227.727 173.497c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.616 0-57.247 25.63-57.247 57.247 0 31.616 25.631 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M231.624 189.566c31.616 0 57.246-25.63 57.246-57.247 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.617 25.63 57.247 57.246 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M232.417 206.087c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.617 0-57.247 25.63-57.247 57.246 0 31.616 25.63 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M230.065 222.464c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.617 0-57.247 25.63-57.247 57.247 0 31.616 25.63 57.246 57.247 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M224.651 238.099c31.616 0 57.246-25.63 57.246-57.247 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.617 25.63 57.247 57.246 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M216.382 252.425c31.617 0 57.247-25.63 57.247-57.246 0-31.616-25.63-57.246-57.247-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M205.548 264.928c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.616 0-57.246 25.63-57.246 57.247 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M192.545 275.154c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M177.843 282.732c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M161.969 287.393c31.617 0 57.247-25.63 57.247-57.247 0-31.616-25.63-57.246-57.247-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.617 25.63 57.247 57.246 57.247Z"/> <path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M145.5 288.965c31.616 0 57.246-25.63 57.246-57.246 0-31.617-25.63-57.247-57.246-57.247-31.616 0-57.246 25.63-57.246 57.247 0 31.616 25.63 57.246 57.246 57.246ZM70.149 158.447c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.617 0-57.247 25.63-57.247 57.246 0 31.616 25.63 57.246 57.247 57.246ZM220.859 158.447c31.616 0 57.246-25.63 57.246-57.246 0-31.616-25.63-57.246-57.246-57.246-31.616 0-57.246 25.63-57.246 57.246 0 31.616 25.63 57.246 57.246 57.246Z"/> <path fill="#3858E9" fill-rule="evenodd" d="M212.015 100.276 218.306 94l1.059 1.063-6.291 6.276a.249.249 0 0 0-.001.353l6.294 6.31-1.063 1.059-6.294-6.31a1.75 1.75 0 0 1 .005-2.475Zm21.642 0L227.365 94l-1.059 1.063 6.292 6.276a.25.25 0 0 1 .001.353l-6.295 6.31 1.063 1.059 6.294-6.31a1.75 1.75 0 0 0-.004-2.475ZM147.5 224.5h-11a.5.5 0 0 0-.5.5v16a.5.5 0 0 0 .5.5h11v-17Zm1.5 0h3.5a.5.5 0 0 1 .5.5v16a.5.5 0 0 1-.5.5H149v-17Zm-12.5-1.5h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-16a2 2 0 0 1-2-2v-16a2 2 0 0 1 2-2Z" clip-rule="evenodd"/> <path fill="#3858E9" d="M69.5 102.5v10H71v-10h10V101H71V91h-1.5v10h-10v1.5h10Z"/> </g> <defs> <clipPath id="a"> <path fill="#fff" d="M.5 0h290v289.802H.5z"/> </clipPath> </defs> </svg> PK ! ���C@<