diff options
278 files changed, 5484 insertions, 3468 deletions
diff --git a/config/evil.el b/config/evil.el index e335c54..4bf6871 100644 --- a/config/evil.el +++ b/config/evil.el @@ -9,13 +9,13 @@ (setq evil-undo-system 'undo-redo) ;; Use Emacs 28+ built-in undo-redo :config (evil-mode 1)) - ;; Restore Emacs-style C-n/C-p in insert mode for line movement - ;; (define-key evil-insert-state-map (kbd "C-n") 'next-line) - ;; (define-key evil-insert-state-map (kbd "C-p") 'previous-line)) +;; Restore Emacs-style C-n/C-p in insert mode for line movement +;; (define-key evil-insert-state-map (kbd "C-n") 'next-line) +;; (define-key evil-insert-state-map (kbd "C-p") 'previous-line)) (use-package evil-collection :after evil :straight (evil-collection :type git :host github :repo "emacs-evil/evil-collection" - :files (:defaults "modes")) + :files (:defaults "modes")) :config (evil-collection-init)) ;; Provides Evil bindings for many Emacs modes diff --git a/config/magit.el b/config/magit.el new file mode 100644 index 0000000..1bf91e9 --- /dev/null +++ b/config/magit.el @@ -0,0 +1,5 @@ +;; Magit - Simple Git interface for Emacs + +(use-package magit + :bind + ("C-x g" . magit-status)) diff --git a/config/modeline.el b/config/modeline.el index b6941ef..80acf48 100644 --- a/config/modeline.el +++ b/config/modeline.el @@ -6,14 +6,14 @@ :config ;; Fix missing data symlink (straight.el doesn't create it automatically) (let ((data-link (expand-file-name "straight/build/nerd-icons/data" user-emacs-directory)) - (data-source (expand-file-name "straight/repos/nerd-icons/data" user-emacs-directory))) - (unless (file-exists-p data-link) - (when (file-exists-p data-source) - (make-symbolic-link data-source data-link)))) + (data-source (expand-file-name "straight/repos/nerd-icons/data" user-emacs-directory))) + (unless (file-exists-p data-link) + (when (file-exists-p data-source) + (make-symbolic-link data-source data-link)))) ;; Prevent icons from becoming bold in active modeline (dolist (face (face-list)) - (when (string-prefix-p "nerd-icons-" (symbol-name face)) - (set-face-attribute face nil :weight 'normal)))) + (when (string-prefix-p "nerd-icons-" (symbol-name face)) + (set-face-attribute face nil :weight 'normal)))) ;; Adjust icon scale to prevent cutoff (setq nerd-icons-scale-factor 1.0) @@ -51,7 +51,7 @@ ;; (setq doom-modeline-spc-face-overrides nil) ;; (setq doom-modeline-spc-face-overrides nil) (setq doom-modeline-spc-face-overrides - (list :family (face-attribute 'fixed-pitch :family))) + (list :family (face-attribute 'fixed-pitch :family))) ;; How to detect the project root. ;; nil means to use `default-directory'. @@ -64,19 +64,19 @@ ;; Determines the style used by `doom-modeline-buffer-file-name'. ;; ;; Given ~/Projects/FOSS/emacs/lisp/comint.el -;; auto => emacs/l/comint.el (in a project) or comint.el -;; truncate-upto-project => ~/P/F/emacs/lisp/comint.el -;; truncate-from-project => ~/Projects/FOSS/emacs/l/comint.el -;; truncate-with-project => emacs/l/comint.el -;; truncate-except-project => ~/P/F/emacs/l/comint.el -;; truncate-upto-root => ~/P/F/e/lisp/comint.el -;; truncate-all => ~/P/F/e/l/comint.el -;; truncate-nil => ~/Projects/FOSS/emacs/lisp/comint.el -;; relative-from-project => emacs/lisp/comint.el -;; relative-to-project => lisp/comint.el -;; file-name => comint.el -;; file-name-with-project => FOSS|comint.el -;; buffer-name => comint.el<2> (uniquify buffer name) +;; auto => emacs/l/comint.el (in a project) or comint.el +;; truncate-upto-project => ~/P/F/emacs/lisp/comint.el +;; truncate-from-project => ~/Projects/FOSS/emacs/l/comint.el +;; truncate-with-project => emacs/l/comint.el +;; truncate-except-project => ~/P/F/emacs/l/comint.el +;; truncate-upto-root => ~/P/F/e/lisp/comint.el +;; truncate-all => ~/P/F/e/l/comint.el +;; truncate-nil => ~/Projects/FOSS/emacs/lisp/comint.el +;; relative-from-project => emacs/lisp/comint.el +;; relative-to-project => lisp/comint.el +;; file-name => comint.el +;; file-name-with-project => FOSS|comint.el +;; buffer-name => comint.el<2> (uniquify buffer name) ;; ;; If you are experiencing the laggy issue, especially while editing remote files ;; with tramp, please try `file-name' style. @@ -183,10 +183,10 @@ ;; See `vc-state' for possible values of the state. ;; For states not explicitly listed, the `doom-modeline-vcs-default' face is used. (setq doom-modeline-vcs-state-faces-alist - '((needs-update . (doom-modeline-warning bold)) - (removed . (doom-modeline-urgent bold)) - (conflict . (doom-modeline-urgent bold)) - (unregistered . (doom-modeline-urgent bold)))) + '((needs-update . (doom-modeline-warning bold)) + (removed . (doom-modeline-urgent bold)) + (conflict . (doom-modeline-urgent bold)) + (unregistered . (doom-modeline-urgent bold)))) ;; Whether display the icon of check segment. It respects option `doom-modeline-icon'. (setq doom-modeline-check-icon t) @@ -307,11 +307,11 @@ ;; Only set evil state faces to normal, not the base doom-modeline face (with-eval-after-load 'doom-modeline (dolist (face '(doom-modeline-evil-emacs-state - doom-modeline-evil-insert-state - doom-modeline-evil-motion-state - doom-modeline-evil-normal-state - doom-modeline-evil-operator-state - doom-modeline-evil-visual-state - doom-modeline-evil-replace-state - doom-modeline-evil-user-state)) - (set-face-attribute face nil :weight 'normal))) + doom-modeline-evil-insert-state + doom-modeline-evil-motion-state + doom-modeline-evil-normal-state + doom-modeline-evil-operator-state + doom-modeline-evil-visual-state + doom-modeline-evil-replace-state + doom-modeline-evil-user-state)) + (set-face-attribute face nil :weight 'normal))) diff --git a/config/treemacs.el b/config/treemacs.el index 07ecb41..e6acc95 100644 --- a/config/treemacs.el +++ b/config/treemacs.el @@ -4,32 +4,43 @@ :defer t :config (setq treemacs-width 35 - treemacs-width-is-initially-locked nil ;; Allow resizing - treemacs-width-increment 1 ;; Smooth resize - treemacs-position 'left - treemacs-show-hidden-files t - ; treemacs-indentation 1 ;; Minimal indentation - ; treemacs-indentation-string " " ;; Just space, no lines + treemacs-width-is-initially-locked nil ;; Allow resizing + treemacs-width-increment 1 ;; Smooth resize + treemacs-position 'left + treemacs-show-hidden-files t + ; treemacs-indentation 1 ;; Minimal indentation + ; treemacs-indentation-string " " ;; Just space, no lines - ;; Disable mouse Features - treemacs-move-files-by-mouse-dragging nil ;; NO DRAGGING FILES! - treemacs-recenter-after-file-follow nil ;; Prevent mouse issues - treemacs-silent-filewatch t ;; Reduce mouse events - treemacs-show-cursor nil) ;; Hide cursor in treemacs + ;; Disable mouse Features + treemacs-move-files-by-mouse-dragging nil ;; NO DRAGGING FILES! + treemacs-recenter-after-file-follow nil ;; Prevent mouse issues + treemacs-silent-filewatch t ;; Reduce mouse events + treemacs-show-cursor nil) ;; Hide cursor in treemacs ;; Disable mouse in treemacs completely :hook (treemacs-mode . (lambda () - ;; Disable all mouse button bindings - (define-key treemacs-mode-map [mouse-1] 'ignore) - (define-key treemacs-mode-map [mouse-2] 'ignore) - (define-key treemacs-mode-map [mouse-3] 'ignore) - (define-key treemacs-mode-map [drag-mouse-1] 'ignore) - (define-key treemacs-mode-map [down-mouse-1] 'ignore) - (define-key treemacs-mode-map [double-mouse-1] 'ignore) - (define-key treemacs-mode-map [triple-mouse-1] 'ignore))) + ;; Disable all mouse button bindings + (define-key treemacs-mode-map [mouse-1] 'ignore) + (define-key treemacs-mode-map [mouse-2] 'ignore) + (define-key treemacs-mode-map [mouse-3] 'ignore) + (define-key treemacs-mode-map [drag-mouse-1] 'ignore) + (define-key treemacs-mode-map [down-mouse-1] 'ignore) + (define-key treemacs-mode-map [double-mouse-1] 'ignore) + (define-key treemacs-mode-map [triple-mouse-1] 'ignore))) :bind - ("C-x t t" . treemacs)) + (:map global-map + ("M-0" . treemacs-select-window) + ("C-x t 1" . treemacs-delete-other-windows) + ("C-x t t" . treemacs) + ("C-x t d" . treemacs-select-directory) + ("C-x t B" . treemacs-bookmark) + ("C-x t C-t" . treemacs-find-file) + ("C-x t M-t" . treemacs-find-tag))) + +;; Evil keybindings for treemacs +(use-package treemacs-evil + :after (treemacs evil)) ;; Beautiful icons for treemacs using nerd-icons (use-package treemacs-nerd-icons @@ -42,5 +53,5 @@ ;; Customize folder icon colors (for nerd-icons theme) (with-eval-after-load 'treemacs-nerd-icons (set-face-attribute 'treemacs-nerd-icons-file-face nil - :foreground "#74c4c4" - :inherit 'unspecified)) + :foreground "#74c4c4" + :inherit 'unspecified)) diff --git a/early-init.el b/early-init.el index af0ae4e..bce0bc8 100644 --- a/early-init.el +++ b/early-init.el @@ -14,14 +14,14 @@ ;; Configure frame appearance BEFORE GUI initializes ;; This prevents the white flash on startup (setq default-frame-alist - '((font . "JetBrainsMono Nerd Font-10.5:weight=semi-bold:antialias=true:hinting=true:hintstyle=slight") - (background-color . "#003636") ;; Dark cyan background - (foreground-color . "#8affff") ;; Bright cyan text - (alpha-background . 75) ;; 75% opacity (GUI only) - (internal-border-width . 0) - (vertical-scroll-bars . nil) - (menu-bar-lines . 0) - (tool-bar-lines . 0))) + '((font . "JetBrainsMono Nerd Font-10.5:weight=semi-bold:antialias=true:hinting=true:hintstyle=slight") + (background-color . "#003636") ;; Dark cyan background + (foreground-color . "#8affff") ;; Bright cyan text + (alpha-background . 75) ;; 75% opacity (GUI only) + (internal-border-width . 0) + (vertical-scroll-bars . nil) + (menu-bar-lines . 0) + (tool-bar-lines . 0))) ;; Use system font rendering settings for better anti-aliasing (setq-default font-use-system-font t) diff --git a/eln-cache/30.2-6a8b22b2/annalist-e67d06c1-9d5db23a.eln b/eln-cache/30.2-6a8b22b2/annalist-e67d06c1-9d5db23a.eln Binary files differdeleted file mode 100755 index b5740bd..0000000 --- a/eln-cache/30.2-6a8b22b2/annalist-e67d06c1-9d5db23a.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/bind-key-fc9c2fa3-466ac555.eln b/eln-cache/30.2-6a8b22b2/bind-key-fc9c2fa3-466ac555.eln Binary files differdeleted file mode 100755 index 08ec7e5..0000000 --- a/eln-cache/30.2-6a8b22b2/bind-key-fc9c2fa3-466ac555.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/cl-seq-f464c4e2-fe43febc.eln b/eln-cache/30.2-6a8b22b2/cl-seq-f464c4e2-fe43febc.eln Binary files differdeleted file mode 100755 index cad50ea..0000000 --- a/eln-cache/30.2-6a8b22b2/cl-seq-f464c4e2-fe43febc.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/diminish-457214fa-3ab06659.eln b/eln-cache/30.2-6a8b22b2/diminish-457214fa-3ab06659.eln Binary files differdeleted file mode 100755 index eecee1e..0000000 --- a/eln-cache/30.2-6a8b22b2/diminish-457214fa-3ab06659.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-3b9df396-2200b0d8.eln b/eln-cache/30.2-6a8b22b2/evil-3b9df396-2200b0d8.eln Binary files differdeleted file mode 100755 index 0505e03..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-3b9df396-2200b0d8.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-collection-635d1a79-770d5135.eln b/eln-cache/30.2-6a8b22b2/evil-collection-635d1a79-770d5135.eln Binary files differdeleted file mode 100755 index cd46947..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-collection-635d1a79-770d5135.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-command-window-6f88d451-fbf17beb.eln b/eln-cache/30.2-6a8b22b2/evil-command-window-6f88d451-fbf17beb.eln Binary files differdeleted file mode 100755 index cb969ac..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-command-window-6f88d451-fbf17beb.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-commands-b78d56af-386d1154.eln b/eln-cache/30.2-6a8b22b2/evil-commands-b78d56af-386d1154.eln Binary files differdeleted file mode 100755 index 43d4bca..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-commands-b78d56af-386d1154.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-common-3f3282bc-0a909e10.eln b/eln-cache/30.2-6a8b22b2/evil-common-3f3282bc-0a909e10.eln Binary files differdeleted file mode 100755 index f4860d4..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-common-3f3282bc-0a909e10.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-core-e6fa0c01-7d34b371.eln b/eln-cache/30.2-6a8b22b2/evil-core-e6fa0c01-7d34b371.eln Binary files differdeleted file mode 100755 index c930745..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-core-e6fa0c01-7d34b371.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-development-0cdad305-ae22128f.eln b/eln-cache/30.2-6a8b22b2/evil-development-0cdad305-ae22128f.eln Binary files differdeleted file mode 100755 index 2e1e6ab..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-development-0cdad305-ae22128f.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-digraphs-74df060a-8e42f67f.eln b/eln-cache/30.2-6a8b22b2/evil-digraphs-74df060a-8e42f67f.eln Binary files differdeleted file mode 100755 index 524e252..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-digraphs-74df060a-8e42f67f.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-ex-8c866cac-d2bda056.eln b/eln-cache/30.2-6a8b22b2/evil-ex-8c866cac-d2bda056.eln Binary files differdeleted file mode 100755 index 08bf0ea..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-ex-8c866cac-d2bda056.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-integration-56de7cda-f2b4b6d0.eln b/eln-cache/30.2-6a8b22b2/evil-integration-56de7cda-f2b4b6d0.eln Binary files differdeleted file mode 100755 index 73f18ad..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-integration-56de7cda-f2b4b6d0.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-jumps-aee09ca6-9d8dba39.eln b/eln-cache/30.2-6a8b22b2/evil-jumps-aee09ca6-9d8dba39.eln Binary files differdeleted file mode 100755 index 7c8d942..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-jumps-aee09ca6-9d8dba39.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-keybindings-5acb9700-bcb81388.eln b/eln-cache/30.2-6a8b22b2/evil-keybindings-5acb9700-bcb81388.eln Binary files differdeleted file mode 100755 index 54b014a..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-keybindings-5acb9700-bcb81388.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-macros-5b627b1e-4f3f68ac.eln b/eln-cache/30.2-6a8b22b2/evil-macros-5b627b1e-4f3f68ac.eln Binary files differdeleted file mode 100755 index dc4b960..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-macros-5b627b1e-4f3f68ac.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-maps-306f3b17-de99e2e5.eln b/eln-cache/30.2-6a8b22b2/evil-maps-306f3b17-de99e2e5.eln Binary files differdeleted file mode 100755 index 35ceaee..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-maps-306f3b17-de99e2e5.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-repeat-57508ec5-772a99a3.eln b/eln-cache/30.2-6a8b22b2/evil-repeat-57508ec5-772a99a3.eln Binary files differdeleted file mode 100755 index a1a8320..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-repeat-57508ec5-772a99a3.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-search-3ab5310c-a0b68c03.eln b/eln-cache/30.2-6a8b22b2/evil-search-3ab5310c-a0b68c03.eln Binary files differdeleted file mode 100755 index da3f100..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-search-3ab5310c-a0b68c03.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-states-7e0cccc1-7c61d17a.eln b/eln-cache/30.2-6a8b22b2/evil-states-7e0cccc1-7c61d17a.eln Binary files differdeleted file mode 100755 index 5354d3d..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-states-7e0cccc1-7c61d17a.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-test-helpers-ed647920-b9102404.eln b/eln-cache/30.2-6a8b22b2/evil-test-helpers-ed647920-b9102404.eln Binary files differdeleted file mode 100755 index dd150af..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-test-helpers-ed647920-b9102404.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-types-37562c2a-f5d539bb.eln b/eln-cache/30.2-6a8b22b2/evil-types-37562c2a-f5d539bb.eln Binary files differdeleted file mode 100755 index 97a63e5..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-types-37562c2a-f5d539bb.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/evil-vars-cdfd8b7a-fe052f18.eln b/eln-cache/30.2-6a8b22b2/evil-vars-cdfd8b7a-fe052f18.eln Binary files differdeleted file mode 100755 index ba842e5..0000000 --- a/eln-cache/30.2-6a8b22b2/evil-vars-cdfd8b7a-fe052f18.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/goto-chg-277b1f35-ea46ed77.eln b/eln-cache/30.2-6a8b22b2/goto-chg-277b1f35-ea46ed77.eln Binary files differdeleted file mode 100755 index 2e28645..0000000 --- a/eln-cache/30.2-6a8b22b2/goto-chg-277b1f35-ea46ed77.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/straight-cadee787-563068f8.eln b/eln-cache/30.2-6a8b22b2/straight-cadee787-563068f8.eln Binary files differdeleted file mode 100755 index 0c1a242..0000000 --- a/eln-cache/30.2-6a8b22b2/straight-cadee787-563068f8.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/straight-cadee787-563068f8qCkfxw.eln.tmp b/eln-cache/30.2-6a8b22b2/straight-cadee787-563068f8qCkfxw.eln.tmp deleted file mode 100644 index e69de29..0000000 --- a/eln-cache/30.2-6a8b22b2/straight-cadee787-563068f8qCkfxw.eln.tmp +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/straight-ert-print-hack-706f2303-dade6fc6.eln b/eln-cache/30.2-6a8b22b2/straight-ert-print-hack-706f2303-dade6fc6.eln Binary files differdeleted file mode 100755 index 994157c..0000000 --- a/eln-cache/30.2-6a8b22b2/straight-ert-print-hack-706f2303-dade6fc6.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/straight-x-c5d103f9-037658ad.eln b/eln-cache/30.2-6a8b22b2/straight-x-c5d103f9-037658ad.eln Binary files differdeleted file mode 100755 index 4821df9..0000000 --- a/eln-cache/30.2-6a8b22b2/straight-x-c5d103f9-037658ad.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/subr--trampoline-726561642d6b65792d73657175656e63652d766563746f72_read_key_sequence_vector_0.eln b/eln-cache/30.2-6a8b22b2/subr--trampoline-726561642d6b65792d73657175656e63652d766563746f72_read_key_sequence_vector_0.eln Binary files differdeleted file mode 100755 index 2b3c6e8..0000000 --- a/eln-cache/30.2-6a8b22b2/subr--trampoline-726561642d6b65792d73657175656e63652d766563746f72_read_key_sequence_vector_0.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/subr--trampoline-726561642d6b65792d73657175656e6365_read_key_sequence_0.eln b/eln-cache/30.2-6a8b22b2/subr--trampoline-726561642d6b65792d73657175656e6365_read_key_sequence_0.eln Binary files differdeleted file mode 100755 index 6260430..0000000 --- a/eln-cache/30.2-6a8b22b2/subr--trampoline-726561642d6b65792d73657175656e6365_read_key_sequence_0.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/subr--trampoline-73656c6563742d77696e646f77_select_window_0.eln b/eln-cache/30.2-6a8b22b2/subr--trampoline-73656c6563742d77696e646f77_select_window_0.eln Binary files differdeleted file mode 100755 index ff13a47..0000000 --- a/eln-cache/30.2-6a8b22b2/subr--trampoline-73656c6563742d77696e646f77_select_window_0.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/subr--trampoline-7365742d77696e646f772d627566666572_set_window_buffer_0.eln b/eln-cache/30.2-6a8b22b2/subr--trampoline-7365742d77696e646f772d627566666572_set_window_buffer_0.eln Binary files differdeleted file mode 100755 index 0f01864..0000000 --- a/eln-cache/30.2-6a8b22b2/subr--trampoline-7365742d77696e646f772d627566666572_set_window_buffer_0.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/subr--trampoline-7573652d676c6f62616c2d6d6170_use_global_map_0.eln b/eln-cache/30.2-6a8b22b2/subr--trampoline-7573652d676c6f62616c2d6d6170_use_global_map_0.eln Binary files differdeleted file mode 100755 index c4ce2b7..0000000 --- a/eln-cache/30.2-6a8b22b2/subr--trampoline-7573652d676c6f62616c2d6d6170_use_global_map_0.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/subr--trampoline-7573652d6c6f63616c2d6d6170_use_local_map_0.eln b/eln-cache/30.2-6a8b22b2/subr--trampoline-7573652d6c6f63616c2d6d6170_use_local_map_0.eln Binary files differdeleted file mode 100755 index 48f3ed3..0000000 --- a/eln-cache/30.2-6a8b22b2/subr--trampoline-7573652d6c6f63616c2d6d6170_use_local_map_0.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/use-package-bind-key-ca10bce3-d6d286d9.eln b/eln-cache/30.2-6a8b22b2/use-package-bind-key-ca10bce3-d6d286d9.eln Binary files differdeleted file mode 100755 index 6540269..0000000 --- a/eln-cache/30.2-6a8b22b2/use-package-bind-key-ca10bce3-d6d286d9.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/use-package-c3721aaa-85fd959d.eln b/eln-cache/30.2-6a8b22b2/use-package-c3721aaa-85fd959d.eln Binary files differdeleted file mode 100755 index 58f6779..0000000 --- a/eln-cache/30.2-6a8b22b2/use-package-c3721aaa-85fd959d.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/use-package-core-138cecc2-e7c762ae.eln b/eln-cache/30.2-6a8b22b2/use-package-core-138cecc2-e7c762ae.eln Binary files differdeleted file mode 100755 index 2954059..0000000 --- a/eln-cache/30.2-6a8b22b2/use-package-core-138cecc2-e7c762ae.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/use-package-delight-fdf87cc0-2d299cea.eln b/eln-cache/30.2-6a8b22b2/use-package-delight-fdf87cc0-2d299cea.eln Binary files differdeleted file mode 100755 index 79c212c..0000000 --- a/eln-cache/30.2-6a8b22b2/use-package-delight-fdf87cc0-2d299cea.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/use-package-diminish-fad65662-39de7713.eln b/eln-cache/30.2-6a8b22b2/use-package-diminish-fad65662-39de7713.eln Binary files differdeleted file mode 100755 index 0b35658..0000000 --- a/eln-cache/30.2-6a8b22b2/use-package-diminish-fad65662-39de7713.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/use-package-ensure-bb75634c-67745105.eln b/eln-cache/30.2-6a8b22b2/use-package-ensure-bb75634c-67745105.eln Binary files differdeleted file mode 100755 index a894ded..0000000 --- a/eln-cache/30.2-6a8b22b2/use-package-ensure-bb75634c-67745105.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/use-package-ensure-system-package-92ab5909-ced165a4.eln b/eln-cache/30.2-6a8b22b2/use-package-ensure-system-package-92ab5909-ced165a4.eln Binary files differdeleted file mode 100755 index 6727ae5..0000000 --- a/eln-cache/30.2-6a8b22b2/use-package-ensure-system-package-92ab5909-ced165a4.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/use-package-jump-bc0daa1f-ddce5033.eln b/eln-cache/30.2-6a8b22b2/use-package-jump-bc0daa1f-ddce5033.eln Binary files differdeleted file mode 100755 index 86d6e03..0000000 --- a/eln-cache/30.2-6a8b22b2/use-package-jump-bc0daa1f-ddce5033.eln +++ /dev/null diff --git a/eln-cache/30.2-6a8b22b2/use-package-lint-eec4a348-30162e93.eln b/eln-cache/30.2-6a8b22b2/use-package-lint-eec4a348-30162e93.eln Binary files differdeleted file mode 100755 index 64c9b26..0000000 --- a/eln-cache/30.2-6a8b22b2/use-package-lint-eec4a348-30162e93.eln +++ /dev/null @@ -6,8 +6,8 @@ ;; Restore GC threshold after startup (maximized in early-init.el) (add-hook 'emacs-startup-hook - (lambda () - (setq gc-cons-threshold (* 100 1024 1024)))) + (lambda () + (setq gc-cons-threshold (* 100 1024 1024)))) ;; ===================================== ;; 📦 Package Management (straight.el) @@ -19,18 +19,18 @@ ;; Bootstrap straight.el from XDG config directory (defvar bootstrap-version) (let* ((user-dir (file-name-as-directory - (or (getenv "XDG_CONFIG_HOME") "~/.config/"))) - (emacs-dir (concat user-dir "emacs/")) - (bootstrap-file - (expand-file-name "straight/repos/straight.el/bootstrap.el" emacs-dir)) - (bootstrap-version 6)) + (or (getenv "XDG_CONFIG_HOME") "~/.config/"))) + (emacs-dir (concat user-dir "emacs/")) + (bootstrap-file + (expand-file-name "straight/repos/straight.el/bootstrap.el" emacs-dir)) + (bootstrap-version 6)) (unless (file-exists-p bootstrap-file) - (with-current-buffer - (url-retrieve-synchronously - "https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el" - 'silent 'inhibit-cookies) - (goto-char (point-max)) - (eval-print-last-sexp))) + (with-current-buffer + (url-retrieve-synchronously + "https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el" + 'silent 'inhibit-cookies) + (goto-char (point-max)) + (eval-print-last-sexp))) (load bootstrap-file nil 'nomessage)) ;; Freeze File @@ -41,8 +41,8 @@ (setq straight-use-package-by-default t) ;; Essential use-package utilities -(use-package diminish) ;; Hide/abbreviate minor modes -(use-package bind-key) ;; Key binding utilities +(use-package diminish) ;; Hide/abbreviate minor modes +(use-package bind-key) ;; Key binding utilities ;; ===================================== ;; 🎨 UI & Visual Configuration @@ -58,40 +58,44 @@ ;; Disable startup messages and bell (setq inhibit-startup-screen t - inhibit-startup-message t - inhibit-startup-echo-area-message t - ring-bell-function 'ignore) + inhibit-startup-message t + inhibit-startup-echo-area-message t + ring-bell-function 'ignore) ;; Configure line numbers with themed colors (global-display-line-numbers-mode 1) -(setq display-line-numbers-type 'relative) ;; Relative line numbers for Evil mode +(setq display-line-numbers-type 'relative) ;; Relative line numbers for Evil mode (set-face-attribute 'line-number nil - :foreground "#4fa8a8" ;; Softer cyan for line numbers + :foreground "#4fa8a8" ;; Softer cyan for line numbers :background "#003636") (set-face-attribute 'line-number-current-line nil - :foreground "#8affff" ;; Bright cyan for current line + :foreground "#8affff" ;; Bright cyan for current line :background "#003636" :weight 'bold) (set-face-attribute 'fringe nil :background "#003636") ;; Configure cursor and selection colors (set-face-attribute 'cursor nil - :background "#FFC600") ;; Yellow/gold cursor + :background "#FFC600") ;; Yellow/gold cursor (set-face-attribute 'region nil - :background "#395e5e" ;; Dark teal selection + :background "#395e5e" ;; Dark teal selection :foreground 'unspecified) ;; Keep text color unchanged ;; Configure mode-line colors (set-face-attribute 'mode-line nil - :background "#004344" ;; Dark teal background - :foreground "#8affff" ;; Bright cyan text + :background "#004344" ;; Dark teal background + :foreground "#8affff" ;; Bright cyan text :box nil) ;; Remove border - ;;:box '(:line-width 3 :color "#004344")) ;; Add padding for icons +;;:box '(:line-width 3 :color "#004344")) ;; Add padding for icons (set-face-attribute 'mode-line-inactive nil - :background "#003030" ;; Darker background for inactive - :foreground "#808080" ;; Gray text for inactive + :background "#003030" ;; Darker background for inactive + :foreground "#808080" ;; Gray text for inactive :box nil) ;; Remove border +;; Configure window divider color (between buffers) +(set-face-attribute 'vertical-border nil + :foreground "#74c4c4") ;; Window divider color + ;; ===================================== ;; 🔧 Editing Behavior ;; ===================================== @@ -108,8 +112,8 @@ ;; Global tab settings (setq-default indent-tabs-mode t) ;; Use tabs, not spaces -(setq-default tab-width 4) ;; Display tabs as 4 spaces wide -(setq-default tab-stop-list (number-sequence 4 200 4)) ;; Tab stops every 4 spaces +(setq-default tab-width 4) ;; Display tabs as 4 spaces wide +(setq-default tab-stop-list (number-sequence 4 200 4)) ;; Tab stops every 4 spaces ;; Don't convert tabs to spaces when deleting (setq backward-delete-char-untabify-method nil) @@ -129,30 +133,30 @@ ;; Configure mode-specific indentation offsets to match tab-width ;; This ensures electric-indent uses the right width for ALL major languages -(setq-default c-basic-offset 4) ;; C, C++, Java, PHP -(setq-default js-indent-level 4) ;; JavaScript, JSON -(setq-default typescript-indent-level 4) ;; TypeScript -(setq-default css-indent-offset 4) ;; CSS -(setq-default sh-basic-offset 4) ;; Shell scripts -(setq-default python-indent-offset 4) ;; Python -(setq-default rust-indent-offset 4) ;; Rust -(setq-default ruby-indent-level 4) ;; Ruby -(setq-default perl-indent-level 4) ;; Perl -(setq-default lua-indent-level 4) ;; Lua -(setq-default go-ts-mode-indent-offset 4) ;; Go (tree-sitter) -(setq-default haskell-indent-offset 4) ;; Haskell +(setq-default c-basic-offset 4) ;; C, C++, Java, PHP +(setq-default js-indent-level 4) ;; JavaScript, JSON +(setq-default typescript-indent-level 4) ;; TypeScript +(setq-default css-indent-offset 4) ;; CSS +(setq-default sh-basic-offset 4) ;; Shell scripts +(setq-default python-indent-offset 4) ;; Python +(setq-default rust-indent-offset 4) ;; Rust +(setq-default ruby-indent-level 4) ;; Ruby +(setq-default perl-indent-level 4) ;; Perl +(setq-default lua-indent-level 4) ;; Lua +(setq-default go-ts-mode-indent-offset 4) ;; Go (tree-sitter) +(setq-default haskell-indent-offset 4) ;; Haskell (setq-default haskell-indentation-left-offset 4) -(setq-default swift-mode:basic-offset 4) ;; Swift -(setq-default kotlin-tab-width 4) ;; Kotlin -(setq-default scala-indent:step 4) ;; Scala -(setq-default lisp-indent-offset 4) ;; Lisp, Scheme -(setq-default sgml-basic-offset 4) ;; HTML, XML -(setq-default nxml-child-indent 4) ;; XML (nxml-mode) -(setq-default web-mode-markup-indent-offset 4) ;; Web-mode HTML -(setq-default web-mode-css-indent-offset 4) ;; Web-mode CSS -(setq-default web-mode-code-indent-offset 4) ;; Web-mode JS/etc -(setq-default yaml-indent-offset 4) ;; YAML -(setq-default standard-indent 4) ;; Fallback for other modes +(setq-default swift-mode:basic-offset 4) ;; Swift +(setq-default kotlin-tab-width 4) ;; Kotlin +(setq-default scala-indent:step 4) ;; Scala +(setq-default lisp-indent-offset 4) ;; Lisp, Scheme +(setq-default sgml-basic-offset 4) ;; HTML, XML +(setq-default nxml-child-indent 4) ;; XML (nxml-mode) +(setq-default web-mode-markup-indent-offset 4) ;; Web-mode HTML +(setq-default web-mode-css-indent-offset 4) ;; Web-mode CSS +(setq-default web-mode-code-indent-offset 4) ;; Web-mode JS/etc +(setq-default yaml-indent-offset 4) ;; YAML +(setq-default standard-indent 4) ;; Fallback for other modes ;; Make sure electric-indent respects tabs (setq electric-indent-inhibit nil) @@ -161,10 +165,10 @@ (defun tabify-current-line () "Convert leading spaces to tabs on the current line." (when indent-tabs-mode - (save-excursion - (beginning-of-line) - (when (looking-at "[ \t]+") - (tabify (point) (match-end 0)))))) + (save-excursion + (beginning-of-line) + (when (looking-at "[ \t]+") + (tabify (point) (match-end 0)))))) ;; Run after electric-indent (add-hook 'post-self-insert-hook 'tabify-current-line) @@ -175,44 +179,44 @@ ;; Show whitespace characters like Vim's listchars (use-package whitespace - :straight nil ;; Built-in package + :straight nil ;; Built-in package :hook (prog-mode . whitespace-mode) :config ;; What to visualize (setq whitespace-style '(face - tabs - spaces - trailing - space-mark - tab-mark - newline - newline-mark)) + tabs + spaces + trailing + space-mark + tab-mark + newline + newline-mark)) ;; Character mappings (like Vim listchars) (setq whitespace-display-mappings - '( - ;; tab: show as "│»»»" (char 9 = tab) - (tab-mark 9 [9474 187 187 187] [124 187 187 187]) - ;; space: show as "·" (char 32 = space) - (space-mark 32 [183] [46]) - ;; newline: show as "↲" (char 10 = newline) - (newline-mark 10 [8626 10] [182 10]) - ;; non-breaking space: show as "␣" - (space-mark 160 [9251] [95]))) + '( + ;; tab: show as "│»»»" (char 9 = tab) + (tab-mark 9 [9474 187 187 187] [124 187 187 187]) + ;; space: show as "·" (char 32 = space) + (space-mark 32 [183] [46]) + ;; newline: show as "↲" (char 10 = newline) + (newline-mark 10 [8626 10] [182 10]) + ;; non-breaking space: show as "␣" + (space-mark 160 [9251] [95]))) ;; Face colors for whitespace characters (set-face-attribute 'whitespace-tab nil - :foreground "#016868" - :background nil) + :foreground "#016868" + :background nil) (set-face-attribute 'whitespace-space nil - :foreground "#016868" - :background nil) + :foreground "#016868" + :background nil) (set-face-attribute 'whitespace-newline nil - :foreground "#016868" - :background nil) + :foreground "#016868" + :background nil) (set-face-attribute 'whitespace-trailing nil - :foreground "#d2691e" - :background "#003030")) + :foreground "#d2691e" + :background "#003030")) ;; Toggle whitespace-mode with a keybinding ;; (global-set-key (kbd "C-c w") 'whitespace-mode) @@ -225,52 +229,52 @@ ;; Uses composition-function-table for proper ligature rendering (defconst jetbrains-mono-ligatures '("-->" "//" "/**" "/*" "*/" "<!--" ":=" "->>" "<<-" "->" "<-" - "<=>" "==" "!=" "<=" ">=" "=:=" "!==" "&&" "||" "..." ".." - "|||" "///" "&&&" "===" "++" "--" "=>" "|>" "<|" "||>" "<||" - "|||>" "<|||" ">>" "<<" "::=" "|]" "[|" "{|" "|}" - "[<" ">]" ":?>" ":?" "/=" "[||]" "!!" "?:" "?." "::" - "+++" "??" "###" "##" ":::" "####" ".?" "?=" "=!=" "<|>" - "<:" ":<" ":>" ">:" "<>" "***" ";;" "/==" ".=" ".-" "__" - "=/=" "<-<" "<<<" ">>>" "<=<" "<<=" "<==" "<==>" "==>" "=>>" - ">=>" ">>=" ">>-" ">-" "<~>" "-<" "-<<" "=<<" "---" "<-|" - "<=|" "/\\" "\\/" "|=>" "|~>" "<~~" "<~" "~~" "~~>" "~>" - "<$>" "<$" "$>" "<+>" "<+" "+>" "<*>" "<*" "*>" "</>" "</" "/>" - "<->" "..<" "~=" "~-" "-~" "~@" "^=" "-|" "_|_" "|-" "||-" - "|=" "||=" "#{" "#[" "]#" "#(" "#?" "#_" "#_(" "#:" "#!" "#=" - "&=")) + "<=>" "==" "!=" "<=" ">=" "=:=" "!==" "&&" "||" "..." ".." + "|||" "///" "&&&" "===" "++" "--" "=>" "|>" "<|" "||>" "<||" + "|||>" "<|||" ">>" "<<" "::=" "|]" "[|" "{|" "|}" + "[<" ">]" ":?>" ":?" "/=" "[||]" "!!" "?:" "?." "::" + "+++" "??" "###" "##" ":::" "####" ".?" "?=" "=!=" "<|>" + "<:" ":<" ":>" ">:" "<>" "***" ";;" "/==" ".=" ".-" "__" + "=/=" "<-<" "<<<" ">>>" "<=<" "<<=" "<==" "<==>" "==>" "=>>" + ">=>" ">>=" ">>-" ">-" "<~>" "-<" "-<<" "=<<" "---" "<-|" + "<=|" "/\\" "\\/" "|=>" "|~>" "<~~" "<~" "~~" "~~>" "~>" + "<$>" "<$" "$>" "<+>" "<+" "+>" "<*>" "<*" "*>" "</>" "</" "/>" + "<->" "..<" "~=" "~-" "-~" "~@" "^=" "-|" "_|_" "|-" "||-" + "|=" "||=" "#{" "#[" "]#" "#(" "#?" "#_" "#_(" "#:" "#!" "#=" + "&=")) ;; Sort ligatures by length (longest first) to ensure proper matching (setq jetbrains-mono-ligatures - (sort jetbrains-mono-ligatures - (lambda (x y) (> (length x) (length y))))) + (sort jetbrains-mono-ligatures + (lambda (x y) (> (length x) (length y))))) ;; Register each ligature pattern in the composition function table (dolist (ligature jetbrains-mono-ligatures) (let ((pattern (regexp-quote ligature)) - (first-char (aref ligature 0))) - (set-char-table-range composition-function-table - first-char - (nconc (char-table-range composition-function-table first-char) - (list (vector pattern - 0 - 'compose-gstring-for-graphic)))))) + (first-char (aref ligature 0))) + (set-char-table-range composition-function-table + first-char + (nconc (char-table-range composition-function-table first-char) + (list (vector pattern + 0 + 'compose-gstring-for-graphic)))))) ;; ===================================== ;; Smooth Scrolling ;; ===================================== ;; (use-package ultra-scroll -;; ;:vc (:url "https://github.com/jdtsmith/ultra-scroll") ; if desired (emacs>=v30) -;; :init -;; (setq scroll-conservatively 3 ; or whatever value you prefer, since v0.4 -;; scroll-margin 0) ; important: scroll-margin>0 not yet supported -;; :config -;; (ultra-scroll-mode 1)) +;; ;:vc (:url "https://github.com/jdtsmith/ultra-scroll") ; if desired (emacs>=v30) +;; :init +;; (setq scroll-conservatively 3 ; or whatever value you prefer, since v0.4 +;; scroll-margin 0) ; important: scroll-margin>0 not yet supported +;; :config +;; (ultra-scroll-mode 1)) (pixel-scroll-precision-mode 1) (setq scroll-conservatively 101 - scroll-margin 0 - scroll-preserve-screen-position t) + scroll-margin 0 + scroll-preserve-screen-position t) ;; ===================================== @@ -290,3 +294,15 @@ ;; ===================================== (load (expand-file-name "config/modeline.el" user-emacs-directory)) + +;; ===================================== +;; 🌲 Treemacs +;; ===================================== + +(load (expand-file-name "config/treemacs.el" user-emacs-directory)) + +;; ===================================== +;; 🪄 Magit +;; ===================================== + +(load (expand-file-name "config/magit.el" user-emacs-directory)) diff --git a/straight/build-cache.el b/straight/build-cache.el deleted file mode 100644 index b4655f2..0000000 --- a/straight/build-cache.el +++ /dev/null @@ -1,1011 +0,0 @@ - -:tanat - -"30.2" - -#s(hash-table test equal data ("straight" ("2025-12-10 14:34:06" ("emacs") (:type git :host github :repo "radian-software/straight.el" :files ("straight*.el") :branch "main" :package "straight" :local-repo "straight.el")) "org-elpa" ("2025-12-10 14:34:06" nil (:local-repo nil :package "org-elpa" :type git)) "melpa" ("2025-12-10 14:34:06" nil (:type git :host github :repo "melpa/melpa" :build nil :package "melpa" :local-repo "melpa")) "gnu-elpa-mirror" ("2025-12-10 14:34:08" nil (:type git :host github :repo "emacs-straight/gnu-elpa-mirror" :build nil :package "gnu-elpa-mirror" :local-repo "gnu-elpa-mirror")) "use-package" ("2025-12-10 14:34:12" ("emacs" "bind-key") (:type git :host github :repo "emacs-straight/use-package" :files ("*" (:exclude ".git")) :package "use-package" :local-repo "use-package")) "bind-key" ("2025-12-10 14:34:11" ("emacs") (:type git :host github :repo "emacs-straight/bind-key" :files ("*" (:exclude ".git")) :package "bind-key" :local-repo "bind-key")) "diminish" ("2025-12-10 14:34:13" ("emacs") (:type git :host github :repo "emacs-straight/diminish" :files ("*" (:exclude ".git")) :package "diminish" :local-repo "diminish")) "nongnu-elpa" ("2025-12-10 14:47:08" nil (:type git :repo "https://github.com/emacsmirror/nongnu_elpa.git" :depth (full single-branch) :local-repo "nongnu-elpa" :build nil :package "nongnu-elpa")) "evil" ("2025-12-10 14:47:20" ("emacs" "cl-lib" "goto-chg" "nadvice") (:repo "https://github.com/emacs-evil/evil" :files (:defaults (:exclude "COPYING" "lib" "scripts")) :package "evil" :type git :local-repo "evil")) "el-get" ("2025-12-10 14:47:16" nil (:type git :host github :repo "dimitri/el-get" :build nil :package "el-get" :local-repo "el-get")) "emacsmirror-mirror" ("2025-12-10 14:47:17" nil (:type git :host github :repo "emacs-straight/emacsmirror-mirror" :build nil :package "emacsmirror-mirror" :local-repo "emacsmirror-mirror")) "goto-chg" ("2025-12-10 14:47:19" ("emacs") (:repo "https://github.com/emacs-evil/goto-chg" :files (:defaults (:exclude "LICENSE")) :package "goto-chg" :type git :local-repo "goto-chg")) "evil-collection" ("2025-12-10 15:00:26" ("emacs" "evil" "annalist") (:type git :host github :repo "emacs-evil/evil-collection" :files (:defaults "modes") :package "evil-collection" :local-repo "evil-collection")) "annalist" ("2025-12-10 14:47:24" ("emacs" "cl-lib") (:type git :host github :repo "emacsmirror/annalist" :package "annalist" :local-repo "annalist")) "ultra-scroll" ("2025-12-10 17:06:48" ("emacs") (:type git :host github :repo "emacsmirror/ultra-scroll" :package "ultra-scroll" :local-repo "ultra-scroll")) "go-mode" ("2025-12-10 17:56:23" ("emacs") (:repo "https://github.com/dominikh/go-mode.el" :files (:defaults (:exclude "generate_authors.sh")) :package "go-mode" :type git :local-repo "go-mode")) "rust-mode" ("2025-12-10 17:56:25" ("emacs") (:repo "https://github.com/rust-lang/rust-mode" :files (:defaults (:exclude "test-*" "triagebot.toml" "*.sh")) :package "rust-mode" :type git :local-repo "rust-mode")) "doom-modeline" ("2025-12-10 18:04:35" ("emacs" "compat" "nerd-icons" "shrink-path") (:type git :host github :repo "seagle0128/doom-modeline" :files (:defaults) :package "doom-modeline" :local-repo "doom-modeline")) "compat" ("2025-12-10 18:04:25" ("emacs" "seq") (:type git :host github :repo "emacs-straight/compat" :files ("*" (:exclude ".git")) :package "compat" :local-repo "compat")) "seq" ("2025-12-10 18:04:25" nil (:type git :host github :repo "emacs-straight/seq" :files ("*" (:exclude ".git")) :package "seq" :local-repo "seq")) "nerd-icons" ("2025-12-10 18:09:03" ("emacs") (:type git :host github :repo "emacsmirror/nerd-icons" :package "nerd-icons" :local-repo "nerd-icons")) "shrink-path" ("2025-12-10 18:04:35" ("emacs" "s" "dash" "f") (:type git :repo "https://gitlab.com/bennya/shrink-path.el.git" :files (:defaults) :package "shrink-path" :local-repo "shrink-path.el")) "s" ("2025-12-10 18:04:31" nil (:type git :host github :repo "magnars/s.el" :files (:defaults) :package "s" :local-repo "s.el")) "dash" ("2025-12-10 18:04:33" ("emacs") (:type git :host github :repo "emacs-straight/dash" :files ("*" (:exclude ".git")) :package "dash" :local-repo "dash")) "f" ("2025-12-10 18:04:35" ("emacs" "s" "dash") (:type git :host github :repo "rejeep/f.el" :files (:defaults) :package "f" :local-repo "f.el")))) - -#s(hash-table test equal data ("straight" ((straight-autoloads straight straight-x straight-ert-print-hack) (autoload 'straight-remove-unused-repos "straight" "Remove unused repositories from the repos and build directories. -A repo is considered \"unused\" if it was not explicitly requested via -`straight-use-package' during the current Emacs session. -If FORCE is non-nil do not prompt before deleting repos. - -(fn &optional FORCE)" t) (autoload 'straight-get-recipe "straight" "Interactively select a recipe from one of the recipe repositories. -All recipe repositories in `straight-recipe-repositories' will -first be cloned. After the recipe is selected, it will be copied -to the kill ring. With a prefix argument, first prompt for a -recipe repository to search. Only that repository will be -cloned. - -From Lisp code, SOURCES should be a subset of the symbols in -`straight-recipe-repositories'. Only those recipe repositories -are cloned and searched. If it is nil or omitted, then the value -of `straight-recipe-repositories' is used. If SOURCES is the -symbol `interactive', then the user is prompted to select a -recipe repository, and a list containing that recipe repository -is used for the value of SOURCES. ACTION may be `copy' (copy -recipe to the kill ring), `insert' (insert at point), or nil (no -action, just return it). - -Optional arg FILTER must be a unary function. -It takes a package name as its sole argument. -If it returns nil the candidate is excluded. - -USE-CACHE non-nil means respect the existing straight.el recipe cache, -i.e. display also packages that have been registered in the current -Emacs session even if not found in any recipe repository, and if such a -package is selected, return just the package name as a symbol, instead -of a recipe. (It is not possible to return an actual recipe, as the API -for `straight-get-recipe' returns MELPA-style recipes, while cached -recipes have already been converted into the internal format.) - -Within `straight-get-recipe', the symbol `cache' is treated as if it is -also a member of `straight-recipe-repositories', and refers to the set -of packages that have already been registered in the current Emacs -session. - -(fn &optional SOURCES ACTION FILTER USE-CACHE)" t) (autoload 'straight-visit-package-website "straight" "Visit the package RECIPE's website. - -(fn RECIPE)" t) (autoload 'straight-visit-package "straight" "Open PACKAGE's local repository directory. -When BUILD is non-nil visit PACKAGE's build directory. - -(fn PACKAGE &optional BUILD)" t) (autoload 'straight-use-package "straight" "Register, clone, build, and activate a package and its dependencies. -This is the main entry point to the functionality of straight.el. - -MELPA-STYLE-RECIPE is either a symbol naming a package, or a list -whose car is a symbol naming a package and whose cdr is a -property list containing e.g. `:type', `:local-repo', `:files', -and VC backend specific keywords. - -First, the package recipe is registered with straight.el. If -NO-CLONE is a function, then it is called with two arguments: the -package name as a string, and a boolean value indicating whether -the local repository for the package is available. In that case, -the return value of the function is used as the value of NO-CLONE -instead. In any case, if NO-CLONE is non-nil, then processing -stops here. - -Otherwise, the repository is cloned, if it is missing. If -NO-BUILD is a function, then it is called with one argument: the -package name as a string. In that case, the return value of the -function is used as the value of NO-BUILD instead. In any case, -if NO-BUILD is non-nil, then processing halts here. Otherwise, -the package is built and activated. Note that if the package -recipe has a nil `:build' entry, then NO-BUILD is ignored -and processing always stops before building and activation -occurs. - -CAUSE is a string explaining the reason why -`straight-use-package' has been called. It is for internal use -only, and is used to construct progress messages. INTERACTIVE is -non-nil if the function has been called interactively. It is for -internal use only, and is used to determine whether to show a -hint about how to install the package permanently. - -Return non-nil when package is initially installed, nil otherwise. - -Interactively, prompt with a list of available packages in currently -registered recipe repositories. With prefix arg, prompt first for which -recipe repository to list from. If a package has already been registered -in the current Emacs session, the existing recipe is re-used rather than -being looked up anew. With prefix arg, \"cache\" is displayed as one of -the recipe repositories, and allows filtering to only already-registered -packages. - -(fn MELPA-STYLE-RECIPE &optional NO-CLONE NO-BUILD CAUSE INTERACTIVE)" t) (autoload 'straight-register-package "straight" "Register a package without cloning, building, or activating it. -This function is equivalent to calling `straight-use-package' -with a non-nil argument for NO-CLONE. It is provided for -convenience. MELPA-STYLE-RECIPE is as for -`straight-use-package'. - -(fn MELPA-STYLE-RECIPE)") (autoload 'straight-use-package-no-build "straight" "Register and clone a package without building it. -This function is equivalent to calling `straight-use-package' -with nil for NO-CLONE but a non-nil argument for NO-BUILD. It is -provided for convenience. MELPA-STYLE-RECIPE is as for -`straight-use-package'. - -(fn MELPA-STYLE-RECIPE)") (autoload 'straight-use-package-lazy "straight" "Register, build, and activate a package if it is already cloned. -This function is equivalent to calling `straight-use-package' -with symbol `lazy' for NO-CLONE. It is provided for convenience. -MELPA-STYLE-RECIPE is as for `straight-use-package'. - -Argument CAUSE is for internal use only. - -(fn MELPA-STYLE-RECIPE &optional CAUSE)") (autoload 'straight-use-recipes "straight" "Register a recipe repository using MELPA-STYLE-RECIPE. -This registers the recipe and builds it if it is already cloned. -Note that you probably want the recipe for a recipe repository to -include a nil `:build' property, to unconditionally -inhibit the build phase. - -This function also adds the recipe repository to -`straight-recipe-repositories', at the end of the list. - -Existing recipe repositories are not searched for a recipe for the -recipe repository you are trying to register, because that is strange -and confusing. If you explicitly want this behavior, you can use the -`straight-use-package' API directly. - -Argument CAUSE is for internal use only. - -(fn MELPA-STYLE-RECIPE &optional CAUSE)") (autoload 'straight-override-recipe "straight" "Register MELPA-STYLE-RECIPE as a recipe override. -This puts it in `straight-recipe-overrides', depending on the -value of `straight-current-profile'. - -(fn MELPA-STYLE-RECIPE)") (autoload 'straight-check-package "straight" "Rebuild a PACKAGE if it has been modified. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. See also `straight-rebuild-package' and -`straight-check-all'. - -(fn PACKAGE)" t) (autoload 'straight-check-all "straight" "Rebuild any packages that have been modified. -See also `straight-rebuild-all' and `straight-check-package'. -This function should not be called during init." t) (autoload 'straight-rebuild-package "straight" "Rebuild a PACKAGE. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument RECURSIVE, rebuild -all dependencies as well. See also `straight-check-package' and -`straight-rebuild-all'. - -(fn PACKAGE &optional RECURSIVE)" t) (autoload 'straight-rebuild-all "straight" "Rebuild all packages. -See also `straight-check-all' and `straight-rebuild-package'." t) (autoload 'straight-prune-build-cache "straight" "Prune the build cache. -This means that only packages that were built in the last init -run and subsequent interactive session will remain; other -packages will have their build mtime information and any cached -autoloads discarded.") (autoload 'straight-prune-build-directory "straight" "Prune the build directory. -This means that only packages that were built in the last init -run and subsequent interactive session will remain; other -packages will have their build directories deleted.") (autoload 'straight-prune-build "straight" "Prune the build cache and build directory. -This means that only packages that were built in the last init -run and subsequent interactive session will remain; other -packages will have their build mtime information discarded and -their build directories deleted." t) (autoload 'straight-normalize-package "straight" "Normalize a PACKAGE's local repository to its recipe's configuration. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. - -CONVERT-SNAPSHOTS non-nil (interactively, prefix arg) means if the -repository is a snapshot, convert it to a full repository first. - -(fn PACKAGE &key CONVERT-SNAPSHOTS)" t) (autoload 'straight-normalize-all "straight" "Normalize all packages. See `straight-normalize-package'. -Return a list of recipes for packages that were not successfully -normalized. If multiple packages come from the same local -repository, only one is normalized. - -PREDICATE, if provided, filters the packages that are normalized. -It is called with the package name as a string, and should return -non-nil if the package should actually be normalized. - -CONVERT-SNAPSHOTS non-nil (interactively, prefix arg) means if -repositories are snapshots, convert them to full repositories first. - -(fn &optional PREDICATE CONVERT-SNAPSHOTS)" t) (autoload 'straight-fetch-package "straight" "Try to fetch a PACKAGE from the primary remote. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -fetch not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) (autoload 'straight-fetch-package-and-deps "straight" "Try to fetch a PACKAGE and its (transitive) dependencies. -PACKAGE, its dependencies, their dependencies, etc. are fetched -from their primary remotes. - -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -fetch not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) (autoload 'straight-fetch-all "straight" "Try to fetch all packages from their primary remotes. -With prefix argument FROM-UPSTREAM, fetch not just from primary -remotes but also from upstreams (for forked packages). - -Return a list of recipes for packages that were not successfully -fetched. If multiple packages come from the same local -repository, only one is fetched. - -PREDICATE, if provided, filters the packages that are fetched. It -is called with the package name as a string, and should return -non-nil if the package should actually be fetched. - -(fn &optional FROM-UPSTREAM PREDICATE)" t) (autoload 'straight-merge-package "straight" "Try to merge a PACKAGE from the primary remote. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -merge not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) (autoload 'straight-merge-package-and-deps "straight" "Try to merge a PACKAGE and its (transitive) dependencies. -PACKAGE, its dependencies, their dependencies, etc. are merged -from their primary remotes. - -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -merge not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) (autoload 'straight-merge-all "straight" "Try to merge all packages from their primary remotes. -With prefix argument FROM-UPSTREAM, merge not just from primary -remotes but also from upstreams (for forked packages). - -Return a list of recipes for packages that were not successfully -merged. If multiple packages come from the same local -repository, only one is merged. - -PREDICATE, if provided, filters the packages that are merged. It -is called with the package name as a string, and should return -non-nil if the package should actually be merged. - -(fn &optional FROM-UPSTREAM PREDICATE)" t) (autoload 'straight-pull-package "straight" "Try to pull a PACKAGE from the primary remote. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, pull -not just from primary remote but also from upstream (for forked -packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) (autoload 'straight-pull-package-and-deps "straight" "Try to pull a PACKAGE and its (transitive) dependencies. -PACKAGE, its dependencies, their dependencies, etc. are pulled -from their primary remotes. - -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -pull not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) (autoload 'straight-pull-all "straight" "Try to pull all packages from their primary remotes. -With prefix argument FROM-UPSTREAM, pull not just from primary -remotes but also from upstreams (for forked packages). - -Return a list of recipes for packages that were not successfully -pulled. If multiple packages come from the same local repository, -only one is pulled. - -PREDICATE, if provided, filters the packages that are pulled. It -is called with the package name as a string, and should return -non-nil if the package should actually be pulled. - -(fn &optional FROM-UPSTREAM PREDICATE)" t) (autoload 'straight-push-package "straight" "Push a PACKAGE to its primary remote, if necessary. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. - -(fn PACKAGE)" t) (autoload 'straight-push-all "straight" "Try to push all packages to their primary remotes. - -Return a list of recipes for packages that were not successfully -pushed. If multiple packages come from the same local repository, -only one is pushed. - -PREDICATE, if provided, filters the packages that are normalized. -It is called with the package name as a string, and should return -non-nil if the package should actually be normalized. - -(fn &optional PREDICATE)" t) (autoload 'straight-freeze-versions "straight" "Write version lockfiles for currently activated packages. -This implies first pushing all packages that have unpushed local -changes. If the package management system has been used since the -last time the init-file was reloaded, offer to fix the situation -by reloading the init-file again. If FORCE is -non-nil (interactively, if a prefix argument is provided), skip -all checks and write the lockfile anyway. - -Currently, writing version lockfiles requires cloning all lazily -installed packages. Hopefully, this inconvenient requirement will -be removed in the future. - -Multiple lockfiles may be written (one for each profile), -according to the value of `straight-profiles'. - -(fn &optional FORCE)" t) (autoload 'straight-thaw-versions "straight" "Read version lockfiles and restore package versions to those listed." t) (autoload 'straight-bug-report "straight" "Test straight.el in a clean environment. -ARGS may be any of the following keywords and their respective values: - - :pre-bootstrap (Form)... - Forms evaluated before bootstrapping straight.el - e.g. (setq straight-repository-branch \"develop\") - Note this example is already in the default bootstrapping code. - - - :post-bootstrap (Form)... - Forms evaluated in the testing environment after boostrapping. - e.g. (straight-use-package \\='(example :type git :host github)) - - - :interactive Boolean - If nil, the subprocess will immediately exit after the test. - Output will be printed to `straight-bug-report--process-buffer' - Otherwise, the subprocess will be interactive. - - - :preserve Boolean - If non-nil, the test directory is left in the directory stored in the - variable `temporary-file-directory'. Otherwise, it is - immediately removed after the test is run. - - - :executable String - Indicate the Emacs executable to launch. - Defaults to the path of the current Emacs executable. - - - :raw Boolean - If non-nil, the raw process output is sent to - `straight-bug-report--process-buffer'. Otherwise, it is - formatted as markdown for submitting as an issue. - - - :user-dir String - If non-nil, the test is run with `user-emacs-directory' set to STRING. - Otherwise, a temporary directory is created and used. - Unless absolute, paths are expanded relative to the variable - `temporary-file-directory'. - -ARGS are accessible within the :pre/:post-bootsrap phases via the -locally bound plist, straight-bug-report-args. - -(fn &rest ARGS)" nil t) (function-put 'straight-bug-report 'lisp-indent-function 0) (autoload 'straight-dependencies "straight" "Return a list of PACKAGE's dependencies, as strings. -PACKAGE is a string. If the dependencies have dependencies themselves, -then instead of strings they will be lists whose cars are the -dependencies and whose cdrs are the recursive dependencies in the same -format returned from `straight-dependencies'. - -Interactively, the user selects a package to show dependencies for, and -the dependencies are shown in the echo area. - -(fn &optional PACKAGE)" t) (autoload 'straight-dependents "straight" "Return a list of PACKAGE's dependents, as strings. -Dependents are packages that have the given package as a dependency. In -other words, this is the opposite of `straight-dependencies'. - -PACKAGE is a string. If the dependents have dependents themselves, then -instead of strings they will be lists whose cars are the dependents and -whose cdrs are the recursive dependents in the same format returned from -`straight-dependents'. - -(fn &optional PACKAGE)" t) (register-definition-prefixes "straight" '("straight-")) (register-definition-prefixes "straight-ert-print-hack" '("+without-print-limits")) (defvar straight-x-pinned-packages nil "List of pinned packages.") (register-definition-prefixes "straight-x" '("straight-x-")) (provide 'straight-autoloads)) "bind-key" ((bind-key-autoloads bind-key bind-key-pkg) (defvar personal-keybindings nil "List of bindings performed by `bind-key'. - -Elements have the form ((KEY . [MAP]) CMD ORIGINAL-CMD)") (autoload 'bind-key "bind-key" "Bind KEY-NAME to COMMAND in KEYMAP (`global-map' if not passed). - -KEY-NAME may be a vector, in which case it is passed straight to -`define-key'. Or it may be a string to be interpreted as -spelled-out keystrokes, e.g., \"C-c C-z\". See the documentation -of `edmacro-mode' for details. - -COMMAND must be an interactive function or lambda form. - -KEYMAP, if present, should be a keymap variable or symbol. -For example: - - (bind-key \"M-h\" #\\='some-interactive-function my-mode-map) - - (bind-key \"M-h\" #\\='some-interactive-function \\='my-mode-map) - -If PREDICATE is non-nil, it is a form evaluated to determine when -a key should be bound. It must return non-nil in such cases. -Emacs can evaluate this form at any time that it does redisplay -or operates on menu data structures, so you should write it so it -can safely be called at any time. - -(fn KEY-NAME COMMAND &optional KEYMAP PREDICATE)" nil t) (autoload 'unbind-key "bind-key" "Unbind the given KEY-NAME, within the KEYMAP (if specified). -See `bind-key' for more details. - -(fn KEY-NAME &optional KEYMAP)" nil t) (autoload 'bind-key* "bind-key" "Similar to `bind-key', but overrides any mode-specific bindings. - -(fn KEY-NAME COMMAND &optional PREDICATE)" nil t) (autoload 'bind-keys "bind-key" "Bind multiple keys at once. - -Accepts keyword arguments: -:map MAP - a keymap into which the keybindings should be - added -:prefix KEY - prefix key for these bindings -:prefix-map MAP - name of the prefix map that should be created - for these bindings -:prefix-docstring STR - docstring for the prefix-map variable -:menu-name NAME - optional menu string for prefix map -:repeat-docstring STR - docstring for the repeat-map variable -:repeat-map MAP - name of the repeat map that should be created - for these bindings. If specified, the - `repeat-map' property of each command bound - (within the scope of the `:repeat-map' keyword) - is set to this map. -:exit BINDINGS - Within the scope of `:repeat-map' will bind the - key in the repeat map, but will not set the - `repeat-map' property of the bound command. -:continue BINDINGS - Within the scope of `:repeat-map' forces the - same behavior as if no special keyword had - been used (that is, the command is bound, and - it's `repeat-map' property set) -:continue-only BINDINGS - Within the scope of `:repeat-map', will make - the command continue but not enter the repeat - map, via the `repeat-continue' property -:filter FORM - optional form to determine when bindings apply - -The rest of the arguments are conses of keybinding string and a -function symbol (unquoted). - -(fn &rest ARGS)" nil t) (autoload 'bind-keys* "bind-key" "Bind multiple keys at once, in `override-global-map'. -Accepts the same keyword arguments as `bind-keys' (which see). - -This binds keys in such a way that bindings are not overridden by -other modes. See `override-global-mode'. - -(fn &rest ARGS)" nil t) (autoload 'describe-personal-keybindings "bind-key" "Display all the personal keybindings defined by `bind-key'." t) (register-definition-prefixes "bind-key" '("bind-key" "override-global-m")) (provide 'bind-key-autoloads)) "use-package" ((use-package-autoloads use-package use-package-pkg use-package-lint use-package-jump use-package-ensure use-package-ensure-system-package use-package-diminish use-package-delight use-package-core use-package-bind-key) (autoload 'use-package-autoload-keymap "use-package-bind-key" "Load PACKAGE and bind key sequence invoking this function to KEYMAP-SYMBOL. -Then simulate pressing the same key sequence a again, so that the -next key pressed is routed to the newly loaded keymap. - -This function supports use-package's :bind-keymap keyword. It -works by binding the given key sequence to an invocation of this -function for a particular keymap. The keymap is expected to be -defined by the package. In this way, loading the package is -deferred until the prefix key sequence is pressed. - -(fn KEYMAP-SYMBOL PACKAGE OVERRIDE)") (autoload 'use-package-normalize-binder "use-package-bind-key" " - -(fn NAME KEYWORD ARGS)") (defalias 'use-package-normalize/:bind 'use-package-normalize-binder) (defalias 'use-package-normalize/:bind* 'use-package-normalize-binder) (defalias 'use-package-autoloads/:bind 'use-package-autoloads-mode) (defalias 'use-package-autoloads/:bind* 'use-package-autoloads-mode) (autoload 'use-package-handler/:bind "use-package-bind-key" " - -(fn NAME KEYWORD ARGS REST STATE &optional BIND-MACRO)") (defalias 'use-package-normalize/:bind-keymap 'use-package-normalize-binder) (defalias 'use-package-normalize/:bind-keymap* 'use-package-normalize-binder) (autoload 'use-package-handler/:bind-keymap "use-package-bind-key" " - -(fn NAME KEYWORD ARGS REST STATE &optional OVERRIDE)") (autoload 'use-package-handler/:bind-keymap* "use-package-bind-key" " - -(fn NAME KEYWORD ARG REST STATE)") (register-definition-prefixes "use-package-bind-key" '("use-package-handler/:bind*")) (autoload 'use-package "use-package-core" "Declare an Emacs package by specifying a group of configuration options. - -For the full documentation, see Info node `(use-package) top'. -Usage: - - (use-package package-name - [:keyword [option]]...) - -:init Code to run before PACKAGE-NAME has been loaded. -:config Code to run after PACKAGE-NAME has been loaded. Note that - if loading is deferred for any reason, this code does not - execute until the lazy load has occurred. -:preface Code to be run before everything except `:disabled'; this - can be used to define functions for use in `:if', or that - should be seen by the byte-compiler. - -:mode Form to be added to `auto-mode-alist'. -:magic Form to be added to `magic-mode-alist'. -:magic-fallback Form to be added to `magic-fallback-mode-alist'. -:interpreter Form to be added to `interpreter-mode-alist'. - -:commands Define autoloads for commands defined by the package. - This is useful if the package is being lazily loaded, - and you wish to conditionally call functions in your - `:init' block that are defined in the package. -:autoload Similar to `:commands', but used for non-interactive functions. -:hook Specify hook(s) to attach this package to. - -:bind Bind keys, and define autoloads for the bound commands. -:bind* Bind keys, and define autoloads for the bound commands, - *overriding all minor mode bindings*. -:bind-keymap Bind a key prefix to an auto-loaded keymap defined in the - package. This is like `:bind', but for keymaps. -:bind-keymap* Like `:bind-keymap', but overrides all minor mode bindings - -:defer Defer loading of a package -- this is implied when using - `:commands', `:bind', `:bind*', `:mode', `:magic', `:hook', - `:magic-fallback', or `:interpreter'. This can be an integer, - to force loading after N seconds of idle time, if the package - has not already been loaded. -:demand Prevent the automatic deferred loading introduced by constructs - such as `:bind' (see `:defer' for the complete list). - -:after Delay the effect of the use-package declaration - until after the named libraries have loaded. - Before they have been loaded, no other keyword - has any effect at all, and once they have been - loaded it is as if `:after' was not specified. - -:if EXPR Initialize and load only if EXPR evaluates to a non-nil value. -:disabled The package is ignored completely if this keyword is present. -:defines Declare certain variables to silence the byte-compiler. -:functions Declare certain functions to silence the byte-compiler. -:load-path Add to the `load-path' before attempting to load the package. -:diminish Support for diminish.el (if installed). -:delight Support for delight.el (if installed). -:custom Call `customize-set-variable' on each variable - definition without modifying the Emacs `custom-file'. - (compare with `custom-set-variables'). -:custom-face Call `face-spec-set' with each face definition. -:ensure Loads the package using package.el if necessary. -:pin Pin the package to an archive. -:vc Install the package directly from a version control system - (using `package-vc.el'). - -(fn NAME &rest ARGS)" nil t) (function-put 'use-package 'lisp-indent-function 'defun) (register-definition-prefixes "use-package-core" '("use-package-")) (autoload 'use-package-normalize/:delight "use-package-delight" "Normalize arguments to delight. - -(fn NAME KEYWORD ARGS)") (autoload 'use-package-handler/:delight "use-package-delight" " - -(fn NAME KEYWORD ARGS REST STATE)") (register-definition-prefixes "use-package-delight" '("use-package-normalize-delight")) (autoload 'use-package-normalize/:diminish "use-package-diminish" " - -(fn NAME KEYWORD ARGS)") (autoload 'use-package-handler/:diminish "use-package-diminish" " - -(fn NAME KEYWORD ARG REST STATE)") (register-definition-prefixes "use-package-diminish" '("use-package-normalize-diminish")) (autoload 'use-package-normalize/:ensure "use-package-ensure" " - -(fn NAME KEYWORD ARGS)") (autoload 'use-package-handler/:ensure "use-package-ensure" " - -(fn NAME KEYWORD ENSURE REST STATE)") (register-definition-prefixes "use-package-ensure" '("use-package-")) (autoload 'use-package-normalize/:ensure-system-package "use-package-ensure-system-package" "Turn ARGS into a list of conses of the form (PACKAGE-NAME . INSTALL-COMMAND). - -(fn NAME-SYMBOL KEYWORD ARGS)") (autoload 'use-package-handler/:ensure-system-package "use-package-ensure-system-package" "Execute the handler for `:ensure-system-package' keyword in `use-package'. - -(fn NAME KEYWORD ARG REST STATE)") (register-definition-prefixes "use-package-ensure-system-package" '("use-package-ensure-system-package-")) (autoload 'use-package-jump-to-package-form "use-package-jump" "Attempt to find and jump to the `use-package' form that loaded PACKAGE. -This will only find the form if that form actually required -PACKAGE. If PACKAGE was previously required then this function -will jump to the file that originally required PACKAGE instead. - -(fn PACKAGE)" t) (register-definition-prefixes "use-package-jump" '("use-package-find-require")) (autoload 'use-package-lint "use-package-lint" "Check for errors in `use-package' declarations. -For example, if the module's `:if' condition is met, but even -with the specified `:load-path' the module cannot be found." t) (register-definition-prefixes "use-package-lint" '("use-package-lint-declaration")) (provide 'use-package-autoloads)) "diminish" ((diminish-autoloads diminish diminish-pkg) (autoload 'diminish "diminish" "Diminish mode-line display of minor mode MODE to TO-WHAT (default \"\"). - -Interactively, enter (with completion) the name of any minor mode, followed -on the next line by what you want it diminished to (default empty string). -The response to neither prompt should be quoted. However, in Lisp code, -both args must be quoted, the first as a symbol, the second as a string, -as in (diminish \\='jiggle-mode \" Jgl\"). - -The mode-line displays of minor modes usually begin with a space, so -the modes' names appear as separate words on the mode line. However, if -you're having problems with a cramped mode line, you may choose to use single -letters for some modes, without leading spaces. Capitalizing them works -best; if you then diminish some mode to \"X\" but have `abbrev-mode' enabled as -well, you'll get a display like \"AbbrevX\". This function prepends a space -to TO-WHAT if it's > 1 char long & doesn't already begin with a space. - -(fn MODE &optional TO-WHAT)" t) (autoload 'diminish-undo "diminish" "Restore mode-line display of diminished mode MODE to its minor-mode value. -Do nothing if the arg is a minor mode that hasn't been diminished. - -Interactively, enter (with completion) the name of any diminished mode (a -mode that was formerly a minor mode on which you invoked \\[diminish]). -To restore all diminished modes to minor status, answer `diminished-modes'. -The response to the prompt shouldn't be quoted. However, in Lisp code, -the arg must be quoted as a symbol, as in (diminish-undo \\='diminished-modes). - -(fn MODE)" t) (autoload 'diminished-modes "diminish" "Echo all active diminished or minor modes as if they were minor. -The display goes in the echo area; if it's too long even for that, -you can see the whole thing in the *Messages* buffer. -This doesn't change the status of any modes; it just lets you see -what diminished modes would be on the mode-line if they were still minor." t) (register-definition-prefixes "diminish" '("diminish")) (provide 'diminish-autoloads)) "goto-chg" ((goto-chg-autoloads goto-chg) (autoload 'goto-last-change "goto-chg" "Go to the point where the last edit was made in the current buffer. -Repeat the command to go to the second last edit, etc. - -To go back to more recent edit, the reverse of this command, use \\[goto-last-change-reverse] -or precede this command with \\[universal-argument] - (minus). - -It does not go to the same point twice even if there has been many edits -there. I call the minimal distance between distinguishable edits \"span\". -Set variable `glc-default-span' to control how close is \"the same point\". -Default span is 8. -The span can be changed temporarily with \\[universal-argument] right before \\[goto-last-change]: -\\[universal-argument] <NUMBER> set current span to that number, -\\[universal-argument] (no number) multiplies span by 4, starting with default. -The so set span remains until it is changed again with \\[universal-argument], or the consecutive -repetition of this command is ended by any other command. - -When span is zero (i.e. \\[universal-argument] 0) subsequent \\[goto-last-change] visits each and -every point of edit and a message shows what change was made there. -In this case it may go to the same point twice. - -This command uses undo information. If undo is disabled, so is this command. -At times, when undo information becomes too large, the oldest information is -discarded. See variable `undo-limit'. - -(fn ARG)" t) (autoload 'goto-last-change-reverse "goto-chg" "Go back to more recent changes after \\[goto-last-change] have been used. -See `goto-last-change' for use of prefix argument. - -(fn ARG)" t) (register-definition-prefixes "goto-chg" '("glc-")) (provide 'goto-chg-autoloads)) "evil" ((evil-autoloads evil evil-vars evil-types evil-test-helpers evil-states evil-search evil-repeat evil-maps evil-macros evil-keybindings evil-jumps evil-integration evil-ex evil-digraphs evil-development evil-core evil-common evil-commands evil-command-window) (register-definition-prefixes "evil-command-window" '("evil-")) (register-definition-prefixes "evil-commands" '("evil-")) (register-definition-prefixes "evil-common" '("bounds-of-evil-" "evil-" "forward-evil-")) (autoload 'evil-mode "evil" nil t) (register-definition-prefixes "evil-core" '("evil-" "turn-o")) (autoload 'evil-digraph "evil-digraphs" "Convert DIGRAPH to character or list representation. -If DIGRAPH is a list (CHAR1 CHAR2), return the corresponding character; -if DIGRAPH is a character, return the corresponding list. -Searches in `evil-digraphs-table-user' and `evil-digraphs-table'. - -(fn DIGRAPH)") (register-definition-prefixes "evil-digraphs" '("evil-digraphs-table")) (register-definition-prefixes "evil-ex" '("evil-")) (register-definition-prefixes "evil-integration" '("evil-")) (register-definition-prefixes "evil-jumps" '("evil-")) (register-definition-prefixes "evil-keybindings" '("evil--set-motion-state")) (register-definition-prefixes "evil-macros" '("evil-")) (register-definition-prefixes "evil-maps" '("evil-")) (register-definition-prefixes "evil-repeat" '("evil-")) (register-definition-prefixes "evil-search" '("evil-")) (register-definition-prefixes "evil-states" '("evil-")) (register-definition-prefixes "evil-test-helpers" '("evil-")) (register-definition-prefixes "evil-types" '("evil-ex-get-optional-register-and-count")) (register-definition-prefixes "evil-vars" '("evil-")) (provide 'evil-autoloads)) "annalist" ((annalist-autoloads annalist) (autoload 'annalist-record "annalist" "In the store for ANNALIST, TYPE, and LOCAL, record RECORD. -ANNALIST should correspond to the package/user recording this information (e.g. -'general, 'me, etc.). TYPE is the type of information being recorded (e.g. -'keybindings). LOCAL corresponds to whether to store RECORD only for the current -buffer. This information together is used to select where RECORD should be -stored in and later retrieved from with `annalist-describe'. RECORD should be a -list of items to record and later print as org headings and column entries in a -single row. If PLIST is non-nil, RECORD should be a plist instead of an ordered -list (e.g. '(keymap org-mode-map key \"C-c a\" ...)). The plist keys should be -the symbols used for the definition of TYPE. - -(fn ANNALIST TYPE RECORD &key LOCAL PLIST)") (autoload 'annalist-describe "annalist" "Describe information recorded by ANNALIST for TYPE. -For example: (annalist-describe 'general 'keybindings) If VIEW is non-nil, use -those settings for displaying recorded information instead of the defaults. - -(fn ANNALIST TYPE &optional VIEW)") (register-definition-prefixes "annalist" '("annalist-")) (provide 'annalist-autoloads)) "evil-collection" ((evil-collection-autoloads evil-collection) (autoload 'evil-collection-translate-minor-mode-key "evil-collection" "Translate keys in the keymap(s) corresponding to STATES and MODES. - -Similar to `evil-collection-translate-key' but for minor modes. -STATES should be the name of an evil state, a list of states, or nil. MODES -should be a symbol corresponding to minor-mode to make the translations in or a -list of minor-mode symbols. TRANSLATIONS corresponds to a list of -key replacement pairs. For example, specifying \"a\" \"b\" will bind \"a\" to -\"b\"'s definition in the keymap. Specifying nil as a replacement will unbind a -key. If DESTRUCTIVE is nil, a backup of the keymap will be stored on the initial -invocation, and future invocations will always look up keys in the backup -keymap. When no TRANSLATIONS are given, this function will only create the -backup keymap without making any translations. On the other hand, if DESTRUCTIVE -is non-nil, the keymap will be destructively altered without creating a backup. -For example, calling this function multiple times with \"a\" \"b\" \"b\" \"a\" -would continue to swap and unswap the definitions of these keys. This means that -when DESTRUCTIVE is non-nil, all related swaps/cycles should be done in the same -invocation. - -(fn STATES MODES &rest TRANSLATIONS &key DESTRUCTIVE &allow-other-keys)") (function-put 'evil-collection-translate-minor-mode-key 'lisp-indent-function 'defun) (autoload 'evil-collection-translate-key "evil-collection" "Translate keys in the keymap(s) corresponding to STATES and KEYMAPS. -STATES should be the name of an evil state, a list of states, or nil. KEYMAPS -should be a symbol corresponding to the keymap to make the translations in or a -list of keymap symbols. Like `evil-define-key', when a keymap does not exist, -the keybindings will be deferred until the keymap is defined, so -`with-eval-after-load' is not necessary. TRANSLATIONS corresponds to a list of -key replacement pairs. For example, specifying \"a\" \"b\" will bind \"a\" to -\"b\"'s definition in the keymap. Specifying nil as a replacement will unbind a -key. If DESTRUCTIVE is nil, a backup of the keymap will be stored on the initial -invocation, and future invocations will always look up keys in the backup -keymap. When no TRANSLATIONS are given, this function will only create the -backup keymap without making any translations. On the other hand, if DESTRUCTIVE -is non-nil, the keymap will be destructively altered without creating a backup. -For example, calling this function multiple times with \"a\" \"b\" \"b\" \"a\" -would continue to swap and unswap the definitions of these keys. This means that -when DESTRUCTIVE is non-nil, all related swaps/cycles should be done in the same -invocation. - -(fn STATES KEYMAPS &rest TRANSLATIONS &key DESTRUCTIVE &allow-other-keys)") (function-put 'evil-collection-translate-key 'lisp-indent-function 'defun) (autoload 'evil-collection-swap-key "evil-collection" "Wrapper around `evil-collection-translate-key' for swapping keys. -STATES, KEYMAPS, and ARGS are passed to `evil-collection-translate-key'. ARGS -should consist of key swaps (e.g. \"a\" \"b\" is equivalent to \"a\" \"b\" \"b\" -\"a\" with `evil-collection-translate-key') and optionally keyword arguments for -`evil-collection-translate-key'. - -(fn STATES KEYMAPS &rest ARGS)" nil t) (function-put 'evil-collection-swap-key 'lisp-indent-function 'defun) (autoload 'evil-collection-swap-minor-mode-key "evil-collection" "Wrapper around `evil-collection-translate-minor-mode-key' for swapping keys. -STATES, MODES, and ARGS are passed to -`evil-collection-translate-minor-mode-key'. ARGS should consist of key swaps -(e.g. \"a\" \"b\" is equivalent to \"a\" \"b\" \"b\" \"a\" -with `evil-collection-translate-minor-mode-key') and optionally keyword -arguments for `evil-collection-translate-minor-mode-key'. - -(fn STATES MODES &rest ARGS)" nil t) (function-put 'evil-collection-swap-minor-mode-key 'lisp-indent-function 'defun) (autoload 'evil-collection-require "evil-collection" "Require the evil-collection-MODE file, but do not activate it. - -MODE should be a symbol. This requires the evil-collection-MODE -feature without needing to manipulate `load-path'. NOERROR is -forwarded to `require'. - -(fn MODE &optional NOERROR)") (autoload 'evil-collection-init "evil-collection" "Register the Evil bindings for all modes in `evil-collection-mode-list'. - -Alternatively, you may register select bindings manually, for -instance: - - (with-eval-after-load ='calendar - (evil-collection-calendar-setup)) - -If MODES is specified (as either one mode or a list of modes), use those modes -instead of the modes in `evil-collection-mode-list'. - -(fn &optional MODES)" t) (register-definition-prefixes "evil-collection" '("evil-collection-")) (provide 'evil-collection-autoloads)) "ultra-scroll" ((ultra-scroll-autoloads ultra-scroll) (defvar ultra-scroll-mode nil "Non-nil if Ultra-Scroll mode is enabled. -See the `ultra-scroll-mode' command -for a description of this minor mode. -Setting this variable directly does not take effect; -either customize it (see the info node `Easy Customization') -or call the function `ultra-scroll-mode'.") (custom-autoload 'ultra-scroll-mode "ultra-scroll" nil) (autoload 'ultra-scroll-mode "ultra-scroll" "Toggle pixel precision scrolling. - -When enabled, this minor mode scrolls the display precisely using -full trackpad or modern mouse capabilities. It correctly scrolls -past images taller than the window height. The mode enables -`pixel-scroll-precision-mode-map', overriding that mode's scroll -command, but other mode features, including interpolated page -scrolling, still function (if enabled). - -Note that `ultra-scroll' does NOT do any interpolation of scroll -wheel data, and is intended for use with mouse/trackpad hardware -on systems providing pixel-level scroll data; see -`ultra-scroll-check' to investigate what kind of scrolling data -your system and hardware provide. - -This is a global minor mode. If called interactively, toggle the -`Ultra-Scroll mode' mode. If the prefix argument is positive, enable -the mode, and if it is zero or negative, disable the mode. - -If called from Lisp, toggle the mode if ARG is `toggle'. Enable the -mode if ARG is nil, omitted, or is a positive number. Disable the mode -if ARG is a negative number. - -To check whether the minor mode is enabled in the current buffer, -evaluate `(default-value \\='ultra-scroll-mode)'. - -The mode's hook is called both when the mode is enabled and when it is -disabled. - -(fn &optional ARG)" t) (register-definition-prefixes "ultra-scroll" '("ultra-scroll")) (provide 'ultra-scroll-autoloads)) "go-mode" ((go-mode-autoloads go-rename go-mode go-guru) (autoload 'go-guru-set-scope "go-guru" "Set the scope for the Go guru, prompting the user to edit the previous scope. - -The scope restricts analysis to the specified packages. -Its value is a comma-separated list of patterns of these forms: - golang.org/x/tools/cmd/guru # a single package - golang.org/x/tools/... # all packages beneath dir - ... # the entire workspace. - -A pattern preceded by '-' is negative, so the scope - encoding/...,-encoding/xml -matches all encoding packages except encoding/xml." t) (autoload 'go-guru-callees "go-guru" "Show possible callees of the function call at the current point." t) (autoload 'go-guru-callers "go-guru" "Show the set of callers of the function containing the current point." t) (autoload 'go-guru-callstack "go-guru" "Show an arbitrary path from a root of the call graph to the -function containing the current point." t) (autoload 'go-guru-definition "go-guru" "Jump to the definition of the selected identifier. - -(fn &optional OTHER-WINDOW)" t) (autoload 'go-guru-definition-other-window "go-guru" "Jump to the defintion of the selected identifier in another window" t) (autoload 'go-guru-describe "go-guru" "Describe the selected syntax, its kind, type and methods." t) (autoload 'go-guru-pointsto "go-guru" "Show what the selected expression points to." t) (autoload 'go-guru-implements "go-guru" "Describe the 'implements' relation for types in the package -containing the current point." t) (autoload 'go-guru-freevars "go-guru" "Enumerate the free variables of the current selection." t) (autoload 'go-guru-peers "go-guru" "Enumerate the set of possible corresponding sends/receives for -this channel receive/send operation." t) (autoload 'go-guru-referrers "go-guru" "Enumerate all references to the object denoted by the selected -identifier." t) (autoload 'go-guru-whicherrs "go-guru" "Show globals, constants and types to which the selected -expression (of type 'error') may refer." t) (autoload 'go-guru-unhighlight-identifiers "go-guru" "Remove highlights from previously highlighted identifier.") (autoload 'go-guru-hl-identifier "go-guru" "Highlight all instances of the identifier under point. Removes -highlights from previously highlighted identifier." t) (autoload 'go-guru-hl-identifier-mode "go-guru" "Highlight instances of the identifier at point after a short - -timeout. - -This is a minor mode. If called interactively, toggle the -`Go-Guru-Hl-Identifier mode' mode. If the prefix argument is positive, -enable the mode, and if it is zero or negative, disable the mode. - -If called from Lisp, toggle the mode if ARG is `toggle'. Enable the -mode if ARG is nil, omitted, or is a positive number. Disable the mode -if ARG is a negative number. - -To check whether the minor mode is enabled in the current buffer, -evaluate the variable `go-guru-hl-identifier-mode'. - -The mode's hook is called both when the mode is enabled and when it is -disabled. - -(fn &optional ARG)" t) (register-definition-prefixes "go-guru" '("go-guru-")) (autoload 'go-mode "go-mode" "Major mode for editing Go source text. - -This mode provides (not just) basic editing capabilities for -working with Go code. It offers almost complete syntax -highlighting, indentation that is almost identical to gofmt and -proper parsing of the buffer content to allow features such as -navigation by function, manipulation of comments or detection of -strings. - -In addition to these core features, it offers various features to -help with writing Go code. You can directly run buffer content -through gofmt, read godoc documentation from within Emacs, modify -and clean up the list of package imports or interact with the -Playground (uploading and downloading pastes). - -The following extra functions are defined: - -- `gofmt' -- `godoc' and `godoc-at-point' -- `go-import-add' -- `go-goto-arguments' -- `go-goto-docstring' -- `go-goto-function' -- `go-goto-function-name' -- `go-goto-imports' -- `go-goto-return-values' -- `go-goto-method-receiver' -- `go-play-buffer' and `go-play-region' -- `go-download-play' -- `godef-describe' and `godef-jump' -- `go-coverage' - -If you want to automatically run `gofmt' before saving a file, -add the following hook to your Emacs configuration: - -(add-hook 'before-save-hook #'gofmt-before-save) - -If you want to use `godef-jump' instead of etags (or similar), -consider binding godef-jump to `M-.', which is the default key -for `find-tag': - -(add-hook 'go-mode-hook (lambda () - (local-set-key (kbd \"M-.\") #'godef-jump))) - -Please note that godef is an external dependency. You can install -it with - -go get github.com/rogpeppe/godef - - -If you're looking for even more integration with Go, namely -on-the-fly syntax checking, auto-completion and snippets, it is -recommended that you look at flycheck -(see URL `https://github.com/flycheck/flycheck') or flymake in combination -with goflymake (see URL `https://github.com/dougm/goflymake'), gocode -(see URL `https://github.com/nsf/gocode'), go-eldoc -(see URL `github.com/syohex/emacs-go-eldoc') and yasnippet-go -(see URL `https://github.com/dominikh/yasnippet-go') - -(fn)" t) (add-to-list 'auto-mode-alist (cons "\\.go\\'" 'go-mode)) (autoload 'gofmt-before-save "go-mode" "Add this to .emacs to run gofmt on the current buffer when saving: -(add-hook 'before-save-hook 'gofmt-before-save). - -Note that this will cause ‘go-mode’ to get loaded the first time -you save any file, kind of defeating the point of autoloading." t) (autoload 'godoc "go-mode" "Show Go documentation for QUERY, much like \\<go-mode-map>\\[man]. - -(fn QUERY)" t) (autoload 'go-download-play "go-mode" "Download a paste from the playground and insert it in a Go buffer. -Tries to look for a URL at point. - -(fn URL)" t) (autoload 'go-dot-mod-mode "go-mode" "A major mode for editing go.mod files. - -(fn)" t) (add-to-list 'auto-mode-alist '("go\\.mod\\'" . go-dot-mod-mode)) (autoload 'go-dot-work-mode "go-mode" "A major mode for editor go.work files. - -(fn)" t) (add-to-list 'auto-mode-alist '("go\\.work\\'" . go-dot-work-mode)) (autoload 'go-asm-mode "go-mode" "Major mode for Go assembly (.s) files. - -(fn)" t) (add-to-list 'magic-mode-alist (cons #'go--is-go-asm #'go-asm-mode)) (autoload 'go--is-go-asm "go-mode" "Determine whether a file is (probably) a Go assembly file.") (register-definition-prefixes "go-mode" '("go-" "god" "gofmt")) (autoload 'go-rename "go-rename" "Rename the entity denoted by the identifier at point, using -the `gorename' tool. With FORCE, call `gorename' with the -`-force' flag. - -(fn NEW-NAME &optional FORCE)" t) (register-definition-prefixes "go-rename" '("go-")) (provide 'go-mode-autoloads)) "rust-mode" ((rust-mode-autoloads rust-utils rust-rustfmt rust-prog-mode rust-playpen rust-mode rust-mode-treesitter rust-compile rust-common rust-cargo) (register-definition-prefixes "rust-cargo" '("rust-")) (register-definition-prefixes "rust-common" '("rust-")) (register-definition-prefixes "rust-compile" '("cargo-compilation-regexps" "rustc-")) (autoload 'rust-mode "rust-mode" "Major mode for Rust code." t) (add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode)) (register-definition-prefixes "rust-mode" '("rust-")) (register-definition-prefixes "rust-playpen" '("rust-")) (register-definition-prefixes "rust-prog-mode" '("rust-")) (register-definition-prefixes "rust-rustfmt" '("rust-")) (autoload 'rust-dbg-wrap-or-unwrap "rust-utils" "Either remove or add the dbg! macro." t) (register-definition-prefixes "rust-utils" '("rust-")) (provide 'rust-mode-autoloads)) "seq" ((seq-autoloads seq seq-pkg seq-25 seq-24) (register-definition-prefixes "seq-24" '("seq")) (autoload 'seq-subseq "seq-25" "Return the sequence of elements of SEQUENCE from START to END. -END is exclusive. - -If END is omitted, it defaults to the length of the sequence. If -START or END is negative, it counts from the end. Signal an -error if START or END are outside of the sequence (i.e too large -if positive or too small if negative). - -(fn SEQUENCE START &optional END)") (autoload 'seq-take "seq-25" "Return the sequence made of the first N elements of SEQUENCE. -The result is a sequence of the same type as SEQUENCE. - -If N is a negative integer or zero, an empty sequence is -returned. - -(fn SEQUENCE N)") (autoload 'seq-sort-by "seq-25" "Sort SEQUENCE transformed by FUNCTION using PRED as the comparison function. -Elements of SEQUENCE are transformed by FUNCTION before being -sorted. FUNCTION must be a function of one argument. - -(fn FUNCTION PRED SEQUENCE)") (autoload 'seq-filter "seq-25" "Return a list of all the elements in SEQUENCE for which PRED returns non-nil. - -(fn PRED SEQUENCE)") (autoload 'seq-remove "seq-25" "Return a list of all the elements in SEQUENCE for which PRED returns nil. - -(fn PRED SEQUENCE)") (autoload 'seq-remove-at-position "seq-25" "Return a copy of SEQUENCE with the element at index N removed. - -N is the (zero-based) index of the element that should not be in -the result. - -The result is a sequence of the same type as SEQUENCE. - -(fn SEQUENCE N)") (autoload 'seq-reduce "seq-25" "Reduce the function FUNCTION across SEQUENCE, starting with INITIAL-VALUE. - -Return the result of calling FUNCTION with INITIAL-VALUE and the -first element of SEQUENCE, then calling FUNCTION with that result -and the second element of SEQUENCE, then with that result and the -third element of SEQUENCE, etc. FUNCTION will be called with -INITIAL-VALUE (and then the accumulated value) as the first -argument, and the elements from SEQUENCE as the second argument. - -If SEQUENCE is empty, return INITIAL-VALUE and FUNCTION is not called. - -(fn FUNCTION SEQUENCE INITIAL-VALUE)") (autoload 'seq-every-p "seq-25" "Return non-nil if PRED returns non-nil for all the elements of SEQUENCE. - -(fn PRED SEQUENCE)") (autoload 'seq-some "seq-25" "Return non-nil if PRED returns non-nil for at least one element of SEQUENCE. -If the value is non-nil, it is the first non-nil value returned by PRED. - -(fn PRED SEQUENCE)") (autoload 'seq-find "seq-25" "Return the first element in SEQUENCE for which PRED returns non-nil. -If no such element is found, return DEFAULT. - -Note that `seq-find' has an ambiguity if the found element is -identical to DEFAULT, as in that case it is impossible to know -whether an element was found or not. - -(fn PRED SEQUENCE &optional DEFAULT)") (autoload 'seq-position "seq-25" "Return the (zero-based) index of the first element in SEQUENCE \"equal\" to ELT. -\"Equality\" is defined by the function TESTFN, which defaults to `equal'. - -(fn SEQUENCE ELT &optional TESTFN)") (autoload 'seq-positions "seq-25" "Return list of indices of SEQUENCE elements for which TESTFN returns non-nil. - -TESTFN is a two-argument function which is called with each element of -SEQUENCE as the first argument and ELT as the second. -TESTFN defaults to `equal'. - -The result is a list of (zero-based) indices. - -(fn SEQUENCE ELT &optional TESTFN)") (autoload 'seq-uniq "seq-25" "Return a list of the elements of SEQUENCE with duplicates removed. -TESTFN is used to compare elements, and defaults to `equal'. - -(fn SEQUENCE &optional TESTFN)") (autoload 'seq-union "seq-25" "Return a list of all the elements that appear in either SEQUENCE1 or SEQUENCE2. -\"Equality\" of elements is defined by the function TESTFN, which -defaults to `equal'. - -(fn SEQUENCE1 SEQUENCE2 &optional TESTFN)") (autoload 'seq-intersection "seq-25" "Return a list of all the elements that appear in both SEQUENCE1 and SEQUENCE2. -\"Equality\" of elements is defined by the function TESTFN, which -defaults to `equal'. - -(fn SEQUENCE1 SEQUENCE2 &optional TESTFN)") (autoload 'seq-group-by "seq-25" "Apply FUNCTION to each element of SEQUENCE. -Separate the elements of SEQUENCE into an alist using the results as -keys. Keys are compared using `equal'. - -(fn FUNCTION SEQUENCE)") (autoload 'seq-max "seq-25" "Return the largest element of SEQUENCE. -SEQUENCE must be a sequence of numbers or markers. - -(fn SEQUENCE)") (autoload 'seq-random-elt "seq-25" "Return a randomly chosen element from SEQUENCE. -Signal an error if SEQUENCE is empty. - -(fn SEQUENCE)") (register-definition-prefixes "seq-25" '("seq-")) (provide 'seq-autoloads)) "compat" ((compat-autoloads compat compat-pkg compat-macs compat-30 compat-29 compat-28 compat-27 compat-26 compat-25) (register-definition-prefixes "compat" '("compat-")) (register-definition-prefixes "compat-macs" '("compat-")) (provide 'compat-autoloads)) "nerd-icons" ((nerd-icons-autoloads nerd-icons nerd-icons-faces) (autoload 'nerd-icons-install-fonts "nerd-icons" "Helper function to download and install the latests fonts based on OS. -The provided Nerd Font is Symbols Nerd Font Mono. -When PFX is non-nil, ignore the prompt and just install - -(fn &optional PFX)" t) (autoload 'nerd-icons-insert "nerd-icons" "Interactive icon insertion function. -When Prefix ARG is non-nil, insert the propertized icon. -When GLYPH-SET is non-nil, limit the candidates to the icon set matching it. - -(fn &optional ARG GLYPH-SET)" t) (autoload 'nerd-icons-icon-for-dir "nerd-icons" "Get the formatted icon for DIR. -ARG-OVERRIDES should be a plist containining `:height', -`:v-adjust' or `:face' properties like in the normal icon -inserting functions. -Note: You want chevron, please use `nerd-icons-icon-for-dir-with-chevron'. - -(fn DIR &rest ARG-OVERRIDES)") (autoload 'nerd-icons-icon-for-file "nerd-icons" "Get the formatted icon for FILE. -ARG-OVERRIDES should be a plist containining `:height', -`:v-adjust' or `:face' properties like in the normal icon -inserting functions. - -(fn FILE &rest ARG-OVERRIDES)") (autoload 'nerd-icons-icon-for-mode "nerd-icons" "Get the formatted icon for MODE. -ARG-OVERRIDES should be a plist containining `:height', -`:v-adjust' or `:face' properties like in the normal icon -inserting functions. - -(fn MODE &rest ARG-OVERRIDES)") (autoload 'nerd-icons-icon-for-url "nerd-icons" "Get the formatted icon for URL. -If an icon for URL isn't found in `nerd-icons-url-alist', a globe is used. -ARG-OVERRIDES should be a plist containining `:height', -`:v-adjust' or `:face' properties like in the normal icon -inserting functions. - -(fn URL &rest ARG-OVERRIDES)") (autoload 'nerd-icons-icon-for-buffer "nerd-icons" "Get the formatted icon for the current buffer. - -This function prioritises the use of the buffers file extension to -discern the icon when its `major-mode' matches its auto mode, -otherwise it will use the buffers `major-mode' to decide its -icon.") (register-definition-prefixes "nerd-icons" '("nerd-icons-")) (provide 'nerd-icons-autoloads)) "s" ((s-autoloads s) (register-definition-prefixes "s" '("s-")) (provide 's-autoloads)) "dash" ((dash-autoloads dash dash-pkg dash-functional \.dir-locals) (autoload 'dash-fontify-mode "dash" "Toggle fontification of Dash special variables. - -Dash-Fontify mode is a buffer-local minor mode intended for Emacs -Lisp buffers. Enabling it causes the special variables bound in -anaphoric Dash macros to be fontified. These anaphoras include -`it', `it-index', `acc', and `other'. In older Emacs versions -which do not dynamically detect macros, Dash-Fontify mode -additionally fontifies Dash macro calls. - -See also `dash-fontify-mode-lighter' and -`global-dash-fontify-mode'. - -This is a minor mode. If called interactively, toggle the `Dash-Fontify -mode' mode. If the prefix argument is positive, enable the mode, and if -it is zero or negative, disable the mode. - -If called from Lisp, toggle the mode if ARG is `toggle'. Enable the -mode if ARG is nil, omitted, or is a positive number. Disable the mode -if ARG is a negative number. - -To check whether the minor mode is enabled in the current buffer, -evaluate the variable `dash-fontify-mode'. - -The mode's hook is called both when the mode is enabled and when it is -disabled. - -(fn &optional ARG)" t) (put 'global-dash-fontify-mode 'globalized-minor-mode t) (defvar global-dash-fontify-mode nil "Non-nil if Global Dash-Fontify mode is enabled. -See the `global-dash-fontify-mode' command -for a description of this minor mode. -Setting this variable directly does not take effect; -either customize it (see the info node `Easy Customization') -or call the function `global-dash-fontify-mode'.") (custom-autoload 'global-dash-fontify-mode "dash" nil) (autoload 'global-dash-fontify-mode "dash" "Toggle Dash-Fontify mode in all buffers. -With prefix ARG, enable Global Dash-Fontify mode if ARG is positive; -otherwise, disable it. - -If called from Lisp, toggle the mode if ARG is `toggle'. -Enable the mode if ARG is nil, omitted, or is a positive number. -Disable the mode if ARG is a negative number. - -Dash-Fontify mode is enabled in all buffers where -`dash--turn-on-fontify-mode' would do it. - -See `dash-fontify-mode' for more information on Dash-Fontify mode. - -(fn &optional ARG)" t) (autoload 'dash-register-info-lookup "dash" "Register the Dash Info manual with `info-lookup-symbol'. -This allows Dash symbols to be looked up with \\[info-lookup-symbol]." t) (register-definition-prefixes "dash" '("!cdr" "!cons" "--" "->" "-a" "-butlast" "-c" "-d" "-e" "-f" "-gr" "-i" "-juxt" "-keep" "-l" "-m" "-no" "-o" "-p" "-r" "-s" "-t" "-u" "-value-to-list" "-when-let" "-zip" "dash-")) (provide 'dash-autoloads)) "f" ((f-autoloads f f-shortdoc) (register-definition-prefixes "f" '("f-")) (provide 'f-autoloads)) "shrink-path" ((shrink-path-autoloads shrink-path) (register-definition-prefixes "shrink-path" '("shrink-path-")) (provide 'shrink-path-autoloads)) "doom-modeline" ((doom-modeline-autoloads doom-modeline doom-modeline-segments doom-modeline-env doom-modeline-core) (autoload 'doom-modeline-set-main-modeline "doom-modeline" "Set main mode-line. -If DEFAULT is non-nil, set the default mode-line for all buffers. - -(fn &optional DEFAULT)") (defvar doom-modeline-mode nil "Non-nil if Doom-Modeline mode is enabled. -See the `doom-modeline-mode' command -for a description of this minor mode. -Setting this variable directly does not take effect; -either customize it (see the info node `Easy Customization') -or call the function `doom-modeline-mode'.") (custom-autoload 'doom-modeline-mode "doom-modeline" nil) (autoload 'doom-modeline-mode "doom-modeline" "Toggle `doom-modeline' on or off. - -This is a global minor mode. If called interactively, toggle the -`Doom-Modeline mode' mode. If the prefix argument is positive, enable -the mode, and if it is zero or negative, disable the mode. - -If called from Lisp, toggle the mode if ARG is `toggle'. Enable the -mode if ARG is nil, omitted, or is a positive number. Disable the mode -if ARG is a negative number. - -To check whether the minor mode is enabled in the current buffer, -evaluate `(default-value \\='doom-modeline-mode)'. - -The mode's hook is called both when the mode is enabled and when it is -disabled. - -(fn &optional ARG)" t) (register-definition-prefixes "doom-modeline" '("doom-modeline-")) (register-definition-prefixes "doom-modeline-core" '("doom-modeline")) (autoload 'doom-modeline-env-setup-python "doom-modeline-env") (autoload 'doom-modeline-env-setup-ruby "doom-modeline-env") (autoload 'doom-modeline-env-setup-perl "doom-modeline-env") (autoload 'doom-modeline-env-setup-go "doom-modeline-env") (autoload 'doom-modeline-env-setup-elixir "doom-modeline-env") (autoload 'doom-modeline-env-setup-rust "doom-modeline-env") (register-definition-prefixes "doom-modeline-env" '("doom-modeline-")) (register-definition-prefixes "doom-modeline-segments" '("doom-modeline-")) (provide 'doom-modeline-autoloads)))) - -#s(hash-table test eq data (org-elpa #s(hash-table test equal data (version (16 "https://github.com/emacs-straight/org-mode.git") "use-package" nil "bind-key" nil "diminish" nil "evil" nil "cl-lib" nil "goto-chg" nil "evil-collection" nil "annalist" nil "ultra-scroll" nil "go-mode" nil "rust-mode" nil "doom-modeline" nil "compat" nil "seq" nil "nerd-icons" nil "shrink-path" nil "s" nil "dash" nil "f" nil)) melpa #s(hash-table test equal data (version 3 "use-package" nil "bind-key" nil "diminish" nil "evil" nil "cl-lib" nil "goto-chg" nil "evil-collection" nil "annalist" nil "ultra-scroll" nil "go-mode" nil "rust-mode" nil "doom-modeline" nil "compat" nil "seq" nil "nerd-icons" nil "shrink-path" nil "s" nil "dash" nil "f" nil)) gnu-elpa-mirror #s(hash-table test equal data (version 3 "use-package" (use-package :type git :host github :repo "emacs-straight/use-package" :files ("*" (:exclude ".git"))) "bind-key" (bind-key :type git :host github :repo "emacs-straight/bind-key" :files ("*" (:exclude ".git"))) "diminish" (diminish :type git :host github :repo "emacs-straight/diminish" :files ("*" (:exclude ".git"))) "evil" nil "cl-lib" nil "goto-chg" nil "evil-collection" nil "annalist" nil "ultra-scroll" nil "go-mode" nil "rust-mode" nil "doom-modeline" nil "compat" (compat :type git :host github :repo "emacs-straight/compat" :files ("*" (:exclude ".git"))) "seq" (seq :type git :host github :repo "emacs-straight/seq" :files ("*" (:exclude ".git"))) "nerd-icons" nil "shrink-path" nil "s" nil "dash" (dash :type git :host github :repo "emacs-straight/dash" :files ("*" (:exclude ".git"))) "f" nil)) nongnu-elpa #s(hash-table test equal data (version (5 "https://github.com/emacsmirror/nongnu_elpa.git") "evil" (evil :repo "https://github.com/emacs-evil/evil" :files (:defaults (:exclude "COPYING" "lib" "scripts"))) "cl-lib" nil "goto-chg" (goto-chg :repo "https://github.com/emacs-evil/goto-chg" :files (:defaults (:exclude "LICENSE"))) "evil-collection" nil "annalist" nil "ultra-scroll" nil "go-mode" (go-mode :repo "https://github.com/dominikh/go-mode.el" :files (:defaults (:exclude "generate_authors.sh"))) "rust-mode" (rust-mode :repo "https://github.com/rust-lang/rust-mode" :files (:defaults (:exclude "test-*" "triagebot.toml" "*.sh"))) "doom-modeline" nil "nerd-icons" nil "shrink-path" nil "s" nil "f" nil)) el-get #s(hash-table test equal data (version 2 "cl-lib" nil "evil-collection" nil "annalist" nil "ultra-scroll" nil "doom-modeline" `(doom-modeline :type git :host github :repo "seagle0128/doom-modeline" :files (:defaults)) "nerd-icons" nil "shrink-path" `(shrink-path :type git :repo "https://gitlab.com/bennya/shrink-path.el.git" :files (:defaults)) "s" `(s :type git :host github :repo "magnars/s.el" :files (:defaults)) "f" `(f :type git :host github :repo "rejeep/f.el" :files (:defaults)))) emacsmirror-mirror #s(hash-table test equal data (version 2 "cl-lib" nil "evil-collection" (evil-collection :type git :host github :repo "emacsmirror/evil-collection") "annalist" (annalist :type git :host github :repo "emacsmirror/annalist") "ultra-scroll" (ultra-scroll :type git :host github :repo "emacsmirror/ultra-scroll") "nerd-icons" (nerd-icons :type git :host github :repo "emacsmirror/nerd-icons"))))) - -("f" "dash" "s" "shrink-path" "seq" "compat" "doom-modeline" "nerd-icons" "rust-mode" "go-mode" "annalist" "evil-collection" "nadvice" "goto-chg" "cl-lib" "evil" "diminish" "bind-key" "use-package" "emacsmirror-mirror" "el-get" "nongnu-elpa" "gnu-elpa-mirror" "melpa" "org-elpa" "emacs" "straight") - -t diff --git a/straight/build/annalist/annalist-autoloads.el b/straight/build/annalist/annalist-autoloads.el deleted file mode 100644 index 0b103cf..0000000 --- a/straight/build/annalist/annalist-autoloads.el +++ /dev/null @@ -1,45 +0,0 @@ -;;; annalist-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- -;; Generated by the `loaddefs-generate' function. - -;; This file is part of GNU Emacs. - -;;; Code: - - - -;;; Generated autoloads from annalist.el - -(autoload 'annalist-record "annalist" "\ -In the store for ANNALIST, TYPE, and LOCAL, record RECORD. -ANNALIST should correspond to the package/user recording this information (e.g. -'general, 'me, etc.). TYPE is the type of information being recorded (e.g. -'keybindings). LOCAL corresponds to whether to store RECORD only for the current -buffer. This information together is used to select where RECORD should be -stored in and later retrieved from with `annalist-describe'. RECORD should be a -list of items to record and later print as org headings and column entries in a -single row. If PLIST is non-nil, RECORD should be a plist instead of an ordered -list (e.g. '(keymap org-mode-map key \"C-c a\" ...)). The plist keys should be -the symbols used for the definition of TYPE. - -(fn ANNALIST TYPE RECORD &key LOCAL PLIST)") -(autoload 'annalist-describe "annalist" "\ -Describe information recorded by ANNALIST for TYPE. -For example: (annalist-describe 'general 'keybindings) If VIEW is non-nil, use -those settings for displaying recorded information instead of the defaults. - -(fn ANNALIST TYPE &optional VIEW)") -(register-definition-prefixes "annalist" '("annalist-")) - -;;; End of scraped data - -(provide 'annalist-autoloads) - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; no-native-compile: t -;; coding: utf-8-emacs-unix -;; End: - -;;; annalist-autoloads.el ends here diff --git a/straight/build/annalist/annalist.el b/straight/build/annalist/annalist.el deleted file mode 120000 index 3039c85..0000000 --- a/straight/build/annalist/annalist.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/annalist/annalist.el
\ No newline at end of file diff --git a/straight/build/annalist/annalist.elc b/straight/build/annalist/annalist.elc Binary files differdeleted file mode 100644 index aebfd4a..0000000 --- a/straight/build/annalist/annalist.elc +++ /dev/null diff --git a/straight/build/annalist/annalist.info b/straight/build/annalist/annalist.info deleted file mode 100644 index 8b4398a..0000000 --- a/straight/build/annalist/annalist.info +++ /dev/null @@ -1,545 +0,0 @@ -This is annalist.info, produced by makeinfo version 7.2 from -annalist.texi. - -INFO-DIR-SECTION Emacs -START-INFO-DIR-ENTRY -* Annalist: (annalist). Record and display information such as keybindings. -END-INFO-DIR-ENTRY - - -File: annalist.info, Node: Top, Next: Usage, Up: (dir) - -Annalist User Manual -******************** - -file:https://melpa.org/packages/annalist-badge.svg -(https://melpa.org/#/annalist) -https://travis-ci.org/noctuid/annalist.el.svg?branch=master -(https://travis-ci.org/noctuid/annalist.el) - - Incessant wind sweeps the plain. It murmurs on across grey stone, - carrying dust from far climes to nibble eternally at the memorial - pillars. There are a few shadows out there still but they are the - weak and the timid and the hopelessly lost. - - It is immortality of a sort. - - Memory is immortality of a sort. - - In the night, when the wind dies and silence rules the place of - glittering stone, I remember. And they all live again. - - ‘annalist.el’ is a library that can be used to record information and -later print that information using ‘org-mode’ headings and tables. It -allows defining different types of things that can be recorded (e.g. -keybindings, settings, hooks, and advice) and supports custom filtering, -sorting, and formatting. ‘annalist’ is primarily intended for use in -other packages like ‘general’ and ‘evil-collection’, but it can also be -used directly in a user's configuration. - -[https://user-images.githubusercontent.com/4250696/63480582-64e2cb00-c460-11e9-9571-706b5b96992c] - -* Menu: - -* Usage:: - --- The Detailed Node Listing -- - -Usage - -* Disabling Annalist:: -* Terminology:: -* Settings:: -* Defining New Types:: -* Defining Views:: -* Recording:: -* Describing:: -* Helper Functions:: -* Builtin Types:: - -Defining New Types - -* Type Top-level Settings:: -* Type Item Settings:: -* ‘:record-update’, ‘:preprocess’, and ‘:postprocess’ Settings Argument: record-update preprocess and postprocess Settings Argument. - -Defining Views - -* View Top-level Settings:: -* View Item Settings:: - -Helper Functions - -* List Helpers:: -* Formatting Helpers:: -* Sorting Helpers:: - -Builtin Types - -* Keybindings Type:: - - -File: annalist.info, Node: Usage, Prev: Top, Up: Top - -1 Usage -******* - -* Menu: - -* Disabling Annalist:: -* Terminology:: -* Settings:: -* Defining New Types:: -* Defining Views:: -* Recording:: -* Describing:: -* Helper Functions:: -* Builtin Types:: - - -File: annalist.info, Node: Disabling Annalist, Next: Terminology, Up: Usage - -1.1 Disabling Annalist -====================== - - What fool always has his nose in everywhere because he thinks he - has to know so he can record it in his precious Annals? - - If you use a library that uses ‘annalist’ (e.g. ‘evil-collection’ or -‘general’) but don't need it's functionality during init or at all, you -can set ‘annalist-record’ to nil to shave some milliseconds off of your -init time (especially if you have a lot of keybindings). Alternatively, -if you only want to prevent ‘annalist’ from recording certain things or -have it only record certain things, you can configure -‘annalist-record-blacklist’ or ‘annalist-record-whitelist’ respectively. - - -File: annalist.info, Node: Terminology, Next: Settings, Prev: Disabling Annalist, Up: Usage - -1.2 Terminology -=============== - - • item - and individual recorded item; may be displayed as a heading - or as a table column entry (e.g. a key such as ‘C-c’) - • record - a list of related, printable items corresponding to one - piece of information (e.g. a single keybinding: a list of a - keymap, key, and definition) - • metadata - a plist of information about a data list that should not - be printed; appears as the last item in a record - • tome - a collection of records of a specific type - - -File: annalist.info, Node: Settings, Next: Defining New Types, Prev: Terminology, Up: Usage - -1.3 Settings -============ - -Annalist provides ‘annalist-describe-hook’ which is run in annalist -description buffers after they have been populated but before they are -marked read-only: - (add-hook 'annalist-describe-hook - (lambda () (visual-fill-column-mode -1))) - - -File: annalist.info, Node: Defining New Types, Next: Defining Views, Prev: Settings, Up: Usage - -1.4 Defining New Types -====================== - - Three huge tomes bound in worn, cracked dark leather rested on a - large, long stone lectern, as though waiting for three speakers to - step up and read at the same time. - - Annalist provides the function ‘annalist-define-tome’ for defining -new types of tomes: - (annalist-define-tome 'battles - '(:primary-key (year name) - :table-start-index 1 - year - name - casualties - ...)) - - At minimum, a type definition must include ‘:primary-key’, -‘:table-start-index’, and a symbol for each item records should store. -Items should be defined in the order they should appear in org headings -and then in the table. - -* Menu: - -* Type Top-level Settings:: -* Type Item Settings:: -* ‘:record-update’, ‘:preprocess’, and ‘:postprocess’ Settings Argument: record-update preprocess and postprocess Settings Argument. - - -File: annalist.info, Node: Type Top-level Settings, Next: Type Item Settings, Up: Defining New Types - -1.4.1 Type Top-level Settings ------------------------------ - -These settings apply to the entirety of the recorded information. - - • ‘:table-start-index’ - the index of the first item to be printed in - an org table; previous items are printed as headings (default: - none) - • ‘:primary-key’ - the item or list of items that uniquely identifies - the record; used with the ‘:test’ values for those items to check - for an old record that should be replaced/updated (default: none) - • ‘:record-update’ - a function used to update a record before - recording it; this can be used to, for example, set the value of an - item to store the previous value of another item; the function is - called with ‘old-record’ (nil if none), ‘new-record’, and - ‘settings’; see ‘annalist--update-keybindings’ for an example of - how to create such a function (default: none) - • ‘:preprocess’ - a function used to alter a record before doing - anything with it; it is passed ‘record’ and ‘settings’ and should - return the altered record; see the default keybindings type for an - example (default: none) - • ‘:test’ - test function used for comparing the primary key (as a - list of each item in the order it appears in the definition); you - will need to create the test with ‘define-hash-table-test’ if it - does not exist (default: ‘equal’; generally should be unnecessary - to change) - • ‘:defaults’ - a plist of default item settings; see below for valid - item settings (default: none) - - -File: annalist.info, Node: Type Item Settings, Next: record-update preprocess and postprocess Settings Argument, Prev: Type Top-level Settings, Up: Defining New Types - -1.4.2 Type Item Settings ------------------------- - -Item settings only apply to a specific item. Defaults for items that -don't explicitly specify a setting can be set using the top-level -‘:defaults’ keyword. - - • ‘:test’ - test function used for comparing items; only applicable - to heading items; you will need to create the test with - ‘define-hash-table-test’ if it does not exist (default: ‘equal’; - generally should be unnecessary to change) - - -File: annalist.info, Node: record-update preprocess and postprocess Settings Argument, Prev: Type Item Settings, Up: Defining New Types - -1.4.3 ‘:record-update’, ‘:preprocess’, and ‘:postprocess’ Settings Argument ---------------------------------------------------------------------------- - -The settings plist past to the ‘:record-update’ function contains all -information for both the tome type and view. The information is -converted into a valid plist and some extra keywords are added. Here is -an example: - '(:table-start-index 2 - :primary-key (keymap state key) - ;; the following keywords are generated for convenience - :type keybindings - :key-indices (2 1 0) - :final-index 4 - :metadata-index 5 - ;; item settings can be accessed by their symbol or their index - keymap (:name keymap :index 0 :format annalist-code) - 0 (:name keymap :index 0 :format annalist-code) - ...) - - -File: annalist.info, Node: Defining Views, Next: Recording, Prev: Defining New Types, Up: Usage - -1.5 Defining Views -================== - - In those days the company was in service to… - - Views contain settings for formatting and displaying recorded -information. Settings from the type definition cannot be changed later. -On the other hand, views are for all settings that a user may want to -change for a particular ‘annalist-describe’ call. They are defined -using the same format as tome types: - (annalist-define-view 'battles 'default - '(:defaults (:format capitalize) - year - name - (casualties :title "Deaths") - ...)) - - The ‘default’ view is what ‘annalist-describe’ will use if no view -name is explicitly specified. To prevent naming conflicts, external -packages that create views should prefix the views with their symbol -(e.g. ‘general-alternate-view’). - -* Menu: - -* View Top-level Settings:: -* View Item Settings:: - - -File: annalist.info, Node: View Top-level Settings, Next: View Item Settings, Up: Defining Views - -1.5.1 View Top-level Settings ------------------------------ - -These settings apply to the entirety of the recorded information. - - • ‘:predicate’ - a function that is passed the entire record and - returns non-nil if the record should be printed (default: none) - • ‘:sort’ - a function used to sort records in each printed table; - the function is passed two records and and should return non-nil if - the first record should come first (default: none; tables are - printed in recorded order) - • ‘:hooks’ - a function or a list of functions to run in the describe - buffer after printing all headings and tables before making the - buffer readonly; these run before ‘annalist-describe-hook’ - (default: none) - • ‘:postprocess’ - a function used to alter a record just before - printing it; it is passed ‘record’ and ‘settings’ and should return - the altered record; an example use case would be to alter the - record using its metadata (e.g. by replacing a keybinding - definition with a which-key description, if one exists) (default: - none) - • ‘:defaults’ - a plist of default item settings; see below for valid - item settings (default: none) - - There is also a special ‘:inherit’ keyword that can be used to create -a new type of tome that is based on another type: - (annalist-define-view 'keybindings 'alternate - ;; override title for key column - '((key :title "Keybinding") - ...) - :inherit 'keybindings) - - -File: annalist.info, Node: View Item Settings, Prev: View Top-level Settings, Up: Defining Views - -1.5.2 View Item Settings ------------------------- - -Item settings only apply to a specific item. Defaults for items that -don't explicitly specify a setting can be set using the top-level -‘:defaults’ keyword. - (annalist-define-view 'keybindings 'my-view - '(:defaults (:format #'capitalize) - ;; surround key with = instead of capitalizing - (key :format #'annalist-verbatim) - ;; perform no formatting on definition - (definition :format nil))) - - Sorting/filtering (only for items displayed in headings): - • ‘:predicate’ - a function that is passed the item and returns - non-nil if it should be printed; only applicable to heading items - (default: none) - • ‘:prioritize’ - list of items that should be printed before any - others; only applicable to heading items (default: none) - • ‘:sort’ - a function used to sort records; only applicable to - heading items; the function is passed two items and and should - return non-nil if the first item should come first (default: none; - printed in recorded order) - - Formatting: - • ‘:title’ - a description of the item; used as the column title - (default: capitalize the symbol name; local only) - • ‘:format’ - function to run on the item value before it is printed - (e.g. ‘#'capitalize’, ‘#'annalist-code’, ‘#'annalist-verbatim’, - etc.); note that this is run on the item as-is if it has not been - truncated, so the function may need to convert the item to a string - first; has no effect if the item is extracted to a footnote/source - block (default: none) - • ‘:max-width’ - the max character width for an item; note that this - is compared to the item as-is before any formatting (default: 50) - • ‘:extractp’ - function to determine whether to extract longer - entries into footnotes instead of truncating them; (default: - ‘listp’) - • ‘:src-block-p’ function to determine whether to extract to a source - block when the ‘:extractp’ function returns non-nil (default: - ‘listp’) - - -File: annalist.info, Node: Recording, Next: Describing, Prev: Defining Views, Up: Usage - -1.6 Recording -============= - - The Lady said, “I wanted you to see this, Annalist.” […] “What is - about to transpire. So that it is properly recorded in at least - one place.” - - ‘annalist-record’ is used to record information. It requires three -arguments: ‘annalist’ ‘type’ ‘record’. The ‘annalist’ argument will -usually be the same as the package prefix that is recording the data. -‘annalist’ and any other names prefixed by ‘annalist’ are reserved for -this package. ‘type’ is the type of data to record, and ‘record’ is the -actual data. Optionally, the user can also specify metadata that won't -be printed after the final item. Buffer-local records should -additionally specify ‘:local t’. Here is an example: - (annalist-record 'me 'keybindings - (list - ;; keymap state key definition previous-definition - 'global-map nil (kbd "C-+") #'text-scale-increase nil - ;; metadata can be specified after final item - (list :zoom-related-binding t))) - - ;; alternatively, record using plist instead of ordered list - (annalist-record 'me 'keybindings - (list - 'keymap 'global-map - 'state nil - 'key (kbd "C-+") - 'definition #'text-scale-increase - ;; metadata can be specified with `t' key - t (list :zoom-related-binding t)) - :plist t) - - Some items can potentially be recorded as nil. In the previous -example, the evil ‘state’ is recorded as nil (which will always be the -case for non-evil users). When a heading item is nil, the heading at -that level will just be skipped/not printed. - - -File: annalist.info, Node: Describing, Next: Helper Functions, Prev: Recording, Up: Usage - -1.7 Describing -============== - - Once each month, in the evening, the entire Company assembles so - the Annalist can read from his predecessors. - - ‘annalist-describe’ is used to describe information. It takes three -arguments: ‘name’ ‘type view’. ‘view’ is optional (defaults to -‘default’). For example: - (annalist-describe 'me 'keybindings) - - It is possible to have custom filtering/sorting behavior by using a -custom view: - (annalist-define-view 'keybindings 'active-keybindings-only - '((keymap - ;; only show keys bound in active keymaps - :predicate #'annalist--active-keymap - ;; sort keymaps alphabetically - :sort #'annalist--string-<))) - - (annalist-describe 'my 'keybindings 'active-keybindings-only) - - ‘annalist-org-startup-folded’ will determine what -‘org-startup-folded’ setting to use (defaults to nil; all headings will -be unfolded). - - -File: annalist.info, Node: Helper Functions, Next: Builtin Types, Prev: Describing, Up: Usage - -1.8 Helper Functions -==================== - -* Menu: - -* List Helpers:: -* Formatting Helpers:: -* Sorting Helpers:: - - -File: annalist.info, Node: List Helpers, Next: Formatting Helpers, Up: Helper Functions - -1.8.1 List Helpers ------------------- - -‘annalist-plistify-record’ can be used to convert a record that is an -ordered list to a plist. ‘annalist-listify-record’ can be used to do -the opposite. This is what the ‘:plist’ argument for ‘annalist-record’ -uses internally. These functions can be useful, for example, inside a -‘:record-update’ function, so that you can get record items by their -name instead of by their index. However, if there will be a lot of data -recorded for a type during Emacs initialization time, the extra time to -convert between list types can add up, so it's recommended that you -don't use these functions or ‘:plist’ in such cases. - - -File: annalist.info, Node: Formatting Helpers, Next: Sorting Helpers, Prev: List Helpers, Up: Helper Functions - -1.8.2 Formatting Helpers ------------------------- - - 1. ‘:format’ Helpers - - Annalist provides ‘annalist-verbatim’ (e.g. ‘=verbatim text=’), - ‘annalist-code’ (e.g. ‘~my-function~’), and ‘annalist-capitalize’. - There is also an ‘annalist-compose’ helper for combining different - formatting functions. - - 2. Formatting Emacs Lisp Source Blocks - - By default, Emacs Lisp extracted into source blocks will just be - one long line. You can add ‘annalist-multiline-source-blocks’ to a - view's ‘:hooks’ keyword or to ‘annalist-describe-hook’ to - autoformat org source blocks if lispy is installed. By default, it - uses ‘lispy-alt-multiline’. To use ‘lispy-multiline’ instead, - customize ‘annalist-multiline-function’. - - The builtin types have ‘annlist-multiline-source-blocks’ in their - ‘:hooks’ setting by default. - - Here is an example of what this looks like: - -[https://user-images.githubusercontent.com/4250696/62338313-1025e300-b4a6-11e9-845f-179c02abef35] - - -File: annalist.info, Node: Sorting Helpers, Prev: Formatting Helpers, Up: Helper Functions - -1.8.3 Sorting Helpers ---------------------- - -Annalist provides ‘annalist-string-<’ and ‘annalist-key-<’ (e.g. ‘(kbd -"C-c a")’ vs ‘(kbd "C-c b")’). - - -File: annalist.info, Node: Builtin Types, Prev: Helper Functions, Up: Usage - -1.9 Builtin Types -================= - -* Menu: - -* Keybindings Type:: - - -File: annalist.info, Node: Keybindings Type, Up: Builtin Types - -1.9.1 Keybindings Type ----------------------- - -Annalist provides a type for recording keybindings that is used by -‘evil-collection’ and ‘general’. When recording a keybinding, the -keymap must be provided as a symbol. Here is an example: - (annalist-record 'annalist 'keybindings - (list 'org-mode-map nil (kbd "C-c g") #'counsel-org-goto)) - - In addition to the default view, it has a ‘valid’ to only show -keybindings for keymaps/states that exist (since some keybindings may be -in a ‘with-eval-after-load’). It also has an ‘active’ view to only show -keybindings that are currently active. - - -Tag Table: -Node: Top217 -Node: Usage2193 -Node: Disabling Annalist2441 -Node: Terminology3220 -Node: Settings3849 -Node: Defining New Types4233 -Node: Type Top-level Settings5268 -Node: Type Item Settings6983 -Node: record-update preprocess and postprocess Settings Argument7635 -Node: Defining Views8595 -Node: View Top-level Settings9590 -Node: View Item Settings11230 -Node: Recording13451 -Node: Describing15390 -Node: Helper Functions16427 -Node: List Helpers16641 -Node: Formatting Helpers17417 -Node: Sorting Helpers18604 -Node: Builtin Types18866 -Node: Keybindings Type19016 - -End Tag Table - - -Local Variables: -coding: utf-8 -Info-documentlanguage: en -End: diff --git a/straight/build/annalist/annalist.texi b/straight/build/annalist/annalist.texi deleted file mode 120000 index d8eb691..0000000 --- a/straight/build/annalist/annalist.texi +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/annalist/annalist.texi
\ No newline at end of file diff --git a/straight/build/annalist/dir b/straight/build/annalist/dir deleted file mode 100644 index 77a3845..0000000 --- a/straight/build/annalist/dir +++ /dev/null @@ -1,19 +0,0 @@ -This is the file .../info/dir, which contains the -topmost node of the Info hierarchy, called (dir)Top. -The first time you invoke Info you start off looking at this node. - -File: dir, Node: Top This is the top of the INFO tree - - This (the Directory node) gives a menu of major topics. - Typing "q" exits, "H" lists all Info commands, "d" returns here, - "h" gives a primer for first-timers, - "mEmacs<Return>" visits the Emacs manual, etc. - - In Emacs, you can click mouse button 2 on a menu item or cross reference - to select it. - -* Menu: - -Emacs -* Annalist: (annalist). Record and display information such as - keybindings. diff --git a/straight/build/bind-key/.github/PULL_REQUEST_TEMPLATE.md b/straight/build/bind-key/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 120000 index 7d92aee..0000000 --- a/straight/build/bind-key/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/bind-key/.github/PULL_REQUEST_TEMPLATE.md
\ No newline at end of file diff --git a/straight/build/bind-key/bind-key-autoloads.el b/straight/build/bind-key/bind-key-autoloads.el deleted file mode 100644 index 3e8194f..0000000 --- a/straight/build/bind-key/bind-key-autoloads.el +++ /dev/null @@ -1,106 +0,0 @@ -;;; bind-key-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- -;; Generated by the `loaddefs-generate' function. - -;; This file is part of GNU Emacs. - -;;; Code: - - - -;;; Generated autoloads from bind-key.el - -(defvar personal-keybindings nil "\ -List of bindings performed by `bind-key'. - -Elements have the form ((KEY . [MAP]) CMD ORIGINAL-CMD)") -(autoload 'bind-key "bind-key" "\ -Bind KEY-NAME to COMMAND in KEYMAP (`global-map' if not passed). - -KEY-NAME may be a vector, in which case it is passed straight to -`define-key'. Or it may be a string to be interpreted as -spelled-out keystrokes, e.g., \"C-c C-z\". See the documentation -of `edmacro-mode' for details. - -COMMAND must be an interactive function or lambda form. - -KEYMAP, if present, should be a keymap variable or symbol. -For example: - - (bind-key \"M-h\" #\\='some-interactive-function my-mode-map) - - (bind-key \"M-h\" #\\='some-interactive-function \\='my-mode-map) - -If PREDICATE is non-nil, it is a form evaluated to determine when -a key should be bound. It must return non-nil in such cases. -Emacs can evaluate this form at any time that it does redisplay -or operates on menu data structures, so you should write it so it -can safely be called at any time. - -(fn KEY-NAME COMMAND &optional KEYMAP PREDICATE)" nil t) -(autoload 'unbind-key "bind-key" "\ -Unbind the given KEY-NAME, within the KEYMAP (if specified). -See `bind-key' for more details. - -(fn KEY-NAME &optional KEYMAP)" nil t) -(autoload 'bind-key* "bind-key" "\ -Similar to `bind-key', but overrides any mode-specific bindings. - -(fn KEY-NAME COMMAND &optional PREDICATE)" nil t) -(autoload 'bind-keys "bind-key" "\ -Bind multiple keys at once. - -Accepts keyword arguments: -:map MAP - a keymap into which the keybindings should be - added -:prefix KEY - prefix key for these bindings -:prefix-map MAP - name of the prefix map that should be created - for these bindings -:prefix-docstring STR - docstring for the prefix-map variable -:menu-name NAME - optional menu string for prefix map -:repeat-docstring STR - docstring for the repeat-map variable -:repeat-map MAP - name of the repeat map that should be created - for these bindings. If specified, the - `repeat-map' property of each command bound - (within the scope of the `:repeat-map' keyword) - is set to this map. -:exit BINDINGS - Within the scope of `:repeat-map' will bind the - key in the repeat map, but will not set the - `repeat-map' property of the bound command. -:continue BINDINGS - Within the scope of `:repeat-map' forces the - same behavior as if no special keyword had - been used (that is, the command is bound, and - it's `repeat-map' property set) -:continue-only BINDINGS - Within the scope of `:repeat-map', will make - the command continue but not enter the repeat - map, via the `repeat-continue' property -:filter FORM - optional form to determine when bindings apply - -The rest of the arguments are conses of keybinding string and a -function symbol (unquoted). - -(fn &rest ARGS)" nil t) -(autoload 'bind-keys* "bind-key" "\ -Bind multiple keys at once, in `override-global-map'. -Accepts the same keyword arguments as `bind-keys' (which see). - -This binds keys in such a way that bindings are not overridden by -other modes. See `override-global-mode'. - -(fn &rest ARGS)" nil t) -(autoload 'describe-personal-keybindings "bind-key" "\ -Display all the personal keybindings defined by `bind-key'." t) -(register-definition-prefixes "bind-key" '("bind-key" "override-global-m")) - -;;; End of scraped data - -(provide 'bind-key-autoloads) - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; no-native-compile: t -;; coding: utf-8-emacs-unix -;; End: - -;;; bind-key-autoloads.el ends here diff --git a/straight/build/bind-key/bind-key-pkg.el b/straight/build/bind-key/bind-key-pkg.el deleted file mode 120000 index 089df98..0000000 --- a/straight/build/bind-key/bind-key-pkg.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/bind-key/bind-key-pkg.el
\ No newline at end of file diff --git a/straight/build/bind-key/bind-key.el b/straight/build/bind-key/bind-key.el deleted file mode 120000 index 3a98282..0000000 --- a/straight/build/bind-key/bind-key.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/bind-key/bind-key.el
\ No newline at end of file diff --git a/straight/build/bind-key/bind-key.elc b/straight/build/bind-key/bind-key.elc Binary files differdeleted file mode 100644 index 3618811..0000000 --- a/straight/build/bind-key/bind-key.elc +++ /dev/null diff --git a/straight/build/diminish/.github/PULL_REQUEST_TEMPLATE.md b/straight/build/diminish/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 120000 index e98de24..0000000 --- a/straight/build/diminish/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/diminish/.github/PULL_REQUEST_TEMPLATE.md
\ No newline at end of file diff --git a/straight/build/diminish/README.md b/straight/build/diminish/README.md deleted file mode 120000 index b766b70..0000000 --- a/straight/build/diminish/README.md +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/diminish/README.md
\ No newline at end of file diff --git a/straight/build/diminish/diminish-autoloads.el b/straight/build/diminish/diminish-autoloads.el deleted file mode 100644 index 1006a3f..0000000 --- a/straight/build/diminish/diminish-autoloads.el +++ /dev/null @@ -1,61 +0,0 @@ -;;; diminish-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- -;; Generated by the `loaddefs-generate' function. - -;; This file is part of GNU Emacs. - -;;; Code: - - - -;;; Generated autoloads from diminish.el - -(autoload 'diminish "diminish" "\ -Diminish mode-line display of minor mode MODE to TO-WHAT (default \"\"). - -Interactively, enter (with completion) the name of any minor mode, followed -on the next line by what you want it diminished to (default empty string). -The response to neither prompt should be quoted. However, in Lisp code, -both args must be quoted, the first as a symbol, the second as a string, -as in (diminish \\='jiggle-mode \" Jgl\"). - -The mode-line displays of minor modes usually begin with a space, so -the modes' names appear as separate words on the mode line. However, if -you're having problems with a cramped mode line, you may choose to use single -letters for some modes, without leading spaces. Capitalizing them works -best; if you then diminish some mode to \"X\" but have `abbrev-mode' enabled as -well, you'll get a display like \"AbbrevX\". This function prepends a space -to TO-WHAT if it's > 1 char long & doesn't already begin with a space. - -(fn MODE &optional TO-WHAT)" t) -(autoload 'diminish-undo "diminish" "\ -Restore mode-line display of diminished mode MODE to its minor-mode value. -Do nothing if the arg is a minor mode that hasn't been diminished. - -Interactively, enter (with completion) the name of any diminished mode (a -mode that was formerly a minor mode on which you invoked \\[diminish]). -To restore all diminished modes to minor status, answer `diminished-modes'. -The response to the prompt shouldn't be quoted. However, in Lisp code, -the arg must be quoted as a symbol, as in (diminish-undo \\='diminished-modes). - -(fn MODE)" t) -(autoload 'diminished-modes "diminish" "\ -Echo all active diminished or minor modes as if they were minor. -The display goes in the echo area; if it's too long even for that, -you can see the whole thing in the *Messages* buffer. -This doesn't change the status of any modes; it just lets you see -what diminished modes would be on the mode-line if they were still minor." t) -(register-definition-prefixes "diminish" '("diminish")) - -;;; End of scraped data - -(provide 'diminish-autoloads) - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; no-native-compile: t -;; coding: utf-8-emacs-unix -;; End: - -;;; diminish-autoloads.el ends here diff --git a/straight/build/diminish/diminish-pkg.el b/straight/build/diminish/diminish-pkg.el deleted file mode 120000 index c486735..0000000 --- a/straight/build/diminish/diminish-pkg.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/diminish/diminish-pkg.el
\ No newline at end of file diff --git a/straight/build/diminish/diminish.el b/straight/build/diminish/diminish.el deleted file mode 120000 index 2ff9eae..0000000 --- a/straight/build/diminish/diminish.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/diminish/diminish.el
\ No newline at end of file diff --git a/straight/build/diminish/diminish.elc b/straight/build/diminish/diminish.elc Binary files differdeleted file mode 100644 index 22545ba..0000000 --- a/straight/build/diminish/diminish.elc +++ /dev/null diff --git a/straight/build/evil-collection/evil-collection-autoloads.el b/straight/build/evil-collection/evil-collection-autoloads.el deleted file mode 100644 index d0693e0..0000000 --- a/straight/build/evil-collection/evil-collection-autoloads.el +++ /dev/null @@ -1,108 +0,0 @@ -;;; evil-collection-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- -;; Generated by the `loaddefs-generate' function. - -;; This file is part of GNU Emacs. - -;;; Code: - - - -;;; Generated autoloads from evil-collection.el - -(autoload 'evil-collection-translate-minor-mode-key "evil-collection" "\ -Translate keys in the keymap(s) corresponding to STATES and MODES. - -Similar to `evil-collection-translate-key' but for minor modes. -STATES should be the name of an evil state, a list of states, or nil. MODES -should be a symbol corresponding to minor-mode to make the translations in or a -list of minor-mode symbols. TRANSLATIONS corresponds to a list of -key replacement pairs. For example, specifying \"a\" \"b\" will bind \"a\" to -\"b\"'s definition in the keymap. Specifying nil as a replacement will unbind a -key. If DESTRUCTIVE is nil, a backup of the keymap will be stored on the initial -invocation, and future invocations will always look up keys in the backup -keymap. When no TRANSLATIONS are given, this function will only create the -backup keymap without making any translations. On the other hand, if DESTRUCTIVE -is non-nil, the keymap will be destructively altered without creating a backup. -For example, calling this function multiple times with \"a\" \"b\" \"b\" \"a\" -would continue to swap and unswap the definitions of these keys. This means that -when DESTRUCTIVE is non-nil, all related swaps/cycles should be done in the same -invocation. - -(fn STATES MODES &rest TRANSLATIONS &key DESTRUCTIVE &allow-other-keys)") -(function-put 'evil-collection-translate-minor-mode-key 'lisp-indent-function 'defun) -(autoload 'evil-collection-translate-key "evil-collection" "\ -Translate keys in the keymap(s) corresponding to STATES and KEYMAPS. -STATES should be the name of an evil state, a list of states, or nil. KEYMAPS -should be a symbol corresponding to the keymap to make the translations in or a -list of keymap symbols. Like `evil-define-key', when a keymap does not exist, -the keybindings will be deferred until the keymap is defined, so -`with-eval-after-load' is not necessary. TRANSLATIONS corresponds to a list of -key replacement pairs. For example, specifying \"a\" \"b\" will bind \"a\" to -\"b\"'s definition in the keymap. Specifying nil as a replacement will unbind a -key. If DESTRUCTIVE is nil, a backup of the keymap will be stored on the initial -invocation, and future invocations will always look up keys in the backup -keymap. When no TRANSLATIONS are given, this function will only create the -backup keymap without making any translations. On the other hand, if DESTRUCTIVE -is non-nil, the keymap will be destructively altered without creating a backup. -For example, calling this function multiple times with \"a\" \"b\" \"b\" \"a\" -would continue to swap and unswap the definitions of these keys. This means that -when DESTRUCTIVE is non-nil, all related swaps/cycles should be done in the same -invocation. - -(fn STATES KEYMAPS &rest TRANSLATIONS &key DESTRUCTIVE &allow-other-keys)") -(function-put 'evil-collection-translate-key 'lisp-indent-function 'defun) -(autoload 'evil-collection-swap-key "evil-collection" "\ -Wrapper around `evil-collection-translate-key' for swapping keys. -STATES, KEYMAPS, and ARGS are passed to `evil-collection-translate-key'. ARGS -should consist of key swaps (e.g. \"a\" \"b\" is equivalent to \"a\" \"b\" \"b\" -\"a\" with `evil-collection-translate-key') and optionally keyword arguments for -`evil-collection-translate-key'. - -(fn STATES KEYMAPS &rest ARGS)" nil t) -(function-put 'evil-collection-swap-key 'lisp-indent-function 'defun) -(autoload 'evil-collection-swap-minor-mode-key "evil-collection" "\ -Wrapper around `evil-collection-translate-minor-mode-key' for swapping keys. -STATES, MODES, and ARGS are passed to -`evil-collection-translate-minor-mode-key'. ARGS should consist of key swaps -(e.g. \"a\" \"b\" is equivalent to \"a\" \"b\" \"b\" \"a\" -with `evil-collection-translate-minor-mode-key') and optionally keyword -arguments for `evil-collection-translate-minor-mode-key'. - -(fn STATES MODES &rest ARGS)" nil t) -(function-put 'evil-collection-swap-minor-mode-key 'lisp-indent-function 'defun) -(autoload 'evil-collection-require "evil-collection" "\ -Require the evil-collection-MODE file, but do not activate it. - -MODE should be a symbol. This requires the evil-collection-MODE -feature without needing to manipulate `load-path'. NOERROR is -forwarded to `require'. - -(fn MODE &optional NOERROR)") -(autoload 'evil-collection-init "evil-collection" "\ -Register the Evil bindings for all modes in `evil-collection-mode-list'. - -Alternatively, you may register select bindings manually, for -instance: - - (with-eval-after-load ='calendar - (evil-collection-calendar-setup)) - -If MODES is specified (as either one mode or a list of modes), use those modes -instead of the modes in `evil-collection-mode-list'. - -(fn &optional MODES)" t) -(register-definition-prefixes "evil-collection" '("evil-collection-")) - -;;; End of scraped data - -(provide 'evil-collection-autoloads) - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; no-native-compile: t -;; coding: utf-8-emacs-unix -;; End: - -;;; evil-collection-autoloads.el ends here diff --git a/straight/build/evil-collection/evil-collection.el b/straight/build/evil-collection/evil-collection.el deleted file mode 120000 index f352d08..0000000 --- a/straight/build/evil-collection/evil-collection.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil-collection/evil-collection.el
\ No newline at end of file diff --git a/straight/build/evil-collection/evil-collection.elc b/straight/build/evil-collection/evil-collection.elc Binary files differdeleted file mode 100644 index e54de24..0000000 --- a/straight/build/evil-collection/evil-collection.elc +++ /dev/null diff --git a/straight/build/evil/evil-autoloads.el b/straight/build/evil/evil-autoloads.el deleted file mode 100644 index 085b7f4..0000000 --- a/straight/build/evil/evil-autoloads.el +++ /dev/null @@ -1,114 +0,0 @@ -;;; evil-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- -;; Generated by the `loaddefs-generate' function. - -;; This file is part of GNU Emacs. - -;;; Code: - - - -;;; Generated autoloads from evil-command-window.el - -(register-definition-prefixes "evil-command-window" '("evil-")) - - -;;; Generated autoloads from evil-commands.el - -(register-definition-prefixes "evil-commands" '("evil-")) - - -;;; Generated autoloads from evil-common.el - -(register-definition-prefixes "evil-common" '("bounds-of-evil-" "evil-" "forward-evil-")) - - -;;; Generated autoloads from evil-core.el - - (autoload 'evil-mode "evil" nil t) -(register-definition-prefixes "evil-core" '("evil-" "turn-o")) - - -;;; Generated autoloads from evil-digraphs.el - -(autoload 'evil-digraph "evil-digraphs" "\ -Convert DIGRAPH to character or list representation. -If DIGRAPH is a list (CHAR1 CHAR2), return the corresponding character; -if DIGRAPH is a character, return the corresponding list. -Searches in `evil-digraphs-table-user' and `evil-digraphs-table'. - -(fn DIGRAPH)") -(register-definition-prefixes "evil-digraphs" '("evil-digraphs-table")) - - -;;; Generated autoloads from evil-ex.el - -(register-definition-prefixes "evil-ex" '("evil-")) - - -;;; Generated autoloads from evil-integration.el - -(register-definition-prefixes "evil-integration" '("evil-")) - - -;;; Generated autoloads from evil-jumps.el - -(register-definition-prefixes "evil-jumps" '("evil-")) - - -;;; Generated autoloads from evil-keybindings.el - -(register-definition-prefixes "evil-keybindings" '("evil--set-motion-state")) - - -;;; Generated autoloads from evil-macros.el - -(register-definition-prefixes "evil-macros" '("evil-")) - - -;;; Generated autoloads from evil-maps.el - -(register-definition-prefixes "evil-maps" '("evil-")) - - -;;; Generated autoloads from evil-repeat.el - -(register-definition-prefixes "evil-repeat" '("evil-")) - - -;;; Generated autoloads from evil-search.el - -(register-definition-prefixes "evil-search" '("evil-")) - - -;;; Generated autoloads from evil-states.el - -(register-definition-prefixes "evil-states" '("evil-")) - - -;;; Generated autoloads from evil-test-helpers.el - -(register-definition-prefixes "evil-test-helpers" '("evil-")) - - -;;; Generated autoloads from evil-types.el - -(register-definition-prefixes "evil-types" '("evil-ex-get-optional-register-and-count")) - - -;;; Generated autoloads from evil-vars.el - -(register-definition-prefixes "evil-vars" '("evil-")) - -;;; End of scraped data - -(provide 'evil-autoloads) - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; no-native-compile: t -;; coding: utf-8-emacs-unix -;; End: - -;;; evil-autoloads.el ends here diff --git a/straight/build/evil/evil-command-window.el b/straight/build/evil/evil-command-window.el deleted file mode 120000 index 61402d1..0000000 --- a/straight/build/evil/evil-command-window.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-command-window.el
\ No newline at end of file diff --git a/straight/build/evil/evil-command-window.elc b/straight/build/evil/evil-command-window.elc Binary files differdeleted file mode 100644 index 98fc1da..0000000 --- a/straight/build/evil/evil-command-window.elc +++ /dev/null diff --git a/straight/build/evil/evil-commands.el b/straight/build/evil/evil-commands.el deleted file mode 120000 index 152d552..0000000 --- a/straight/build/evil/evil-commands.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-commands.el
\ No newline at end of file diff --git a/straight/build/evil/evil-commands.elc b/straight/build/evil/evil-commands.elc Binary files differdeleted file mode 100644 index 3fd5e60..0000000 --- a/straight/build/evil/evil-commands.elc +++ /dev/null diff --git a/straight/build/evil/evil-common.el b/straight/build/evil/evil-common.el deleted file mode 120000 index 2ab2d78..0000000 --- a/straight/build/evil/evil-common.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-common.el
\ No newline at end of file diff --git a/straight/build/evil/evil-common.elc b/straight/build/evil/evil-common.elc Binary files differdeleted file mode 100644 index 0dba496..0000000 --- a/straight/build/evil/evil-common.elc +++ /dev/null diff --git a/straight/build/evil/evil-core.el b/straight/build/evil/evil-core.el deleted file mode 120000 index 250a442..0000000 --- a/straight/build/evil/evil-core.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-core.el
\ No newline at end of file diff --git a/straight/build/evil/evil-core.elc b/straight/build/evil/evil-core.elc Binary files differdeleted file mode 100644 index 97015ab..0000000 --- a/straight/build/evil/evil-core.elc +++ /dev/null diff --git a/straight/build/evil/evil-development.el b/straight/build/evil/evil-development.el deleted file mode 120000 index 419c5d8..0000000 --- a/straight/build/evil/evil-development.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-development.el
\ No newline at end of file diff --git a/straight/build/evil/evil-development.elc b/straight/build/evil/evil-development.elc Binary files differdeleted file mode 100644 index 8f17125..0000000 --- a/straight/build/evil/evil-development.elc +++ /dev/null diff --git a/straight/build/evil/evil-digraphs.el b/straight/build/evil/evil-digraphs.el deleted file mode 120000 index 9434165..0000000 --- a/straight/build/evil/evil-digraphs.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-digraphs.el
\ No newline at end of file diff --git a/straight/build/evil/evil-digraphs.elc b/straight/build/evil/evil-digraphs.elc Binary files differdeleted file mode 100644 index 616d5ac..0000000 --- a/straight/build/evil/evil-digraphs.elc +++ /dev/null diff --git a/straight/build/evil/evil-ex.el b/straight/build/evil/evil-ex.el deleted file mode 120000 index 329f9bd..0000000 --- a/straight/build/evil/evil-ex.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-ex.el
\ No newline at end of file diff --git a/straight/build/evil/evil-ex.elc b/straight/build/evil/evil-ex.elc Binary files differdeleted file mode 100644 index 4c3616d..0000000 --- a/straight/build/evil/evil-ex.elc +++ /dev/null diff --git a/straight/build/evil/evil-integration.el b/straight/build/evil/evil-integration.el deleted file mode 120000 index fbc2e63..0000000 --- a/straight/build/evil/evil-integration.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-integration.el
\ No newline at end of file diff --git a/straight/build/evil/evil-integration.elc b/straight/build/evil/evil-integration.elc Binary files differdeleted file mode 100644 index d9e712d..0000000 --- a/straight/build/evil/evil-integration.elc +++ /dev/null diff --git a/straight/build/evil/evil-jumps.el b/straight/build/evil/evil-jumps.el deleted file mode 120000 index 938db80..0000000 --- a/straight/build/evil/evil-jumps.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-jumps.el
\ No newline at end of file diff --git a/straight/build/evil/evil-jumps.elc b/straight/build/evil/evil-jumps.elc Binary files differdeleted file mode 100644 index 1088928..0000000 --- a/straight/build/evil/evil-jumps.elc +++ /dev/null diff --git a/straight/build/evil/evil-keybindings.el b/straight/build/evil/evil-keybindings.el deleted file mode 120000 index 19c5d82..0000000 --- a/straight/build/evil/evil-keybindings.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-keybindings.el
\ No newline at end of file diff --git a/straight/build/evil/evil-keybindings.elc b/straight/build/evil/evil-keybindings.elc Binary files differdeleted file mode 100644 index 249f8cd..0000000 --- a/straight/build/evil/evil-keybindings.elc +++ /dev/null diff --git a/straight/build/evil/evil-macros.el b/straight/build/evil/evil-macros.el deleted file mode 120000 index 64a8cb3..0000000 --- a/straight/build/evil/evil-macros.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-macros.el
\ No newline at end of file diff --git a/straight/build/evil/evil-macros.elc b/straight/build/evil/evil-macros.elc Binary files differdeleted file mode 100644 index bb5acf9..0000000 --- a/straight/build/evil/evil-macros.elc +++ /dev/null diff --git a/straight/build/evil/evil-maps.el b/straight/build/evil/evil-maps.el deleted file mode 120000 index d0e915a..0000000 --- a/straight/build/evil/evil-maps.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-maps.el
\ No newline at end of file diff --git a/straight/build/evil/evil-maps.elc b/straight/build/evil/evil-maps.elc Binary files differdeleted file mode 100644 index da24209..0000000 --- a/straight/build/evil/evil-maps.elc +++ /dev/null diff --git a/straight/build/evil/evil-repeat.el b/straight/build/evil/evil-repeat.el deleted file mode 120000 index ee70cf1..0000000 --- a/straight/build/evil/evil-repeat.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-repeat.el
\ No newline at end of file diff --git a/straight/build/evil/evil-repeat.elc b/straight/build/evil/evil-repeat.elc Binary files differdeleted file mode 100644 index b7fa1ee..0000000 --- a/straight/build/evil/evil-repeat.elc +++ /dev/null diff --git a/straight/build/evil/evil-search.el b/straight/build/evil/evil-search.el deleted file mode 120000 index fc1fdd2..0000000 --- a/straight/build/evil/evil-search.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-search.el
\ No newline at end of file diff --git a/straight/build/evil/evil-search.elc b/straight/build/evil/evil-search.elc Binary files differdeleted file mode 100644 index c742ddb..0000000 --- a/straight/build/evil/evil-search.elc +++ /dev/null diff --git a/straight/build/evil/evil-states.el b/straight/build/evil/evil-states.el deleted file mode 120000 index 7c37c3c..0000000 --- a/straight/build/evil/evil-states.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-states.el
\ No newline at end of file diff --git a/straight/build/evil/evil-states.elc b/straight/build/evil/evil-states.elc Binary files differdeleted file mode 100644 index 9a21d43..0000000 --- a/straight/build/evil/evil-states.elc +++ /dev/null diff --git a/straight/build/evil/evil-test-helpers.el b/straight/build/evil/evil-test-helpers.el deleted file mode 120000 index 6e6a843..0000000 --- a/straight/build/evil/evil-test-helpers.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-test-helpers.el
\ No newline at end of file diff --git a/straight/build/evil/evil-test-helpers.elc b/straight/build/evil/evil-test-helpers.elc Binary files differdeleted file mode 100644 index ba5ffd4..0000000 --- a/straight/build/evil/evil-test-helpers.elc +++ /dev/null diff --git a/straight/build/evil/evil-types.el b/straight/build/evil/evil-types.el deleted file mode 120000 index c897b49..0000000 --- a/straight/build/evil/evil-types.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-types.el
\ No newline at end of file diff --git a/straight/build/evil/evil-types.elc b/straight/build/evil/evil-types.elc Binary files differdeleted file mode 100644 index 60bb724..0000000 --- a/straight/build/evil/evil-types.elc +++ /dev/null diff --git a/straight/build/evil/evil-vars.el b/straight/build/evil/evil-vars.el deleted file mode 120000 index e7722a6..0000000 --- a/straight/build/evil/evil-vars.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil-vars.el
\ No newline at end of file diff --git a/straight/build/evil/evil-vars.elc b/straight/build/evil/evil-vars.elc Binary files differdeleted file mode 100644 index 3aa6d3e..0000000 --- a/straight/build/evil/evil-vars.elc +++ /dev/null diff --git a/straight/build/evil/evil.el b/straight/build/evil/evil.el deleted file mode 120000 index cab12a7..0000000 --- a/straight/build/evil/evil.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/evil/evil.el
\ No newline at end of file diff --git a/straight/build/evil/evil.elc b/straight/build/evil/evil.elc Binary files differdeleted file mode 100644 index 87421a3..0000000 --- a/straight/build/evil/evil.elc +++ /dev/null diff --git a/straight/build/goto-chg/goto-chg-autoloads.el b/straight/build/goto-chg/goto-chg-autoloads.el deleted file mode 100644 index 13f475b..0000000 --- a/straight/build/goto-chg/goto-chg-autoloads.el +++ /dev/null @@ -1,57 +0,0 @@ -;;; goto-chg-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- -;; Generated by the `loaddefs-generate' function. - -;; This file is part of GNU Emacs. - -;;; Code: - - - -;;; Generated autoloads from goto-chg.el - -(autoload 'goto-last-change "goto-chg" "\ -Go to the point where the last edit was made in the current buffer. -Repeat the command to go to the second last edit, etc. - -To go back to more recent edit, the reverse of this command, use \\[goto-last-change-reverse] -or precede this command with \\[universal-argument] - (minus). - -It does not go to the same point twice even if there has been many edits -there. I call the minimal distance between distinguishable edits \"span\". -Set variable `glc-default-span' to control how close is \"the same point\". -Default span is 8. -The span can be changed temporarily with \\[universal-argument] right before \\[goto-last-change]: -\\[universal-argument] <NUMBER> set current span to that number, -\\[universal-argument] (no number) multiplies span by 4, starting with default. -The so set span remains until it is changed again with \\[universal-argument], or the consecutive -repetition of this command is ended by any other command. - -When span is zero (i.e. \\[universal-argument] 0) subsequent \\[goto-last-change] visits each and -every point of edit and a message shows what change was made there. -In this case it may go to the same point twice. - -This command uses undo information. If undo is disabled, so is this command. -At times, when undo information becomes too large, the oldest information is -discarded. See variable `undo-limit'. - -(fn ARG)" t) -(autoload 'goto-last-change-reverse "goto-chg" "\ -Go back to more recent changes after \\[goto-last-change] have been used. -See `goto-last-change' for use of prefix argument. - -(fn ARG)" t) -(register-definition-prefixes "goto-chg" '("glc-")) - -;;; End of scraped data - -(provide 'goto-chg-autoloads) - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; no-native-compile: t -;; coding: utf-8-emacs-unix -;; End: - -;;; goto-chg-autoloads.el ends here diff --git a/straight/build/goto-chg/goto-chg.el b/straight/build/goto-chg/goto-chg.el deleted file mode 120000 index bf00a2c..0000000 --- a/straight/build/goto-chg/goto-chg.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/goto-chg/goto-chg.el
\ No newline at end of file diff --git a/straight/build/goto-chg/goto-chg.elc b/straight/build/goto-chg/goto-chg.elc Binary files differdeleted file mode 100644 index 6945d58..0000000 --- a/straight/build/goto-chg/goto-chg.elc +++ /dev/null diff --git a/straight/build/straight/straight-autoloads.el b/straight/build/straight/straight-autoloads.el deleted file mode 100644 index dd6c181..0000000 --- a/straight/build/straight/straight-autoloads.el +++ /dev/null @@ -1,456 +0,0 @@ -;;; straight-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- -;; Generated by the `loaddefs-generate' function. - -;; This file is part of GNU Emacs. - -;;; Code: - - - -;;; Generated autoloads from straight.el - -(autoload 'straight-remove-unused-repos "straight" "\ -Remove unused repositories from the repos and build directories. -A repo is considered \"unused\" if it was not explicitly requested via -`straight-use-package' during the current Emacs session. -If FORCE is non-nil do not prompt before deleting repos. - -(fn &optional FORCE)" t) -(autoload 'straight-get-recipe "straight" "\ -Interactively select a recipe from one of the recipe repositories. -All recipe repositories in `straight-recipe-repositories' will -first be cloned. After the recipe is selected, it will be copied -to the kill ring. With a prefix argument, first prompt for a -recipe repository to search. Only that repository will be -cloned. - -From Lisp code, SOURCES should be a subset of the symbols in -`straight-recipe-repositories'. Only those recipe repositories -are cloned and searched. If it is nil or omitted, then the value -of `straight-recipe-repositories' is used. If SOURCES is the -symbol `interactive', then the user is prompted to select a -recipe repository, and a list containing that recipe repository -is used for the value of SOURCES. ACTION may be `copy' (copy -recipe to the kill ring), `insert' (insert at point), or nil (no -action, just return it). - -Optional arg FILTER must be a unary function. -It takes a package name as its sole argument. -If it returns nil the candidate is excluded. - -USE-CACHE non-nil means respect the existing straight.el recipe cache, -i.e. display also packages that have been registered in the current -Emacs session even if not found in any recipe repository, and if such a -package is selected, return just the package name as a symbol, instead -of a recipe. (It is not possible to return an actual recipe, as the API -for `straight-get-recipe' returns MELPA-style recipes, while cached -recipes have already been converted into the internal format.) - -Within `straight-get-recipe', the symbol `cache' is treated as if it is -also a member of `straight-recipe-repositories', and refers to the set -of packages that have already been registered in the current Emacs -session. - -(fn &optional SOURCES ACTION FILTER USE-CACHE)" t) -(autoload 'straight-visit-package-website "straight" "\ -Visit the package RECIPE's website. - -(fn RECIPE)" t) -(autoload 'straight-visit-package "straight" "\ -Open PACKAGE's local repository directory. -When BUILD is non-nil visit PACKAGE's build directory. - -(fn PACKAGE &optional BUILD)" t) -(autoload 'straight-use-package "straight" "\ -Register, clone, build, and activate a package and its dependencies. -This is the main entry point to the functionality of straight.el. - -MELPA-STYLE-RECIPE is either a symbol naming a package, or a list -whose car is a symbol naming a package and whose cdr is a -property list containing e.g. `:type', `:local-repo', `:files', -and VC backend specific keywords. - -First, the package recipe is registered with straight.el. If -NO-CLONE is a function, then it is called with two arguments: the -package name as a string, and a boolean value indicating whether -the local repository for the package is available. In that case, -the return value of the function is used as the value of NO-CLONE -instead. In any case, if NO-CLONE is non-nil, then processing -stops here. - -Otherwise, the repository is cloned, if it is missing. If -NO-BUILD is a function, then it is called with one argument: the -package name as a string. In that case, the return value of the -function is used as the value of NO-BUILD instead. In any case, -if NO-BUILD is non-nil, then processing halts here. Otherwise, -the package is built and activated. Note that if the package -recipe has a nil `:build' entry, then NO-BUILD is ignored -and processing always stops before building and activation -occurs. - -CAUSE is a string explaining the reason why -`straight-use-package' has been called. It is for internal use -only, and is used to construct progress messages. INTERACTIVE is -non-nil if the function has been called interactively. It is for -internal use only, and is used to determine whether to show a -hint about how to install the package permanently. - -Return non-nil when package is initially installed, nil otherwise. - -Interactively, prompt with a list of available packages in currently -registered recipe repositories. With prefix arg, prompt first for which -recipe repository to list from. If a package has already been registered -in the current Emacs session, the existing recipe is re-used rather than -being looked up anew. With prefix arg, \"cache\" is displayed as one of -the recipe repositories, and allows filtering to only already-registered -packages. - -(fn MELPA-STYLE-RECIPE &optional NO-CLONE NO-BUILD CAUSE INTERACTIVE)" t) -(autoload 'straight-register-package "straight" "\ -Register a package without cloning, building, or activating it. -This function is equivalent to calling `straight-use-package' -with a non-nil argument for NO-CLONE. It is provided for -convenience. MELPA-STYLE-RECIPE is as for -`straight-use-package'. - -(fn MELPA-STYLE-RECIPE)") -(autoload 'straight-use-package-no-build "straight" "\ -Register and clone a package without building it. -This function is equivalent to calling `straight-use-package' -with nil for NO-CLONE but a non-nil argument for NO-BUILD. It is -provided for convenience. MELPA-STYLE-RECIPE is as for -`straight-use-package'. - -(fn MELPA-STYLE-RECIPE)") -(autoload 'straight-use-package-lazy "straight" "\ -Register, build, and activate a package if it is already cloned. -This function is equivalent to calling `straight-use-package' -with symbol `lazy' for NO-CLONE. It is provided for convenience. -MELPA-STYLE-RECIPE is as for `straight-use-package'. - -Argument CAUSE is for internal use only. - -(fn MELPA-STYLE-RECIPE &optional CAUSE)") -(autoload 'straight-use-recipes "straight" "\ -Register a recipe repository using MELPA-STYLE-RECIPE. -This registers the recipe and builds it if it is already cloned. -Note that you probably want the recipe for a recipe repository to -include a nil `:build' property, to unconditionally -inhibit the build phase. - -This function also adds the recipe repository to -`straight-recipe-repositories', at the end of the list. - -Existing recipe repositories are not searched for a recipe for the -recipe repository you are trying to register, because that is strange -and confusing. If you explicitly want this behavior, you can use the -`straight-use-package' API directly. - -Argument CAUSE is for internal use only. - -(fn MELPA-STYLE-RECIPE &optional CAUSE)") -(autoload 'straight-override-recipe "straight" "\ -Register MELPA-STYLE-RECIPE as a recipe override. -This puts it in `straight-recipe-overrides', depending on the -value of `straight-current-profile'. - -(fn MELPA-STYLE-RECIPE)") -(autoload 'straight-check-package "straight" "\ -Rebuild a PACKAGE if it has been modified. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. See also `straight-rebuild-package' and -`straight-check-all'. - -(fn PACKAGE)" t) -(autoload 'straight-check-all "straight" "\ -Rebuild any packages that have been modified. -See also `straight-rebuild-all' and `straight-check-package'. -This function should not be called during init." t) -(autoload 'straight-rebuild-package "straight" "\ -Rebuild a PACKAGE. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument RECURSIVE, rebuild -all dependencies as well. See also `straight-check-package' and -`straight-rebuild-all'. - -(fn PACKAGE &optional RECURSIVE)" t) -(autoload 'straight-rebuild-all "straight" "\ -Rebuild all packages. -See also `straight-check-all' and `straight-rebuild-package'." t) -(autoload 'straight-prune-build-cache "straight" "\ -Prune the build cache. -This means that only packages that were built in the last init -run and subsequent interactive session will remain; other -packages will have their build mtime information and any cached -autoloads discarded.") -(autoload 'straight-prune-build-directory "straight" "\ -Prune the build directory. -This means that only packages that were built in the last init -run and subsequent interactive session will remain; other -packages will have their build directories deleted.") -(autoload 'straight-prune-build "straight" "\ -Prune the build cache and build directory. -This means that only packages that were built in the last init -run and subsequent interactive session will remain; other -packages will have their build mtime information discarded and -their build directories deleted." t) -(autoload 'straight-normalize-package "straight" "\ -Normalize a PACKAGE's local repository to its recipe's configuration. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. - -CONVERT-SNAPSHOTS non-nil (interactively, prefix arg) means if the -repository is a snapshot, convert it to a full repository first. - -(fn PACKAGE &key CONVERT-SNAPSHOTS)" t) -(autoload 'straight-normalize-all "straight" "\ -Normalize all packages. See `straight-normalize-package'. -Return a list of recipes for packages that were not successfully -normalized. If multiple packages come from the same local -repository, only one is normalized. - -PREDICATE, if provided, filters the packages that are normalized. -It is called with the package name as a string, and should return -non-nil if the package should actually be normalized. - -CONVERT-SNAPSHOTS non-nil (interactively, prefix arg) means if -repositories are snapshots, convert them to full repositories first. - -(fn &optional PREDICATE CONVERT-SNAPSHOTS)" t) -(autoload 'straight-fetch-package "straight" "\ -Try to fetch a PACKAGE from the primary remote. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -fetch not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) -(autoload 'straight-fetch-package-and-deps "straight" "\ -Try to fetch a PACKAGE and its (transitive) dependencies. -PACKAGE, its dependencies, their dependencies, etc. are fetched -from their primary remotes. - -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -fetch not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) -(autoload 'straight-fetch-all "straight" "\ -Try to fetch all packages from their primary remotes. -With prefix argument FROM-UPSTREAM, fetch not just from primary -remotes but also from upstreams (for forked packages). - -Return a list of recipes for packages that were not successfully -fetched. If multiple packages come from the same local -repository, only one is fetched. - -PREDICATE, if provided, filters the packages that are fetched. It -is called with the package name as a string, and should return -non-nil if the package should actually be fetched. - -(fn &optional FROM-UPSTREAM PREDICATE)" t) -(autoload 'straight-merge-package "straight" "\ -Try to merge a PACKAGE from the primary remote. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -merge not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) -(autoload 'straight-merge-package-and-deps "straight" "\ -Try to merge a PACKAGE and its (transitive) dependencies. -PACKAGE, its dependencies, their dependencies, etc. are merged -from their primary remotes. - -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -merge not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) -(autoload 'straight-merge-all "straight" "\ -Try to merge all packages from their primary remotes. -With prefix argument FROM-UPSTREAM, merge not just from primary -remotes but also from upstreams (for forked packages). - -Return a list of recipes for packages that were not successfully -merged. If multiple packages come from the same local -repository, only one is merged. - -PREDICATE, if provided, filters the packages that are merged. It -is called with the package name as a string, and should return -non-nil if the package should actually be merged. - -(fn &optional FROM-UPSTREAM PREDICATE)" t) -(autoload 'straight-pull-package "straight" "\ -Try to pull a PACKAGE from the primary remote. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, pull -not just from primary remote but also from upstream (for forked -packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) -(autoload 'straight-pull-package-and-deps "straight" "\ -Try to pull a PACKAGE and its (transitive) dependencies. -PACKAGE, its dependencies, their dependencies, etc. are pulled -from their primary remotes. - -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. With prefix argument FROM-UPSTREAM, -pull not just from primary remote but also from upstream (for -forked packages). - -(fn PACKAGE &optional FROM-UPSTREAM)" t) -(autoload 'straight-pull-all "straight" "\ -Try to pull all packages from their primary remotes. -With prefix argument FROM-UPSTREAM, pull not just from primary -remotes but also from upstreams (for forked packages). - -Return a list of recipes for packages that were not successfully -pulled. If multiple packages come from the same local repository, -only one is pulled. - -PREDICATE, if provided, filters the packages that are pulled. It -is called with the package name as a string, and should return -non-nil if the package should actually be pulled. - -(fn &optional FROM-UPSTREAM PREDICATE)" t) -(autoload 'straight-push-package "straight" "\ -Push a PACKAGE to its primary remote, if necessary. -PACKAGE is a string naming a package. Interactively, select -PACKAGE from the known packages in the current Emacs session -using `completing-read'. - -(fn PACKAGE)" t) -(autoload 'straight-push-all "straight" "\ -Try to push all packages to their primary remotes. - -Return a list of recipes for packages that were not successfully -pushed. If multiple packages come from the same local repository, -only one is pushed. - -PREDICATE, if provided, filters the packages that are normalized. -It is called with the package name as a string, and should return -non-nil if the package should actually be normalized. - -(fn &optional PREDICATE)" t) -(autoload 'straight-freeze-versions "straight" "\ -Write version lockfiles for currently activated packages. -This implies first pushing all packages that have unpushed local -changes. If the package management system has been used since the -last time the init-file was reloaded, offer to fix the situation -by reloading the init-file again. If FORCE is -non-nil (interactively, if a prefix argument is provided), skip -all checks and write the lockfile anyway. - -Currently, writing version lockfiles requires cloning all lazily -installed packages. Hopefully, this inconvenient requirement will -be removed in the future. - -Multiple lockfiles may be written (one for each profile), -according to the value of `straight-profiles'. - -(fn &optional FORCE)" t) -(autoload 'straight-thaw-versions "straight" "\ -Read version lockfiles and restore package versions to those listed." t) -(autoload 'straight-bug-report "straight" "\ -Test straight.el in a clean environment. -ARGS may be any of the following keywords and their respective values: - - :pre-bootstrap (Form)... - Forms evaluated before bootstrapping straight.el - e.g. (setq straight-repository-branch \"develop\") - Note this example is already in the default bootstrapping code. - - - :post-bootstrap (Form)... - Forms evaluated in the testing environment after boostrapping. - e.g. (straight-use-package \\='(example :type git :host github)) - - - :interactive Boolean - If nil, the subprocess will immediately exit after the test. - Output will be printed to `straight-bug-report--process-buffer' - Otherwise, the subprocess will be interactive. - - - :preserve Boolean - If non-nil, the test directory is left in the directory stored in the - variable `temporary-file-directory'. Otherwise, it is - immediately removed after the test is run. - - - :executable String - Indicate the Emacs executable to launch. - Defaults to the path of the current Emacs executable. - - - :raw Boolean - If non-nil, the raw process output is sent to - `straight-bug-report--process-buffer'. Otherwise, it is - formatted as markdown for submitting as an issue. - - - :user-dir String - If non-nil, the test is run with `user-emacs-directory' set to STRING. - Otherwise, a temporary directory is created and used. - Unless absolute, paths are expanded relative to the variable - `temporary-file-directory'. - -ARGS are accessible within the :pre/:post-bootsrap phases via the -locally bound plist, straight-bug-report-args. - -(fn &rest ARGS)" nil t) -(function-put 'straight-bug-report 'lisp-indent-function 0) -(autoload 'straight-dependencies "straight" "\ -Return a list of PACKAGE's dependencies, as strings. -PACKAGE is a string. If the dependencies have dependencies themselves, -then instead of strings they will be lists whose cars are the -dependencies and whose cdrs are the recursive dependencies in the same -format returned from `straight-dependencies'. - -Interactively, the user selects a package to show dependencies for, and -the dependencies are shown in the echo area. - -(fn &optional PACKAGE)" t) -(autoload 'straight-dependents "straight" "\ -Return a list of PACKAGE's dependents, as strings. -Dependents are packages that have the given package as a dependency. In -other words, this is the opposite of `straight-dependencies'. - -PACKAGE is a string. If the dependents have dependents themselves, then -instead of strings they will be lists whose cars are the dependents and -whose cdrs are the recursive dependents in the same format returned from -`straight-dependents'. - -(fn &optional PACKAGE)" t) -(register-definition-prefixes "straight" '("straight-")) - - -;;; Generated autoloads from straight-ert-print-hack.el - -(register-definition-prefixes "straight-ert-print-hack" '("+without-print-limits")) - - -;;; Generated autoloads from straight-x.el - -(defvar straight-x-pinned-packages nil "\ -List of pinned packages.") -(register-definition-prefixes "straight-x" '("straight-x-")) - -;;; End of scraped data - -(provide 'straight-autoloads) - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; no-native-compile: t -;; coding: utf-8-emacs-unix -;; End: - -;;; straight-autoloads.el ends here diff --git a/straight/build/straight/straight-ert-print-hack.el b/straight/build/straight/straight-ert-print-hack.el deleted file mode 120000 index 25d02c3..0000000 --- a/straight/build/straight/straight-ert-print-hack.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/straight.el/straight-ert-print-hack.el
\ No newline at end of file diff --git a/straight/build/straight/straight-ert-print-hack.elc b/straight/build/straight/straight-ert-print-hack.elc Binary files differdeleted file mode 100644 index ba1d012..0000000 --- a/straight/build/straight/straight-ert-print-hack.elc +++ /dev/null diff --git a/straight/build/straight/straight-x.el b/straight/build/straight/straight-x.el deleted file mode 120000 index ea0ad68..0000000 --- a/straight/build/straight/straight-x.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/straight.el/straight-x.el
\ No newline at end of file diff --git a/straight/build/straight/straight-x.elc b/straight/build/straight/straight-x.elc Binary files differdeleted file mode 100644 index 59873f0..0000000 --- a/straight/build/straight/straight-x.elc +++ /dev/null diff --git a/straight/build/straight/straight.el b/straight/build/straight/straight.el deleted file mode 120000 index 6c2a30b..0000000 --- a/straight/build/straight/straight.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/straight.el/straight.el
\ No newline at end of file diff --git a/straight/build/straight/straight.elc b/straight/build/straight/straight.elc Binary files differdeleted file mode 100644 index 59528c0..0000000 --- a/straight/build/straight/straight.elc +++ /dev/null diff --git a/straight/build/use-package/.github/PULL_REQUEST_TEMPLATE.md b/straight/build/use-package/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 120000 index ab8cbe4..0000000 --- a/straight/build/use-package/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/.github/PULL_REQUEST_TEMPLATE.md
\ No newline at end of file diff --git a/straight/build/use-package/dir b/straight/build/use-package/dir deleted file mode 120000 index 9d95fe9..0000000 --- a/straight/build/use-package/dir +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/dir
\ No newline at end of file diff --git a/straight/build/use-package/doclicense.info b/straight/build/use-package/doclicense.info deleted file mode 100644 index c8d7e71..0000000 --- a/straight/build/use-package/doclicense.info +++ /dev/null @@ -1,488 +0,0 @@ -This is doclicense.info, produced by makeinfo version 7.2 from -doclicense.texi. - - Version 1.3, 3 November 2008 - - Copyright © 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. - <https://fsf.org/> - - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - 0. PREAMBLE - - The purpose of this License is to make a manual, textbook, or other - functional and useful document “free” in the sense of freedom: to - assure everyone the effective freedom to copy and redistribute it, - with or without modifying it, either commercially or - noncommercially. Secondarily, this License preserves for the - author and publisher a way to get credit for their work, while not - being considered responsible for modifications made by others. - - This License is a kind of "copyleft", which means that derivative - works of the document must themselves be free in the same sense. - It complements the GNU General Public License, which is a copyleft - license designed for free software. - - We have designed this License in order to use it for manuals for - free software, because free software needs free documentation: a - free program should come with manuals providing the same freedoms - that the software does. But this License is not limited to - software manuals; it can be used for any textual work, regardless - of subject matter or whether it is published as a printed book. We - recommend this License principally for works whose purpose is - instruction or reference. - - 1. APPLICABILITY AND DEFINITIONS - - This License applies to any manual or other work, in any medium, - that contains a notice placed by the copyright holder saying it can - be distributed under the terms of this License. Such a notice - grants a world-wide, royalty-free license, unlimited in duration, - to use that work under the conditions stated herein. The - "Document", below, refers to any such manual or work. Any member - of the public is a licensee, and is addressed as "you". You accept - the license if you copy, modify or distribute the work in a way - requiring permission under copyright law. - - A "Modified Version" of the Document means any work containing the - Document or a portion of it, either copied verbatim, or with - modifications and/or translated into another language. - - A "Secondary Section" is a named appendix or a front-matter section - of the Document that deals exclusively with the relationship of the - publishers or authors of the Document to the Document's overall - subject (or to related matters) and contains nothing that could - fall directly within that overall subject. (Thus, if the Document - is in part a textbook of mathematics, a Secondary Section may not - explain any mathematics.) The relationship could be a matter of - historical connection with the subject or with related matters, or - of legal, commercial, philosophical, ethical or political position - regarding them. - - The "Invariant Sections" are certain Secondary Sections whose - titles are designated, as being those of Invariant Sections, in the - notice that says that the Document is released under this License. - If a section does not fit the above definition of Secondary then it - is not allowed to be designated as Invariant. The Document may - contain zero Invariant Sections. If the Document does not identify - any Invariant Sections then there are none. - - The "Cover Texts" are certain short passages of text that are - listed, as Front-Cover Texts or Back-Cover Texts, in the notice - that says that the Document is released under this License. A - Front-Cover Text may be at most 5 words, and a Back-Cover Text may - be at most 25 words. - - A "Transparent" copy of the Document means a machine-readable copy, - represented in a format whose specification is available to the - general public, that is suitable for revising the document - straightforwardly with generic text editors or (for images composed - of pixels) generic paint programs or (for drawings) some widely - available drawing editor, and that is suitable for input to text - formatters or for automatic translation to a variety of formats - suitable for input to text formatters. A copy made in an otherwise - Transparent file format whose markup, or absence of markup, has - been arranged to thwart or discourage subsequent modification by - readers is not Transparent. An image format is not Transparent if - used for any substantial amount of text. A copy that is not - "Transparent" is called "Opaque". - - Examples of suitable formats for Transparent copies include plain - ASCII without markup, Texinfo input format, LaTeX input format, - SGML or XML using a publicly available DTD, and standard-conforming - simple HTML, PostScript or PDF designed for human modification. - Examples of transparent image formats include PNG, XCF and JPG. - Opaque formats include proprietary formats that can be read and - edited only by proprietary word processors, SGML or XML for which - the DTD and/or processing tools are not generally available, and - the machine-generated HTML, PostScript or PDF produced by some word - processors for output purposes only. - - The "Title Page" means, for a printed book, the title page itself, - plus such following pages as are needed to hold, legibly, the - material this License requires to appear in the title page. For - works in formats which do not have any title page as such, "Title - Page" means the text near the most prominent appearance of the - work's title, preceding the beginning of the body of the text. - - The "publisher" means any person or entity that distributes copies - of the Document to the public. - - A section "Entitled XYZ" means a named subunit of the Document - whose title either is precisely XYZ or contains XYZ in parentheses - following text that translates XYZ in another language. (Here XYZ - stands for a specific section name mentioned below, such as - "Acknowledgements", "Dedications", "Endorsements", or "History".) - To "Preserve the Title" of such a section when you modify the - Document means that it remains a section "Entitled XYZ" according - to this definition. - - The Document may include Warranty Disclaimers next to the notice - which states that this License applies to the Document. These - Warranty Disclaimers are considered to be included by reference in - this License, but only as regards disclaiming warranties: any other - implication that these Warranty Disclaimers may have is void and - has no effect on the meaning of this License. - - 2. VERBATIM COPYING - - You may copy and distribute the Document in any medium, either - commercially or noncommercially, provided that this License, the - copyright notices, and the license notice saying this License - applies to the Document are reproduced in all copies, and that you - add no other conditions whatsoever to those of this License. You - may not use technical measures to obstruct or control the reading - or further copying of the copies you make or distribute. However, - you may accept compensation in exchange for copies. If you - distribute a large enough number of copies you must also follow the - conditions in section 3. - - You may also lend copies, under the same conditions stated above, - and you may publicly display copies. - - 3. COPYING IN QUANTITY - - If you publish printed copies (or copies in media that commonly - have printed covers) of the Document, numbering more than 100, and - the Document's license notice requires Cover Texts, you must - enclose the copies in covers that carry, clearly and legibly, all - these Cover Texts: Front-Cover Texts on the front cover, and - Back-Cover Texts on the back cover. Both covers must also clearly - and legibly identify you as the publisher of these copies. The - front cover must present the full title with all words of the title - equally prominent and visible. You may add other material on the - covers in addition. Copying with changes limited to the covers, as - long as they preserve the title of the Document and satisfy these - conditions, can be treated as verbatim copying in other respects. - - If the required texts for either cover are too voluminous to fit - legibly, you should put the first ones listed (as many as fit - reasonably) on the actual cover, and continue the rest onto - adjacent pages. - - If you publish or distribute Opaque copies of the Document - numbering more than 100, you must either include a machine-readable - Transparent copy along with each Opaque copy, or state in or with - each Opaque copy a computer-network location from which the general - network-using public has access to download using public-standard - network protocols a complete Transparent copy of the Document, free - of added material. If you use the latter option, you must take - reasonably prudent steps, when you begin distribution of Opaque - copies in quantity, to ensure that this Transparent copy will - remain thus accessible at the stated location until at least one - year after the last time you distribute an Opaque copy (directly or - through your agents or retailers) of that edition to the public. - - It is requested, but not required, that you contact the authors of - the Document well before redistributing any large number of copies, - to give them a chance to provide you with an updated version of the - Document. - - 4. MODIFICATIONS - - You may copy and distribute a Modified Version of the Document - under the conditions of sections 2 and 3 above, provided that you - release the Modified Version under precisely this License, with the - Modified Version filling the role of the Document, thus licensing - distribution and modification of the Modified Version to whoever - possesses a copy of it. In addition, you must do these things in - the Modified Version: - - A. Use in the Title Page (and on the covers, if any) a title - distinct from that of the Document, and from those of previous - versions (which should, if there were any, be listed in the - History section of the Document). You may use the same title - as a previous version if the original publisher of that - version gives permission. - - B. List on the Title Page, as authors, one or more persons or - entities responsible for authorship of the modifications in - the Modified Version, together with at least five of the - principal authors of the Document (all of its principal - authors, if it has fewer than five), unless they release you - from this requirement. - - C. State on the Title page the name of the publisher of the - Modified Version, as the publisher. - - D. Preserve all the copyright notices of the Document. - - E. Add an appropriate copyright notice for your modifications - adjacent to the other copyright notices. - - F. Include, immediately after the copyright notices, a license - notice giving the public permission to use the Modified - Version under the terms of this License, in the form shown in - the Addendum below. - - G. Preserve in that license notice the full lists of Invariant - Sections and required Cover Texts given in the Document's - license notice. - - H. Include an unaltered copy of this License. - - I. Preserve the section Entitled "History", Preserve its Title, - and add to it an item stating at least the title, year, new - authors, and publisher of the Modified Version as given on the - Title Page. If there is no section Entitled "History" in the - Document, create one stating the title, year, authors, and - publisher of the Document as given on its Title Page, then add - an item describing the Modified Version as stated in the - previous sentence. - - J. Preserve the network location, if any, given in the Document - for public access to a Transparent copy of the Document, and - likewise the network locations given in the Document for - previous versions it was based on. These may be placed in the - "History" section. You may omit a network location for a work - that was published at least four years before the Document - itself, or if the original publisher of the version it refers - to gives permission. - - K. For any section Entitled "Acknowledgements" or "Dedications", - Preserve the Title of the section, and preserve in the section - all the substance and tone of each of the contributor - acknowledgements and/or dedications given therein. - - L. Preserve all the Invariant Sections of the Document, unaltered - in their text and in their titles. Section numbers or the - equivalent are not considered part of the section titles. - - M. Delete any section Entitled "Endorsements". Such a section - may not be included in the Modified Version. - - N. Do not retitle any existing section to be Entitled - "Endorsements" or to conflict in title with any Invariant - Section. - - O. Preserve any Warranty Disclaimers. - - If the Modified Version includes new front-matter sections or - appendices that qualify as Secondary Sections and contain no - material copied from the Document, you may at your option designate - some or all of these sections as invariant. To do this, add their - titles to the list of Invariant Sections in the Modified Version's - license notice. These titles must be distinct from any other - section titles. - - You may add a section Entitled "Endorsements", provided it contains - nothing but endorsements of your Modified Version by various - parties--for example, statements of peer review or that the text - has been approved by an organization as the authoritative - definition of a standard. - - You may add a passage of up to five words as a Front-Cover Text, - and a passage of up to 25 words as a Back-Cover Text, to the end of - the list of Cover Texts in the Modified Version. Only one passage - of Front-Cover Text and one of Back-Cover Text may be added by (or - through arrangements made by) any one entity. If the Document - already includes a cover text for the same cover, previously added - by you or by arrangement made by the same entity you are acting on - behalf of, you may not add another; but you may replace the old - one, on explicit permission from the previous publisher that added - the old one. - - The author(s) and publisher(s) of the Document do not by this - License give permission to use their names for publicity for or to - assert or imply endorsement of any Modified Version. - - 5. COMBINING DOCUMENTS - - You may combine the Document with other documents released under - this License, under the terms defined in section 4 above for - modified versions, provided that you include in the combination all - of the Invariant Sections of all of the original documents, - unmodified, and list them all as Invariant Sections of your - combined work in its license notice, and that you preserve all - their Warranty Disclaimers. - - The combined work need only contain one copy of this License, and - multiple identical Invariant Sections may be replaced with a single - copy. If there are multiple Invariant Sections with the same name - but different contents, make the title of each such section unique - by adding at the end of it, in parentheses, the name of the - original author or publisher of that section if known, or else a - unique number. Make the same adjustment to the section titles in - the list of Invariant Sections in the license notice of the - combined work. - - In the combination, you must combine any sections Entitled - "History" in the various original documents, forming one section - Entitled "History"; likewise combine any sections Entitled - "Acknowledgements", and any sections Entitled "Dedications". You - must delete all sections Entitled "Endorsements." - - 6. COLLECTIONS OF DOCUMENTS - - You may make a collection consisting of the Document and other - documents released under this License, and replace the individual - copies of this License in the various documents with a single copy - that is included in the collection, provided that you follow the - rules of this License for verbatim copying of each of the documents - in all other respects. - - You may extract a single document from such a collection, and - distribute it individually under this License, provided you insert - a copy of this License into the extracted document, and follow this - License in all other respects regarding verbatim copying of that - document. - - 7. AGGREGATION WITH INDEPENDENT WORKS - - A compilation of the Document or its derivatives with other - separate and independent documents or works, in or on a volume of a - storage or distribution medium, is called an "aggregate" if the - copyright resulting from the compilation is not used to limit the - legal rights of the compilation's users beyond what the individual - works permit. When the Document is included in an aggregate, this - License does not apply to the other works in the aggregate which - are not themselves derivative works of the Document. - - If the Cover Text requirement of section 3 is applicable to these - copies of the Document, then if the Document is less than one half - of the entire aggregate, the Document's Cover Texts may be placed - on covers that bracket the Document within the aggregate, or the - electronic equivalent of covers if the Document is in electronic - form. Otherwise they must appear on printed covers that bracket - the whole aggregate. - - 8. TRANSLATION - - Translation is considered a kind of modification, so you may - distribute translations of the Document under the terms of section - 4. Replacing Invariant Sections with translations requires special - permission from their copyright holders, but you may include - translations of some or all Invariant Sections in addition to the - original versions of these Invariant Sections. You may include a - translation of this License, and all the license notices in the - Document, and any Warranty Disclaimers, provided that you also - include the original English version of this License and the - original versions of those notices and disclaimers. In case of a - disagreement between the translation and the original version of - this License or a notice or disclaimer, the original version will - prevail. - - If a section in the Document is Entitled "Acknowledgements", - "Dedications", or "History", the requirement (section 4) to - Preserve its Title (section 1) will typically require changing the - actual title. - - 9. TERMINATION - - You may not copy, modify, sublicense, or distribute the Document - except as expressly provided under this License. Any attempt - otherwise to copy, modify, sublicense, or distribute it is void, - and will automatically terminate your rights under this License. - - However, if you cease all violation of this License, then your - license from a particular copyright holder is reinstated (a) - provisionally, unless and until the copyright holder explicitly and - finally terminates your license, and (b) permanently, if the - copyright holder fails to notify you of the violation by some - reasonable means prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is - reinstated permanently if the copyright holder notifies you of the - violation by some reasonable means, this is the first time you have - received notice of violation of this License (for any work) from - that copyright holder, and you cure the violation prior to 30 days - after your receipt of the notice. - - Termination of your rights under this section does not terminate - the licenses of parties who have received copies or rights from you - under this License. If your rights have been terminated and not - permanently reinstated, receipt of a copy of some or all of the - same material does not give you any rights to use it. - - 10. FUTURE REVISIONS OF THIS LICENSE - - The Free Software Foundation may publish new, revised versions of - the GNU Free Documentation License from time to time. Such new - versions will be similar in spirit to the present version, but may - differ in detail to address new problems or concerns. See - <https://www.gnu.org/licenses/>. - - Each version of the License is given a distinguishing version - number. If the Document specifies that a particular numbered - version of this License "or any later version" applies to it, you - have the option of following the terms and conditions either of - that specified version or of any later version that has been - published (not as a draft) by the Free Software Foundation. If the - Document does not specify a version number of this License, you may - choose any version ever published (not as a draft) by the Free - Software Foundation. If the Document specifies that a proxy can - decide which future versions of this License can be used, that - proxy's public statement of acceptance of a version permanently - authorizes you to choose that version for the Document. - - 11. RELICENSING - - "Massive Multiauthor Collaboration Site" (or "MMC Site") means any - World Wide Web server that publishes copyrightable works and also - provides prominent facilities for anybody to edit those works. A - public wiki that anybody can edit is an example of such a server. - A "Massive Multiauthor Collaboration" (or "MMC") contained in the - site means any set of copyrightable works thus published on the MMC - site. - - "CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 - license published by Creative Commons Corporation, a not-for-profit - corporation with a principal place of business in San Francisco, - California, as well as future copyleft versions of that license - published by that same organization. - - "Incorporate" means to publish or republish a Document, in whole or - in part, as part of another Document. - - An MMC is "eligible for relicensing" if it is licensed under this - License, and if all works that were first published under this - License somewhere other than this MMC, and subsequently - incorporated in whole or in part into the MMC, (1) had no cover - texts or invariant sections, and (2) were thus incorporated prior - to November 1, 2008. - - The operator of an MMC Site may republish an MMC contained in the - site under CC-BY-SA on the same site at any time before August 1, - 2009, provided the MMC is eligible for relicensing. - -ADDENDUM: How to use this License for your documents -==================================================== - -To use this License in a document you have written, include a copy of -the License in the document and put the following copyright and license -notices just after the title page: - - Copyright (C) YEAR YOUR NAME. - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.3 - or any later version published by the Free Software Foundation; - with no Invariant Sections, no Front-Cover Texts, and no Back-Cover - Texts. A copy of the license is included in the section entitled ``GNU - Free Documentation License''. - - If you have Invariant Sections, Front-Cover Texts and Back-Cover -Texts, replace the "with...Texts." line with this: - - with the Invariant Sections being LIST THEIR TITLES, with - the Front-Cover Texts being LIST, and with the Back-Cover Texts - being LIST. - - If you have Invariant Sections without Cover Texts, or some other -combination of the three, merge those two alternatives to suit the -situation. - - If your document contains nontrivial examples of program code, we -recommend releasing these examples in parallel under your choice of free -software license, such as the GNU General Public License, to permit -their use in free software. - - -Tag Table: - -End Tag Table - - -Local Variables: -coding: utf-8 -End: diff --git a/straight/build/use-package/doclicense.texi b/straight/build/use-package/doclicense.texi deleted file mode 120000 index ba8e92c..0000000 --- a/straight/build/use-package/doclicense.texi +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/doclicense.texi
\ No newline at end of file diff --git a/straight/build/use-package/docstyle.info b/straight/build/use-package/docstyle.info deleted file mode 100644 index 600139c..0000000 --- a/straight/build/use-package/docstyle.info +++ /dev/null @@ -1,12 +0,0 @@ -This is docstyle.info, produced by makeinfo version 7.2 from -docstyle.texi. - - -Tag Table: - -End Tag Table - - -Local Variables: -coding: utf-8 -End: diff --git a/straight/build/use-package/docstyle.texi b/straight/build/use-package/docstyle.texi deleted file mode 120000 index 365e3e5..0000000 --- a/straight/build/use-package/docstyle.texi +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/docstyle.texi
\ No newline at end of file diff --git a/straight/build/use-package/emacsver.info b/straight/build/use-package/emacsver.info deleted file mode 100644 index 21799eb..0000000 --- a/straight/build/use-package/emacsver.info +++ /dev/null @@ -1,12 +0,0 @@ -This is emacsver.info, produced by makeinfo version 7.2 from -emacsver.texi. - - -Tag Table: - -End Tag Table - - -Local Variables: -coding: utf-8 -End: diff --git a/straight/build/use-package/emacsver.texi b/straight/build/use-package/emacsver.texi deleted file mode 120000 index dab20c3..0000000 --- a/straight/build/use-package/emacsver.texi +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/emacsver.texi
\ No newline at end of file diff --git a/straight/build/use-package/use-package-autoloads.el b/straight/build/use-package/use-package-autoloads.el deleted file mode 100644 index feec8c1..0000000 --- a/straight/build/use-package/use-package-autoloads.el +++ /dev/null @@ -1,206 +0,0 @@ -;;; use-package-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- -;; Generated by the `loaddefs-generate' function. - -;; This file is part of GNU Emacs. - -;;; Code: - - - -;;; Generated autoloads from use-package-bind-key.el - -(autoload 'use-package-autoload-keymap "use-package-bind-key" "\ -Load PACKAGE and bind key sequence invoking this function to KEYMAP-SYMBOL. -Then simulate pressing the same key sequence a again, so that the -next key pressed is routed to the newly loaded keymap. - -This function supports use-package's :bind-keymap keyword. It -works by binding the given key sequence to an invocation of this -function for a particular keymap. The keymap is expected to be -defined by the package. In this way, loading the package is -deferred until the prefix key sequence is pressed. - -(fn KEYMAP-SYMBOL PACKAGE OVERRIDE)") -(autoload 'use-package-normalize-binder "use-package-bind-key" "\ - - -(fn NAME KEYWORD ARGS)") -(defalias 'use-package-normalize/:bind 'use-package-normalize-binder) -(defalias 'use-package-normalize/:bind* 'use-package-normalize-binder) -(defalias 'use-package-autoloads/:bind 'use-package-autoloads-mode) -(defalias 'use-package-autoloads/:bind* 'use-package-autoloads-mode) -(autoload 'use-package-handler/:bind "use-package-bind-key" "\ - - -(fn NAME KEYWORD ARGS REST STATE &optional BIND-MACRO)") -(defalias 'use-package-normalize/:bind-keymap 'use-package-normalize-binder) -(defalias 'use-package-normalize/:bind-keymap* 'use-package-normalize-binder) -(autoload 'use-package-handler/:bind-keymap "use-package-bind-key" "\ - - -(fn NAME KEYWORD ARGS REST STATE &optional OVERRIDE)") -(autoload 'use-package-handler/:bind-keymap* "use-package-bind-key" "\ - - -(fn NAME KEYWORD ARG REST STATE)") -(register-definition-prefixes "use-package-bind-key" '("use-package-handler/:bind*")) - - -;;; Generated autoloads from use-package-core.el - -(autoload 'use-package "use-package-core" "\ -Declare an Emacs package by specifying a group of configuration options. - -For the full documentation, see Info node `(use-package) top'. -Usage: - - (use-package package-name - [:keyword [option]]...) - -:init Code to run before PACKAGE-NAME has been loaded. -:config Code to run after PACKAGE-NAME has been loaded. Note that - if loading is deferred for any reason, this code does not - execute until the lazy load has occurred. -:preface Code to be run before everything except `:disabled'; this - can be used to define functions for use in `:if', or that - should be seen by the byte-compiler. - -:mode Form to be added to `auto-mode-alist'. -:magic Form to be added to `magic-mode-alist'. -:magic-fallback Form to be added to `magic-fallback-mode-alist'. -:interpreter Form to be added to `interpreter-mode-alist'. - -:commands Define autoloads for commands defined by the package. - This is useful if the package is being lazily loaded, - and you wish to conditionally call functions in your - `:init' block that are defined in the package. -:autoload Similar to `:commands', but used for non-interactive functions. -:hook Specify hook(s) to attach this package to. - -:bind Bind keys, and define autoloads for the bound commands. -:bind* Bind keys, and define autoloads for the bound commands, - *overriding all minor mode bindings*. -:bind-keymap Bind a key prefix to an auto-loaded keymap defined in the - package. This is like `:bind', but for keymaps. -:bind-keymap* Like `:bind-keymap', but overrides all minor mode bindings - -:defer Defer loading of a package -- this is implied when using - `:commands', `:bind', `:bind*', `:mode', `:magic', `:hook', - `:magic-fallback', or `:interpreter'. This can be an integer, - to force loading after N seconds of idle time, if the package - has not already been loaded. -:demand Prevent the automatic deferred loading introduced by constructs - such as `:bind' (see `:defer' for the complete list). - -:after Delay the effect of the use-package declaration - until after the named libraries have loaded. - Before they have been loaded, no other keyword - has any effect at all, and once they have been - loaded it is as if `:after' was not specified. - -:if EXPR Initialize and load only if EXPR evaluates to a non-nil value. -:disabled The package is ignored completely if this keyword is present. -:defines Declare certain variables to silence the byte-compiler. -:functions Declare certain functions to silence the byte-compiler. -:load-path Add to the `load-path' before attempting to load the package. -:diminish Support for diminish.el (if installed). -:delight Support for delight.el (if installed). -:custom Call `customize-set-variable' on each variable - definition without modifying the Emacs `custom-file'. - (compare with `custom-set-variables'). -:custom-face Call `face-spec-set' with each face definition. -:ensure Loads the package using package.el if necessary. -:pin Pin the package to an archive. -:vc Install the package directly from a version control system - (using `package-vc.el'). - -(fn NAME &rest ARGS)" nil t) -(function-put 'use-package 'lisp-indent-function 'defun) -(register-definition-prefixes "use-package-core" '("use-package-")) - - -;;; Generated autoloads from use-package-delight.el - -(autoload 'use-package-normalize/:delight "use-package-delight" "\ -Normalize arguments to delight. - -(fn NAME KEYWORD ARGS)") -(autoload 'use-package-handler/:delight "use-package-delight" "\ - - -(fn NAME KEYWORD ARGS REST STATE)") -(register-definition-prefixes "use-package-delight" '("use-package-normalize-delight")) - - -;;; Generated autoloads from use-package-diminish.el - -(autoload 'use-package-normalize/:diminish "use-package-diminish" "\ - - -(fn NAME KEYWORD ARGS)") -(autoload 'use-package-handler/:diminish "use-package-diminish" "\ - - -(fn NAME KEYWORD ARG REST STATE)") -(register-definition-prefixes "use-package-diminish" '("use-package-normalize-diminish")) - - -;;; Generated autoloads from use-package-ensure.el - -(autoload 'use-package-normalize/:ensure "use-package-ensure" "\ - - -(fn NAME KEYWORD ARGS)") -(autoload 'use-package-handler/:ensure "use-package-ensure" "\ - - -(fn NAME KEYWORD ENSURE REST STATE)") -(register-definition-prefixes "use-package-ensure" '("use-package-")) - - -;;; Generated autoloads from use-package-ensure-system-package.el - -(autoload 'use-package-normalize/:ensure-system-package "use-package-ensure-system-package" "\ -Turn ARGS into a list of conses of the form (PACKAGE-NAME . INSTALL-COMMAND). - -(fn NAME-SYMBOL KEYWORD ARGS)") -(autoload 'use-package-handler/:ensure-system-package "use-package-ensure-system-package" "\ -Execute the handler for `:ensure-system-package' keyword in `use-package'. - -(fn NAME KEYWORD ARG REST STATE)") -(register-definition-prefixes "use-package-ensure-system-package" '("use-package-ensure-system-package-")) - - -;;; Generated autoloads from use-package-jump.el - -(autoload 'use-package-jump-to-package-form "use-package-jump" "\ -Attempt to find and jump to the `use-package' form that loaded PACKAGE. -This will only find the form if that form actually required -PACKAGE. If PACKAGE was previously required then this function -will jump to the file that originally required PACKAGE instead. - -(fn PACKAGE)" t) -(register-definition-prefixes "use-package-jump" '("use-package-find-require")) - - -;;; Generated autoloads from use-package-lint.el - -(autoload 'use-package-lint "use-package-lint" "\ -Check for errors in `use-package' declarations. -For example, if the module's `:if' condition is met, but even -with the specified `:load-path' the module cannot be found." t) -(register-definition-prefixes "use-package-lint" '("use-package-lint-declaration")) - -;;; End of scraped data - -(provide 'use-package-autoloads) - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; no-native-compile: t -;; coding: utf-8-emacs-unix -;; End: - -;;; use-package-autoloads.el ends here diff --git a/straight/build/use-package/use-package-bind-key.el b/straight/build/use-package/use-package-bind-key.el deleted file mode 120000 index eef114c..0000000 --- a/straight/build/use-package/use-package-bind-key.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package-bind-key.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package-bind-key.elc b/straight/build/use-package/use-package-bind-key.elc Binary files differdeleted file mode 100644 index 30f8ff2..0000000 --- a/straight/build/use-package/use-package-bind-key.elc +++ /dev/null diff --git a/straight/build/use-package/use-package-core.el b/straight/build/use-package/use-package-core.el deleted file mode 120000 index 823b9cc..0000000 --- a/straight/build/use-package/use-package-core.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package-core.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package-core.elc b/straight/build/use-package/use-package-core.elc Binary files differdeleted file mode 100644 index bedc939..0000000 --- a/straight/build/use-package/use-package-core.elc +++ /dev/null diff --git a/straight/build/use-package/use-package-delight.el b/straight/build/use-package/use-package-delight.el deleted file mode 120000 index 3a34ec5..0000000 --- a/straight/build/use-package/use-package-delight.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package-delight.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package-delight.elc b/straight/build/use-package/use-package-delight.elc Binary files differdeleted file mode 100644 index 767ca8d..0000000 --- a/straight/build/use-package/use-package-delight.elc +++ /dev/null diff --git a/straight/build/use-package/use-package-diminish.el b/straight/build/use-package/use-package-diminish.el deleted file mode 120000 index 12fda02..0000000 --- a/straight/build/use-package/use-package-diminish.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package-diminish.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package-diminish.elc b/straight/build/use-package/use-package-diminish.elc Binary files differdeleted file mode 100644 index 208912e..0000000 --- a/straight/build/use-package/use-package-diminish.elc +++ /dev/null diff --git a/straight/build/use-package/use-package-ensure-system-package.el b/straight/build/use-package/use-package-ensure-system-package.el deleted file mode 120000 index 5568d5b..0000000 --- a/straight/build/use-package/use-package-ensure-system-package.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package-ensure-system-package.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package-ensure-system-package.elc b/straight/build/use-package/use-package-ensure-system-package.elc Binary files differdeleted file mode 100644 index c1ee66d..0000000 --- a/straight/build/use-package/use-package-ensure-system-package.elc +++ /dev/null diff --git a/straight/build/use-package/use-package-ensure.el b/straight/build/use-package/use-package-ensure.el deleted file mode 120000 index 9fb4702..0000000 --- a/straight/build/use-package/use-package-ensure.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package-ensure.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package-ensure.elc b/straight/build/use-package/use-package-ensure.elc Binary files differdeleted file mode 100644 index 65f006f..0000000 --- a/straight/build/use-package/use-package-ensure.elc +++ /dev/null diff --git a/straight/build/use-package/use-package-jump.el b/straight/build/use-package/use-package-jump.el deleted file mode 120000 index 9fc7b5b..0000000 --- a/straight/build/use-package/use-package-jump.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package-jump.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package-jump.elc b/straight/build/use-package/use-package-jump.elc Binary files differdeleted file mode 100644 index 112016d..0000000 --- a/straight/build/use-package/use-package-jump.elc +++ /dev/null diff --git a/straight/build/use-package/use-package-lint.el b/straight/build/use-package/use-package-lint.el deleted file mode 120000 index b192667..0000000 --- a/straight/build/use-package/use-package-lint.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package-lint.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package-lint.elc b/straight/build/use-package/use-package-lint.elc Binary files differdeleted file mode 100644 index c9fc593..0000000 --- a/straight/build/use-package/use-package-lint.elc +++ /dev/null diff --git a/straight/build/use-package/use-package-pkg.el b/straight/build/use-package/use-package-pkg.el deleted file mode 120000 index c8c78b7..0000000 --- a/straight/build/use-package/use-package-pkg.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package-pkg.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package.el b/straight/build/use-package/use-package.el deleted file mode 120000 index 8bfa511..0000000 --- a/straight/build/use-package/use-package.el +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package.el
\ No newline at end of file diff --git a/straight/build/use-package/use-package.elc b/straight/build/use-package/use-package.elc Binary files differdeleted file mode 100644 index 099d405..0000000 --- a/straight/build/use-package/use-package.elc +++ /dev/null diff --git a/straight/build/use-package/use-package.info b/straight/build/use-package/use-package.info deleted file mode 120000 index a4d3ab4..0000000 --- a/straight/build/use-package/use-package.info +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package.info
\ No newline at end of file diff --git a/straight/build/use-package/use-package.texi b/straight/build/use-package/use-package.texi deleted file mode 120000 index a0c981c..0000000 --- a/straight/build/use-package/use-package.texi +++ /dev/null @@ -1 +0,0 @@ -/home/bh/.config/emacs/straight/repos/use-package/use-package.texi
\ No newline at end of file diff --git a/straight/repos/annalist b/straight/repos/annalist deleted file mode 160000 -Subproject e1ef5dad75fa502d761f70d9ddf1aeb1c423f41 diff --git a/straight/repos/bind-key b/straight/repos/bind-key deleted file mode 160000 -Subproject ec9d0505febe2556b47457355763f5f1408a35a diff --git a/straight/repos/diminish b/straight/repos/diminish deleted file mode 160000 -Subproject 4dd14bdbdc335d23aeef19c5d37dcd181201243 diff --git a/straight/repos/el-get b/straight/repos/el-get deleted file mode 160000 -Subproject 64112351b1f58c77463b8802ddd7f78964c9c5c diff --git a/straight/repos/emacsmirror-mirror b/straight/repos/emacsmirror-mirror deleted file mode 160000 -Subproject fcb09f7e152a0f3a8f77ac66a3d051a1d206fa6 diff --git a/straight/repos/evil b/straight/repos/evil deleted file mode 160000 -Subproject 729d9a58b387704011a115c9200614e32da3cef diff --git a/straight/repos/evil-collection b/straight/repos/evil-collection deleted file mode 160000 -Subproject cd6cdf337ea96abc742a97be61c817788f51241 diff --git a/straight/repos/gnu-elpa-mirror b/straight/repos/gnu-elpa-mirror deleted file mode 160000 -Subproject ea027634bef47539058e14d3cf9e081cd64abbf diff --git a/straight/repos/goto-chg b/straight/repos/goto-chg deleted file mode 160000 -Subproject 72f556524b88e9d30dc7fc5b0dc32078c166fda diff --git a/straight/repos/melpa b/straight/repos/melpa deleted file mode 160000 -Subproject 83bfae0e6c0de8435359368192f7a73723197a7 diff --git a/straight/repos/nongnu-elpa b/straight/repos/nongnu-elpa deleted file mode 160000 -Subproject 1084df2a9337a08b7becfabb9518e51a42231f9 diff --git a/straight/repos/straight.el b/straight/repos/straight.el deleted file mode 160000 -Subproject 4b6289f42a4da0c1bae694ba918b43c72daf033 diff --git a/straight/repos/use-package b/straight/repos/use-package deleted file mode 160000 -Subproject c95bceeadad393ef5e9c85e3172e3434f9fbaac diff --git a/url/cache/bh/https/org/wikimedia/030e2a481473bc99278ed6ab058f4eef b/url/cache/bh/https/org/wikimedia/030e2a481473bc99278ed6ab058f4eef new file mode 100644 index 0000000..b7f530b --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/030e2a481473bc99278ed6ab058f4eef @@ -0,0 +1,81 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 071de0d7365a25822c9ff04f42b1e71a22969eaa +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2027 +date: Tue, 09 Dec 2025 09:40:26 GMT +age: 110987 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/10 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2079 +x-request-id: cad28185-33ec-4e59-8b1b-a3a6b3279a6a +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="10.371ex" height="8.843ex" style="vertical-align: -3.838ex;" viewBox="0 -2154.8 4465.1 3807.2" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\begin{aligned}y&=x^{2}\\{\frac {dy}{dx}}&=2x.\end{aligned}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(167,0)"> +<g transform="translate(-11,0)"> + <use xlink:href="#E1-MJMATHI-79" x="958" y="1134"></use> +<g transform="translate(0,-793)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1216" height="60" x="0" y="220"></rect> +<g transform="translate(97,725)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="523" y="0"></use> +</g> +<g transform="translate(60,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</g> +</g> +</g> +<g transform="translate(1445,0)"> +<g transform="translate(0,1134)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="809" y="583"></use> +</g> +</g> +<g transform="translate(0,-793)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="1334" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="1834" y="0"></use> + <use xlink:href="#E1-MJMAIN-2E" x="2407" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/093d91ea248199ea39ca2c2e3a97a9e2 b/url/cache/bh/https/org/wikimedia/093d91ea248199ea39ca2c2e3a97a9e2 new file mode 100644 index 0000000..5466bb4 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/093d91ea248199ea39ca2c2e3a97a9e2 @@ -0,0 +1,82 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: a8c01dae35683673468b52ff4022dd5c31e90b18 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2035 +date: Wed, 10 Dec 2025 12:08:37 GMT +age: 15718 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/2 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2926 +x-request-id: 40b84c27-da59-46a1-a24c-9db27f72dd39 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="26.011ex" height="3.009ex" style="vertical-align: -0.838ex; margin-right: -0.387ex;" viewBox="0 -934.9 11199 1295.7" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\dot {x}}(t)=x'(t)=-32t+16,\,\!}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2D9" d="M190 609Q190 637 208 653T252 669Q275 667 292 652T309 609Q309 579 292 564T250 549Q225 549 208 564T190 609Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-74" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2032" d="M79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-33" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-31" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path> +<path stroke-width="1" id="E1-MJMAIN-36" d="M42 313Q42 476 123 571T303 666Q372 666 402 630T432 550Q432 525 418 510T379 495Q356 495 341 509T326 548Q326 592 373 601Q351 623 311 626Q240 626 194 566Q147 500 147 364L148 360Q153 366 156 373Q197 433 263 433H267Q313 433 348 414Q372 400 396 374T435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM257 397Q227 397 205 380T171 335T154 278T148 216Q148 133 160 97T198 39Q222 21 251 21Q302 21 329 59Q342 77 347 104T352 209Q352 289 347 316T329 361Q302 397 257 397Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-2D9" x="63" y="2"></use> + <use xlink:href="#E1-MJMAIN-28" x="572" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="962" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1323" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="1990" y="0"></use> +<g transform="translate(3047,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2032" x="809" y="583"></use> +</g> + <use xlink:href="#E1-MJMAIN-28" x="3914" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="4303" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="4665" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="5332" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="6388" y="0"></use> +<g transform="translate(7167,0)"> + <use xlink:href="#E1-MJMAIN-33"></use> + <use xlink:href="#E1-MJMAIN-32" x="500" y="0"></use> +</g> + <use xlink:href="#E1-MJMATHI-74" x="8168" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="8752" y="0"></use> +<g transform="translate(9752,0)"> + <use xlink:href="#E1-MJMAIN-31"></use> + <use xlink:href="#E1-MJMAIN-36" x="500" y="0"></use> +</g> + <use xlink:href="#E1-MJMAIN-2C" x="10753" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/09d7f5f57c6f746d73c7f37eab35d02d b/url/cache/bh/https/org/wikimedia/09d7f5f57c6f746d73c7f37eab35d02d new file mode 100644 index 0000000..8264b39 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/09d7f5f57c6f746d73c7f37eab35d02d @@ -0,0 +1,55 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: b21dd0c5c5815bc0516f679f631fd588ceb458d6 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2036 +date: Wed, 10 Dec 2025 01:47:24 GMT +age: 52990 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/39 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1524 +x-request-id: 0bdc288b-0af1-407c-b65b-1aa8333d2ae9 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="8.59ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 3698.7 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle (x,f(x))}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-28" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="389" y="0"></use> + <use xlink:href="#E1-MJMAIN-2C" x="962" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="1407" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="1957" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2347" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="2919" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3309" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/0b52506055515e2ba3b25a940d069e32 b/url/cache/bh/https/org/wikimedia/0b52506055515e2ba3b25a940d069e32 new file mode 100644 index 0000000..e009928 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/0b52506055515e2ba3b25a940d069e32 @@ -0,0 +1,78 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 79349a998e752dabd8356eb5d3248b2f5fcf053d +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2027 +date: Wed, 10 Dec 2025 05:56:24 GMT +age: 38051 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/8 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2174 +x-request-id: 4fe11240-464f-426a-866a-21ca51fc058a +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="15.976ex" height="4.343ex" style="vertical-align: -1.338ex;" viewBox="0 -1293.7 6878.7 1869.7" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle f'(c)={\tfrac {f(b)-f(a)}{b-a}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2032" d="M79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-63" d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-62" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2032" x="804" y="583"></use> + <use xlink:href="#E1-MJMAIN-28" x="863" y="0"></use> + <use xlink:href="#E1-MJMATHI-63" x="1252" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1686" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="2353" y="0"></use> +<g transform="translate(3409,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="3228" height="60" x="0" y="220"></rect> +<g transform="translate(60,622)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-62" x="940" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-29" x="1369" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2212" x="1758" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-66" x="2537" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-28" x="3088" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-61" x="3477" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-29" x="4007" y="0"></use> +</g> +<g transform="translate(1000,-436)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-62" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2212" x="429" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-61" x="1208" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/0e0e0a2289227786649fc6d601b89d3c b/url/cache/bh/https/org/wikimedia/0e0e0a2289227786649fc6d601b89d3c new file mode 100644 index 0000000..40eb196 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/0e0e0a2289227786649fc6d601b89d3c @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 295b4bf1de7cd3500e740e0f4f0635db22d87b42 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2035 +date: Wed, 10 Dec 2025 09:15:00 GMT +age: 26134 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/112 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 534 +x-request-id: 75e912bc-cfa8-45c6-92de-588690943795 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle 4}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-34" d="M462 0Q444 3 333 3Q217 3 199 0H190V46H221Q241 46 248 46T265 48T279 53T286 61Q287 63 287 115V165H28V211L179 442Q332 674 334 675Q336 677 355 677H373L379 671V211H471V165H379V114Q379 73 379 66T385 54Q393 47 442 46H471V0H462ZM293 211V545L74 212L183 211H293Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-34" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/135b906ecef2821de95a6177f54a116b b/url/cache/bh/https/org/wikimedia/135b906ecef2821de95a6177f54a116b new file mode 100644 index 0000000..1d9274c --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/135b906ecef2821de95a6177f54a116b @@ -0,0 +1,63 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 20b5d8e0b09ed96af70a130b188f2058c9f0324a +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2024 +date: Wed, 10 Dec 2025 06:06:54 GMT +age: 37401 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/15 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2226 +x-request-id: cf60a48a-b310-46be-a6c4-eb5d98da0dc2 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="18.742ex" height="5.676ex" style="vertical-align: -2.338ex;" viewBox="0 -1437.2 8069.2 2443.8" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \int 2x\,dx=x^{2}+C.}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJSZ2-222B" d="M114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-43" d="M50 252Q50 367 117 473T286 641T490 704Q580 704 633 653Q642 643 648 636T656 626L657 623Q660 623 684 649Q691 655 699 663T715 679T725 690L740 705H746Q760 705 760 698Q760 694 728 561Q692 422 692 421Q690 416 687 415T669 413H653Q647 419 647 422Q647 423 648 429T650 449T651 481Q651 552 619 605T510 659Q484 659 454 652T382 628T299 572T226 479Q194 422 175 346T156 222Q156 108 232 58Q280 24 350 24Q441 24 512 92T606 240Q610 253 612 255T628 257Q648 257 648 248Q648 243 647 239Q618 132 523 55T319 -22Q206 -22 128 53T50 252Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJSZ2-222B" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="1111" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="1611" y="0"></use> + <use xlink:href="#E1-MJMATHI-64" x="2350" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2874" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="3724" y="0"></use> +<g transform="translate(4780,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="809" y="583"></use> +</g> + <use xlink:href="#E1-MJMAIN-2B" x="6029" y="0"></use> + <use xlink:href="#E1-MJMATHI-43" x="7030" y="0"></use> + <use xlink:href="#E1-MJMAIN-2E" x="7790" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/154c68cccc87b87ce9c4d485e853f4eb b/url/cache/bh/https/org/wikimedia/154c68cccc87b87ce9c4d485e853f4eb new file mode 100644 index 0000000..bc8181e --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/154c68cccc87b87ce9c4d485e853f4eb @@ -0,0 +1,54 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: eb9af7ed6f44822021b74bb82b431022c7fd66b3 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2037 +date: Tue, 09 Dec 2025 00:50:09 GMT +age: 142804 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/205 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1660 +x-request-id: dea171d8-36e3-4592-9c1b-f613641feac4 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="6.25ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 2691 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \cos(x)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-63" d="M370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6F" d="M28 214Q28 309 93 378T250 448Q340 448 405 380T471 215Q471 120 407 55T250 -10Q153 -10 91 57T28 214ZM250 30Q372 30 372 193V225V250Q372 272 371 288T364 326T348 362T317 390T268 410Q263 411 252 411Q222 411 195 399Q152 377 139 338T126 246V226Q126 130 145 91Q177 30 250 30Z"></path> +<path stroke-width="1" id="E1-MJMAIN-73" d="M295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-63"></use> + <use xlink:href="#E1-MJMAIN-6F" x="444" y="0"></use> + <use xlink:href="#E1-MJMAIN-73" x="945" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="1339" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="1729" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="2301" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/18d8915778125a56b0fe6f6e735e21eb b/url/cache/bh/https/org/wikimedia/18d8915778125a56b0fe6f6e735e21eb new file mode 100644 index 0000000..94a48c2 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/18d8915778125a56b0fe6f6e735e21eb @@ -0,0 +1,53 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 499f8f4286a96598980a0f7158fbfd335b61bc35 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2033 +date: Wed, 10 Dec 2025 06:46:02 GMT +age: 35053 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/14 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1857 +x-request-id: fad54011-82c8-49b0-9c71-1b44cdfe7fe0 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="6.769ex" height="3.176ex" style="vertical-align: -1.005ex;" viewBox="0 -934.9 2914.4 1367.4" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\textstyle \int x^{k}dx}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJSZ1-222B" d="M113 -244Q113 -246 119 -251T139 -263T167 -269Q186 -269 199 -260Q220 -247 232 -218T251 -133T262 -15T276 155T297 367Q300 390 305 438T314 512T325 580T340 647T361 703T390 751T428 784T479 804Q481 804 488 804T501 805Q552 802 581 769T610 695Q610 669 594 657T561 645Q542 645 527 658T512 694Q512 705 516 714T526 729T538 737T548 742L552 743Q552 745 545 751T525 762T498 768Q475 768 460 756T434 716T418 652T407 559T398 444T387 300T369 133Q349 -38 337 -102T303 -207Q256 -306 169 -306Q119 -306 87 -272T55 -196Q55 -170 71 -158T104 -146Q123 -146 138 -159T153 -195Q153 -206 149 -215T139 -230T127 -238T117 -242L113 -244Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMATHI-6B" d="M121 647Q121 657 125 670T137 683Q138 683 209 688T282 694Q294 694 294 686Q294 679 244 477Q194 279 194 272Q213 282 223 291Q247 309 292 354T362 415Q402 442 438 442Q468 442 485 423T503 369Q503 344 496 327T477 302T456 291T438 288Q418 288 406 299T394 328Q394 353 410 369T442 390L458 393Q446 405 434 405H430Q398 402 367 380T294 316T228 255Q230 254 243 252T267 246T293 238T320 224T342 206T359 180T365 147Q365 130 360 106T354 66Q354 26 381 26Q429 26 459 145Q461 153 479 153H483Q499 153 499 144Q499 139 496 130Q455 -11 378 -11Q333 -11 305 15T277 90Q277 108 280 121T283 145Q283 167 269 183T234 206T200 217T182 220H180Q168 178 159 139T145 81T136 44T129 20T122 7T111 -2Q98 -11 83 -11Q66 -11 57 -1T48 16Q48 26 85 176T158 471L195 616Q196 629 188 632T149 637H144Q134 637 131 637T124 640T121 647Z"></path> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJSZ1-222B" x="0" y="0"></use> +<g transform="translate(777,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-6B" x="809" y="513"></use> +</g> + <use xlink:href="#E1-MJMATHI-64" x="1818" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2341" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/1a887d1069fcf381466a50871826fb41 b/url/cache/bh/https/org/wikimedia/1a887d1069fcf381466a50871826fb41 new file mode 100644 index 0000000..eb68de6 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/1a887d1069fcf381466a50871826fb41 @@ -0,0 +1,54 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 25e966621217067985694be3afd6801d7d51c5d8 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2028 +date: Tue, 09 Dec 2025 00:48:57 GMT +age: 142897 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/68 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2016 +x-request-id: a15c5c22-11c4-4d35-a8e1-3cd5bbcf98d1 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="11.462ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 4935 1080.4" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle y=mx+b}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-6D" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-62" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-79" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="775" y="0"></use> + <use xlink:href="#E1-MJMATHI-6D" x="1831" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2710" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="3504" y="0"></use> + <use xlink:href="#E1-MJMATHI-62" x="4505" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/1e0181a8514c9427aacc5599accf8e69 b/url/cache/bh/https/org/wikimedia/1e0181a8514c9427aacc5599accf8e69 new file mode 100644 index 0000000..7404ed9 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/1e0181a8514c9427aacc5599accf8e69 @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 2aae8864a3c1fec9585261791a809ddec1489950 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2024 +date: Wed, 10 Dec 2025 02:07:04 GMT +age: 51810 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/1618 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 557 +x-request-id: 5f374d06-8708-490b-8882-f302898c29e0 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.162ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 500.5 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle 0}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-30" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-30" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/1e3d7e7ce00e4fff912a6922225589ec b/url/cache/bh/https/org/wikimedia/1e3d7e7ce00e4fff912a6922225589ec new file mode 100644 index 0000000..d759478 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/1e3d7e7ce00e4fff912a6922225589ec @@ -0,0 +1,102 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: e2017cd12adcbfa0f07bcc1090006133781fff8f +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2026 +date: Tue, 09 Dec 2025 02:13:50 GMT +age: 137783 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/29 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2507 +x-request-id: b1fa3d44-0375-4f03-b9ae-c6e9ffe4d760 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="41.867ex" height="6.509ex" style="vertical-align: -2.671ex;" viewBox="0 -1652.5 18025.9 2802.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle m={\frac {f(a+h)-f(a)}{(a+h)-a}}={\frac {f(a+h)-f(a)}{h}}.}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-6D" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-68" d="M137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-6D" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="1156" y="0"></use> +<g transform="translate(2212,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="6860" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1691" y="0"></use> + <use xlink:href="#E1-MJMATHI-68" x="2692" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3268" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="3880" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="4881" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="5431" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="5821" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="6350" y="0"></use> +</g> +<g transform="translate(1000,-771)"> + <use xlink:href="#E1-MJMAIN-28" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="389" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1141" y="0"></use> + <use xlink:href="#E1-MJMATHI-68" x="2141" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="2718" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="3330" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="4330" y="0"></use> +</g> +</g> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="9590" y="0"></use> +<g transform="translate(10647,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="6860" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1691" y="0"></use> + <use xlink:href="#E1-MJMATHI-68" x="2692" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3268" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="3880" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="4881" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="5431" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="5821" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="6350" y="0"></use> +</g> + <use xlink:href="#E1-MJMATHI-68" x="3141" y="-715"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-2E" x="17747" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/1ebdfe5762a291506cf44ae43bf3ea3e b/url/cache/bh/https/org/wikimedia/1ebdfe5762a291506cf44ae43bf3ea3e new file mode 100644 index 0000000..0e700b7 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/1ebdfe5762a291506cf44ae43bf3ea3e @@ -0,0 +1,264 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: cc95af76c57be65c5ead970c85b961fa63d24450 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2026 +date: Wed, 10 Dec 2025 16:30:35 GMT +age: 0 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: 5791cdfe-cdc9-4d4b-b1f9-68518ee2d401 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="38.405ex" height="29.176ex" style="vertical-align: -14.005ex;" viewBox="0 -6532.1 16535.4 12561.8" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\begin{aligned}{\frac {dy}{dx}}&=\lim _{\Delta x\to 0}{\frac {f(x+\Delta x)-f(x)}{\Delta x}}\\&=\lim _{\Delta x\to 0}{\frac {(x+\Delta x)^{2}-x^{2}}{\Delta x}}\\&=\lim _{\Delta x\to 0}{\frac {x^{2}+2x\Delta x+(\Delta x)^{2}-x^{2}}{\Delta x}}\\&=\lim _{\Delta x\to 0}{\frac {2x\Delta x+(\Delta x)^{2}}{\Delta x}}\\&=\lim _{\Delta x\to 0}2x+\Delta x\\\end{aligned}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6C" d="M42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6D" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q351 442 364 440T387 434T406 426T421 417T432 406T441 395T448 384T452 374T455 366L457 361L460 365Q463 369 466 373T475 384T488 397T503 410T523 422T546 432T572 439T603 442Q729 442 740 329Q741 322 741 190V104Q741 66 743 59T754 49Q775 46 803 46H819V0H811L788 1Q764 2 737 2T699 3Q596 3 587 0H579V46H595Q656 46 656 62Q657 64 657 200Q656 335 655 343Q649 371 635 385T611 402T585 404Q540 404 506 370Q479 343 472 315T464 232V168V108Q464 78 465 68T468 55T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2192" d="M56 237T56 250T70 270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-30" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(167,0)"> +<g transform="translate(-11,0)"> +<g transform="translate(0,4874)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1216" height="60" x="0" y="220"></rect> +<g transform="translate(97,725)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="523" y="0"></use> +</g> +<g transform="translate(60,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</g> +</g> +</g> +<g transform="translate(1445,0)"> +<g transform="translate(0,4874)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> +<g transform="translate(332,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-675)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="1406" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="2406" y="0"></use> +</g> +</g> +<g transform="translate(3556,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="7775" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1734" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="2735" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3568" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="4141" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="4753" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="5753" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="6304" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="6693" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="7266" y="0"></use> +</g> +<g transform="translate(3184,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> +</g> +<g transform="translate(0,2178)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> +<g transform="translate(332,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-675)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="1406" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="2406" y="0"></use> +</g> +</g> +<g transform="translate(3556,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="6803" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMAIN-28" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="389" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1184" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="2184" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3018" y="0"></use> +<g transform="translate(3590,0)"> + <use xlink:href="#E1-MJMAIN-29" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="550" y="513"></use> +</g> + <use xlink:href="#E1-MJMAIN-2212" x="4656" y="0"></use> +<g transform="translate(5657,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="809" y="513"></use> +</g> +</g> +<g transform="translate(2698,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> +</g> +<g transform="translate(0,-518)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> +<g transform="translate(332,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-675)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="1406" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="2406" y="0"></use> +</g> +</g> +<g transform="translate(3556,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="10959" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="809" y="513"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1248" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="2249" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2749" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="3322" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4155" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="4950" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="5951" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="6340" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="7174" y="0"></use> +<g transform="translate(7746,0)"> + <use xlink:href="#E1-MJMAIN-29" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="550" y="513"></use> +</g> + <use xlink:href="#E1-MJMAIN-2212" x="8812" y="0"></use> +<g transform="translate(9813,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="809" y="513"></use> +</g> +</g> +<g transform="translate(4776,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> +</g> +<g transform="translate(0,-3214)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> +<g transform="translate(332,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-675)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="1406" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="2406" y="0"></use> +</g> +</g> +<g transform="translate(3556,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="6460" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMAIN-32" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="500" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="1073" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="1906" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="2701" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="3701" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="4091" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4924" y="0"></use> +<g transform="translate(5497,0)"> + <use xlink:href="#E1-MJMAIN-29" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="550" y="513"></use> +</g> +</g> +<g transform="translate(2527,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> +</g> +<g transform="translate(0,-5105)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> +<g transform="translate(332,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-675)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="1406" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="2406" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-32" x="3556" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4056" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="4851" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="5852" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="6685" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/1f0f2a97bf0563140541ce72e2154e77 b/url/cache/bh/https/org/wikimedia/1f0f2a97bf0563140541ce72e2154e77 new file mode 100644 index 0000000..edbd8bf --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/1f0f2a97bf0563140541ce72e2154e77 @@ -0,0 +1,50 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 202945cce41ecebb6f643f31d119c514bec7a074 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2035 +date: Wed, 10 Dec 2025 15:15:04 GMT +age: 4529 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/77 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1364 +x-request-id: 1790b0bc-9373-4edd-be70-b807ef0f3697 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="4.418ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 1902 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle f(x)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1512" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/28110778a80f947ba821921507d8152c b/url/cache/bh/https/org/wikimedia/28110778a80f947ba821921507d8152c new file mode 100644 index 0000000..61458b5 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/28110778a80f947ba821921507d8152c @@ -0,0 +1,48 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: aaae23950e96a955ab5b07015a168fd931d4d82b +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2027 +date: Tue, 09 Dec 2025 23:04:44 GMT +age: 62750 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/121 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1118 +x-request-id: 825b0706-bf72-4828-9893-d8783f4161f0 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.658ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 2436.1 721.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle x=a}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="850" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="1906" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/28a29ac7eb37d19f419d55bf0671bd48 b/url/cache/bh/https/org/wikimedia/28a29ac7eb37d19f419d55bf0671bd48 new file mode 100644 index 0000000..4311a62 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/28a29ac7eb37d19f419d55bf0671bd48 @@ -0,0 +1,84 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 8dd0adb4808892ab22bcbe974beddeaf27e6f642 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2024 +date: Wed, 10 Dec 2025 11:35:25 GMT +age: 17688 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/8 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 3044 +x-request-id: 489eda7c-6e90-4e42-8995-952510598afc +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="31.999ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 13777.1 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \sin(y)-\sin(x)\approx (y-x)\cos(y).}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-73" d="M295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6E" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2248" d="M55 319Q55 360 72 393T114 444T163 472T205 482Q207 482 213 482T223 483Q262 483 296 468T393 413L443 381Q502 346 553 346Q609 346 649 375T694 454Q694 465 698 474T708 483Q722 483 722 452Q722 386 675 338T555 289Q514 289 468 310T388 357T308 404T224 426Q164 426 125 393T83 318Q81 289 69 289Q55 289 55 319ZM55 85Q55 126 72 159T114 210T163 238T205 248Q207 248 213 248T223 249Q262 249 296 234T393 179L443 147Q502 112 553 112Q609 112 649 141T694 220Q694 249 708 249T722 217Q722 153 675 104T555 55Q514 55 468 76T388 123T308 170T224 192Q164 192 125 159T83 84Q80 55 69 55Q55 55 55 85Z"></path> +<path stroke-width="1" id="E1-MJMAIN-63" d="M370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6F" d="M28 214Q28 309 93 378T250 448Q340 448 405 380T471 215Q471 120 407 55T250 -10Q153 -10 91 57T28 214ZM250 30Q372 30 372 193V225V250Q372 272 371 288T364 326T348 362T317 390T268 410Q263 411 252 411Q222 411 195 399Q152 377 139 338T126 246V226Q126 130 145 91Q177 30 250 30Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-73"></use> + <use xlink:href="#E1-MJMAIN-69" x="394" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="673" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="1229" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="1619" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="2116" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="2728" y="0"></use> +<g transform="translate(3728,0)"> + <use xlink:href="#E1-MJMAIN-73"></use> + <use xlink:href="#E1-MJMAIN-69" x="394" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="673" y="0"></use> +</g> + <use xlink:href="#E1-MJMAIN-28" x="4958" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="5347" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="5920" y="0"></use> + <use xlink:href="#E1-MJMAIN-2248" x="6587" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="7643" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="8033" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="8753" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="9753" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="10326" y="0"></use> +<g transform="translate(10882,0)"> + <use xlink:href="#E1-MJMAIN-63"></use> + <use xlink:href="#E1-MJMAIN-6F" x="444" y="0"></use> + <use xlink:href="#E1-MJMAIN-73" x="945" y="0"></use> +</g> + <use xlink:href="#E1-MJMAIN-28" x="12222" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="12611" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="13109" y="0"></use> + <use xlink:href="#E1-MJMAIN-2E" x="13498" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/29034038ed3226a51106096400370d0b b/url/cache/bh/https/org/wikimedia/29034038ed3226a51106096400370d0b new file mode 100644 index 0000000..a0b5a3a --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/29034038ed3226a51106096400370d0b @@ -0,0 +1,74 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 4f470e7743fda04c3d353a4dee2f441ae454f528 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2027 +date: Tue, 09 Dec 2025 09:38:03 GMT +age: 111131 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/21 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 3084 +x-request-id: a28293b0-8900-4c32-b1ff-4454f7e7b5ee +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="27.052ex" height="6.343ex" style="vertical-align: -2.338ex;" viewBox="0 -1724.2 11647.5 2730.8" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \int _{a}^{b}f(x)\,dx=F(b)-F(a).}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJSZ2-222B" d="M114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798Z"></path> +<path stroke-width="1" id="E1-MJMATHI-62" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-46" d="M48 1Q31 1 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 659Q197 676 203 680H742Q749 676 749 669Q749 664 736 557T722 447Q720 440 702 440H690Q683 445 683 453Q683 454 686 477T689 530Q689 560 682 579T663 610T626 626T575 633T503 634H480Q398 633 393 631Q388 629 386 623Q385 622 352 492L320 363H375Q378 363 398 363T426 364T448 367T472 374T489 386Q502 398 511 419T524 457T529 475Q532 480 548 480H560Q567 475 567 470Q567 467 536 339T502 207Q500 200 482 200H470Q463 206 463 212Q463 215 468 234T473 274Q473 303 453 310T364 317H309L277 190Q245 66 245 60Q245 46 334 46H359Q365 40 365 39T363 19Q359 6 353 0H336Q295 2 185 2Q120 2 86 2T48 1Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJSZ2-222B" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-62" x="1500" y="1540"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-61" x="787" y="-1270"></use> + <use xlink:href="#E1-MJMATHI-66" x="1631" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="2181" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2571" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3143" y="0"></use> + <use xlink:href="#E1-MJMATHI-64" x="3699" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4223" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="5073" y="0"></use> + <use xlink:href="#E1-MJMATHI-46" x="6130" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="6879" y="0"></use> + <use xlink:href="#E1-MJMATHI-62" x="7269" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="7698" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="8310" y="0"></use> + <use xlink:href="#E1-MJMATHI-46" x="9310" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="10060" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="10449" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="10979" y="0"></use> + <use xlink:href="#E1-MJMAIN-2E" x="11368" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/2cbfb0cdf816d14c29b6ab1eca37272f b/url/cache/bh/https/org/wikimedia/2cbfb0cdf816d14c29b6ab1eca37272f new file mode 100644 index 0000000..b215495 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/2cbfb0cdf816d14c29b6ab1eca37272f @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: b8a6208ec717213d4317e666f1ae872e00620a0d +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2038 +date: Wed, 10 Dec 2025 12:43:29 GMT +age: 13625 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/469 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 783 +x-request-id: ce6c1e14-d216-4361-9c58-bfafe3dd5dda +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.155ex" height="2.009ex" style="vertical-align: -0.671ex;" viewBox="0 -576.1 497.5 865.1" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle y}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-79" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/2fbb54c032dc29d759523755ede9df62 b/url/cache/bh/https/org/wikimedia/2fbb54c032dc29d759523755ede9df62 new file mode 100644 index 0000000..62dfdee --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/2fbb54c032dc29d759523755ede9df62 @@ -0,0 +1,51 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: add69069028cada9be6b945dd4b9895e3ff2fd23 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2033 +date: Tue, 09 Dec 2025 02:05:25 GMT +age: 138289 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/30 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1552 +x-request-id: 12a2ce76-9363-46ad-82c3-1cffb2d0da91 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="6.079ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 2617.5 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle dy/dx}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2F" d="M423 750Q432 750 438 744T444 730Q444 725 271 248T92 -240Q85 -250 75 -250Q68 -250 62 -245T56 -231Q56 -221 230 257T407 740Q411 750 423 750Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="523" y="0"></use> + <use xlink:href="#E1-MJMAIN-2F" x="1021" y="0"></use> + <use xlink:href="#E1-MJMATHI-64" x="1521" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2045" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/304575c8639b55e7789a9e6a03fcbb18 b/url/cache/bh/https/org/wikimedia/304575c8639b55e7789a9e6a03fcbb18 new file mode 100644 index 0000000..16c9b7a --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/304575c8639b55e7789a9e6a03fcbb18 @@ -0,0 +1,54 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 3a990a5545cac26c1c6821dca95d898bc80fe3a8 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2028 +date: Tue, 09 Dec 2025 04:01:58 GMT +age: 131295 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/163 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1857 +x-request-id: f468b2c1-6ebc-4b0e-ac51-53a7fbed6075 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.995ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 2581 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \sin(x)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-73" d="M295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6E" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-73"></use> + <use xlink:href="#E1-MJMAIN-69" x="394" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="673" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="1229" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="1619" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="2191" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/310f31110168b08daa28d564bc147a7b b/url/cache/bh/https/org/wikimedia/310f31110168b08daa28d564bc147a7b new file mode 100644 index 0000000..b4c6514 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/310f31110168b08daa28d564bc147a7b @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 87f9e315fd7e2ba406057a97300593c4802b53e4 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2029 +date: Wed, 10 Dec 2025 03:02:46 GMT +age: 48468 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/4844 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 730 +x-request-id: d79f92d0-94ed-44b6-a738-5b9ea89e8b08 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.33ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 572.5 721.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle x}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/3d3ee8cea3e39f11c0ed377c933ce3c2 b/url/cache/bh/https/org/wikimedia/3d3ee8cea3e39f11c0ed377c933ce3c2 new file mode 100644 index 0000000..edb6e40 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/3d3ee8cea3e39f11c0ed377c933ce3c2 @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: aed4e330d94c9d77c7bc3a65e9d883091b388fc5 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2030 +date: Wed, 10 Dec 2025 12:08:37 GMT +age: 15718 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/2 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2254 +x-request-id: 7acf6392-70cb-41fd-b44b-0c4a273e3aac +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="18.011ex" height="5.843ex" style="vertical-align: -2.005ex;" viewBox="0 -1652.5 7754.7 2515.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {d(ax^{n})}{dx}}=anx^{n-1}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMATHI-6E" d="M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-31" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="3049" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="523" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="913" y="0"></use> +<g transform="translate(1442,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-6E" x="809" y="513"></use> +</g> + <use xlink:href="#E1-MJMAIN-29" x="2539" y="0"></use> +</g> +<g transform="translate(976,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="3566" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="4623" y="0"></use> + <use xlink:href="#E1-MJMATHI-6E" x="5152" y="0"></use> +<g transform="translate(5753,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> +<g transform="translate(572,412)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-6E" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2212" x="600" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-31" x="1379" y="0"></use> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/43607a246e47c8320bbf02574c9396ab b/url/cache/bh/https/org/wikimedia/43607a246e47c8320bbf02574c9396ab new file mode 100644 index 0000000..7ebd569 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/43607a246e47c8320bbf02574c9396ab @@ -0,0 +1,63 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: c9e54a61d6f4798894025d193927a162ed6b88ba +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2038 +date: Wed, 10 Dec 2025 16:30:35 GMT +age: 0 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: 9db19731-5afd-4c50-be8c-713ee8de93fa +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="20.802ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 8956.6 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle (x+\Delta x,f(x+\Delta x))}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-28" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="389" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1184" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="2184" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3018" y="0"></use> + <use xlink:href="#E1-MJMAIN-2C" x="3590" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="4036" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="4586" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4976" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="5770" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="6771" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="7605" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="8177" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="8567" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/49650279dfc3f6b5efa79d4075026866 b/url/cache/bh/https/org/wikimedia/49650279dfc3f6b5efa79d4075026866 new file mode 100644 index 0000000..d73a12a --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/49650279dfc3f6b5efa79d4075026866 @@ -0,0 +1,52 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: ad1108c4c9ee8ac7de90b77f9bd27415b13b6bf1 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2031 +date: Tue, 09 Dec 2025 15:06:25 GMT +age: 91449 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/6 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1518 +x-request-id: ca91dc81-fb69-4e05-a5fa-360b5269f9d7 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="6.638ex" height="3.009ex" style="vertical-align: -0.671ex;" viewBox="0 -1006.6 2858 1295.7" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle y=x^{2}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-79" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="775" y="0"></use> +<g transform="translate(1831,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="809" y="583"></use> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/4eb39085860600728403165032f3177a b/url/cache/bh/https/org/wikimedia/4eb39085860600728403165032f3177a new file mode 100644 index 0000000..937da76 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/4eb39085860600728403165032f3177a @@ -0,0 +1,119 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 313c6a18c1b2ec00c8ae723e70d431b0037382aa +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2036 +date: Wed, 10 Dec 2025 06:06:33 GMT +age: 37421 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/15 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 4491 +x-request-id: 76fa6e4f-1770-4f19-990f-f5821c3ca569 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="32.669ex" height="6.009ex" style="vertical-align: -2.338ex;" viewBox="0 -1580.7 14065.7 2587.3" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle m={\frac {\text{rise}}{\text{run}}}={\frac {{\text{change in }}y}{{\text{change in }}x}}={\frac {\Delta y}{\Delta x}}.}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-6D" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-72" d="M36 46H50Q89 46 97 60V68Q97 77 97 91T98 122T98 161T98 203Q98 234 98 269T98 328L97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 60 434T96 436Q112 437 131 438T160 441T171 442H174V373Q213 441 271 441H277Q322 441 343 419T364 373Q364 352 351 337T313 322Q288 322 276 338T263 372Q263 381 265 388T270 400T273 405Q271 407 250 401Q234 393 226 386Q179 341 179 207V154Q179 141 179 127T179 101T180 81T180 66V61Q181 59 183 57T188 54T193 51T200 49T207 48T216 47T225 47T235 46T245 46H276V0H267Q249 3 140 3Q37 3 28 0H20V46H36Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMAIN-73" d="M295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316Z"></path> +<path stroke-width="1" id="E1-MJMAIN-65" d="M28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275Z"></path> +<path stroke-width="1" id="E1-MJMAIN-75" d="M383 58Q327 -10 256 -10H249Q124 -10 105 89Q104 96 103 226Q102 335 102 348T96 369Q86 385 36 385H25V408Q25 431 27 431L38 432Q48 433 67 434T105 436Q122 437 142 438T172 441T184 442H187V261Q188 77 190 64Q193 49 204 40Q224 26 264 26Q290 26 311 35T343 58T363 90T375 120T379 144Q379 145 379 161T380 201T380 248V315Q380 361 370 372T320 385H302V431Q304 431 378 436T457 442H464V264Q464 84 465 81Q468 61 479 55T524 46H542V0Q540 0 467 -5T390 -11H383V58Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6E" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-63" d="M370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320Z"></path> +<path stroke-width="1" id="E1-MJMAIN-68" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 124T102 167T103 217T103 272T103 329Q103 366 103 407T103 482T102 542T102 586T102 603Q99 622 88 628T43 637H25V660Q25 683 27 683L37 684Q47 685 66 686T103 688Q120 689 140 690T170 693T181 694H184V367Q244 442 328 442Q451 442 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-61" d="M137 305T115 305T78 320T63 359Q63 394 97 421T218 448Q291 448 336 416T396 340Q401 326 401 309T402 194V124Q402 76 407 58T428 40Q443 40 448 56T453 109V145H493V106Q492 66 490 59Q481 29 455 12T400 -6T353 12T329 54V58L327 55Q325 52 322 49T314 40T302 29T287 17T269 6T247 -2T221 -8T190 -11Q130 -11 82 20T34 107Q34 128 41 147T68 188T116 225T194 253T304 268H318V290Q318 324 312 340Q290 411 215 411Q197 411 181 410T156 406T148 403Q170 388 170 359Q170 334 154 320ZM126 106Q126 75 150 51T209 26Q247 26 276 49T315 109Q317 116 318 175Q318 233 317 233Q309 233 296 232T251 223T193 203T147 166T126 106Z"></path> +<path stroke-width="1" id="E1-MJMAIN-67" d="M329 409Q373 453 429 453Q459 453 472 434T485 396Q485 382 476 371T449 360Q416 360 412 390Q410 404 415 411Q415 412 416 414V415Q388 412 363 393Q355 388 355 386Q355 385 359 381T368 369T379 351T388 325T392 292Q392 230 343 187T222 143Q172 143 123 171Q112 153 112 133Q112 98 138 81Q147 75 155 75T227 73Q311 72 335 67Q396 58 431 26Q470 -13 470 -72Q470 -139 392 -175Q332 -206 250 -206Q167 -206 107 -175Q29 -140 29 -75Q29 -39 50 -15T92 18L103 24Q67 55 67 108Q67 155 96 193Q52 237 52 292Q52 355 102 398T223 442Q274 442 318 416L329 409ZM299 343Q294 371 273 387T221 404Q192 404 171 388T145 343Q142 326 142 292Q142 248 149 227T179 192Q196 182 222 182Q244 182 260 189T283 207T294 227T299 242Q302 258 302 292T299 343ZM403 -75Q403 -50 389 -34T348 -11T299 -2T245 0H218Q151 0 138 -6Q118 -15 107 -34T95 -74Q95 -84 101 -97T122 -127T170 -155T250 -167Q319 -167 361 -139T403 -75Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-6D" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="1156" y="0"></use> +<g transform="translate(2212,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1630" height="60" x="0" y="220"></rect> +<g transform="translate(60,676)"> + <use xlink:href="#E1-MJMAIN-72"></use> + <use xlink:href="#E1-MJMAIN-69" x="392" y="0"></use> + <use xlink:href="#E1-MJMAIN-73" x="671" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="1065" y="0"></use> +</g> +<g transform="translate(62,-686)"> + <use xlink:href="#E1-MJMAIN-72"></use> + <use xlink:href="#E1-MJMAIN-75" x="392" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="949" y="0"></use> +</g> +</g> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="4360" y="0"></use> +<g transform="translate(5416,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="5030" height="60" x="0" y="220"></rect> +<g transform="translate(97,726)"> + <use xlink:href="#E1-MJMAIN-63"></use> + <use xlink:href="#E1-MJMAIN-68" x="444" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1001" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="1501" y="0"></use> + <use xlink:href="#E1-MJMAIN-67" x="2058" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="2558" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="3253" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="3531" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="4338" y="0"></use> +</g> +<g transform="translate(60,-716)"> + <use xlink:href="#E1-MJMAIN-63"></use> + <use xlink:href="#E1-MJMAIN-68" x="444" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1001" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="1501" y="0"></use> + <use xlink:href="#E1-MJMAIN-67" x="2058" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="2558" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="3253" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="3531" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4338" y="0"></use> +</g> +</g> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="10964" y="0"></use> +<g transform="translate(12021,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1526" height="60" x="0" y="220"></rect> +<g transform="translate(97,725)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="833" y="0"></use> +</g> +<g transform="translate(60,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> + <use xlink:href="#E1-MJMAIN-2E" x="13787" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/4f7ba405a8ea9307031eeb59512ea8ec b/url/cache/bh/https/org/wikimedia/4f7ba405a8ea9307031eeb59512ea8ec new file mode 100644 index 0000000..e41ddea --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/4f7ba405a8ea9307031eeb59512ea8ec @@ -0,0 +1,96 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 3027f5cc71e051e302d6deccab3c362f53a30b1b +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2027 +date: Wed, 10 Dec 2025 06:06:47 GMT +age: 37407 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/14 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2455 +x-request-id: d28c949c-00a8-43fd-bb9f-67e7ecdceec8 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="21.246ex" height="8.843ex" style="vertical-align: -3.838ex;" viewBox="0 -2154.8 9147.4 3807.2" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\begin{aligned}g(t)&=t^{2}+2t+4\\{d \over dt}g(t)&=2t+2\end{aligned}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-67" d="M311 43Q296 30 267 15T206 0Q143 0 105 45T66 160Q66 265 143 353T314 442Q361 442 401 394L404 398Q406 401 409 404T418 412T431 419T447 422Q461 422 470 413T480 394Q480 379 423 152T363 -80Q345 -134 286 -169T151 -205Q10 -205 10 -137Q10 -111 28 -91T74 -71Q89 -71 102 -80T116 -111Q116 -121 114 -130T107 -144T99 -154T92 -162L90 -164H91Q101 -167 151 -167Q189 -167 211 -155Q234 -144 254 -122T282 -75Q288 -56 298 -13Q311 35 311 43ZM384 328L380 339Q377 350 375 354T369 368T359 382T346 393T328 402T306 405Q262 405 221 352Q191 313 171 233T151 117Q151 38 213 38Q269 38 323 108L331 118L384 328Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-74" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-34" d="M462 0Q444 3 333 3Q217 3 199 0H190V46H221Q241 46 248 46T265 48T279 53T286 61Q287 63 287 115V165H28V211L179 442Q332 674 334 675Q336 677 355 677H373L379 671V211H471V165H379V114Q379 73 379 66T385 54Q393 47 442 46H471V0H462ZM293 211V545L74 212L183 211H293Z"></path> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(167,0)"> +<g transform="translate(-11,0)"> +<g transform="translate(1245,1132)"> + <use xlink:href="#E1-MJMATHI-67" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="480" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="870" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1231" y="0"></use> +</g> +<g transform="translate(0,-791)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1005" height="60" x="0" y="220"></rect> + <use xlink:href="#E1-MJMATHI-64" x="240" y="676"></use> +<g transform="translate(60,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="523" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMATHI-67" x="1245" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="1725" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="2115" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="2476" y="0"></use> +</g> +</g> +<g transform="translate(2855,0)"> +<g transform="translate(0,1132)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> + <use xlink:href="#E1-MJMATHI-74" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="511" y="583"></use> +</g> + <use xlink:href="#E1-MJMAIN-2B" x="2371" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="3372" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="3872" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="4456" y="0"></use> + <use xlink:href="#E1-MJMAIN-34" x="5457" y="0"></use> +</g> +<g transform="translate(0,-791)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="1334" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="1834" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="2418" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="3419" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/53a2f34d101a7857de959349dc731169 b/url/cache/bh/https/org/wikimedia/53a2f34d101a7857de959349dc731169 new file mode 100644 index 0000000..8f09877 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/53a2f34d101a7857de959349dc731169 @@ -0,0 +1,81 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 7778b42c4f1a70d19ca4127b430c7377c41afc48 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2026 +date: Wed, 10 Dec 2025 16:30:35 GMT +age: 0 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: 818f1cdd-bc46-479a-b6fd-2334bac8832a +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="13.28ex" height="6.009ex" style="vertical-align: -2.171ex;" viewBox="0 -1652.5 5717.8 2587.3" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {\partial u}{\partial t}}=\alpha {\frac {\partial ^{2}u}{\partial x^{2}}}.}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-2202" d="M202 508Q179 508 169 520T158 547Q158 557 164 577T185 624T230 675T301 710L333 715H345Q378 715 384 714Q447 703 489 661T549 568T566 457Q566 362 519 240T402 53Q321 -22 223 -22Q123 -22 73 56Q42 102 42 148V159Q42 276 129 370T322 465Q383 465 414 434T455 367L458 378Q478 461 478 515Q478 603 437 639T344 676Q266 676 223 612Q264 606 264 572Q264 547 246 528T202 508ZM430 306Q430 372 401 400T333 428Q270 428 222 382Q197 354 183 323T150 221Q132 149 132 116Q132 21 232 21Q244 21 250 22Q327 35 374 112Q389 137 409 196T430 306Z"></path> +<path stroke-width="1" id="E1-MJMATHI-75" d="M21 287Q21 295 30 318T55 370T99 420T158 442Q204 442 227 417T250 358Q250 340 216 246T182 105Q182 62 196 45T238 27T291 44T328 78L339 95Q341 99 377 247Q407 367 413 387T427 416Q444 431 463 431Q480 431 488 421T496 402L420 84Q419 79 419 68Q419 43 426 35T447 26Q469 29 482 57T512 145Q514 153 532 153Q551 153 551 144Q550 139 549 130T540 98T523 55T498 17T462 -8Q454 -10 438 -10Q372 -10 347 46Q345 45 336 36T318 21T296 6T267 -6T233 -11Q189 -11 155 7Q103 38 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-74" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-3B1" d="M34 156Q34 270 120 356T309 442Q379 442 421 402T478 304Q484 275 485 237V208Q534 282 560 374Q564 388 566 390T582 393Q603 393 603 385Q603 376 594 346T558 261T497 161L486 147L487 123Q489 67 495 47T514 26Q528 28 540 37T557 60Q559 67 562 68T577 70Q597 70 597 62Q597 56 591 43Q579 19 556 5T512 -10H505Q438 -10 414 62L411 69L400 61Q390 53 370 41T325 18T267 -2T203 -11Q124 -11 79 39T34 156ZM208 26Q257 26 306 47T379 90L403 112Q401 255 396 290Q382 405 304 405Q235 405 183 332Q156 292 139 224T121 120Q121 71 146 49T208 26Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1260" height="60" x="0" y="220"></rect> +<g transform="translate(60,676)"> + <use xlink:href="#E1-MJMAIN-2202" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-75" x="567" y="0"></use> +</g> +<g transform="translate(165,-736)"> + <use xlink:href="#E1-MJMAIN-2202" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="567" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="1777" y="0"></use> + <use xlink:href="#E1-MJMATHI-3B1" x="2834" y="0"></use> +<g transform="translate(3474,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1724" height="60" x="0" y="220"></rect> +<g transform="translate(60,676)"> + <use xlink:href="#E1-MJMAIN-2202" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="817" y="513"></use> + <use xlink:href="#E1-MJMATHI-75" x="1032" y="0"></use> +</g> +<g transform="translate(65,-780)"> + <use xlink:href="#E1-MJMAIN-2202" x="0" y="0"></use> +<g transform="translate(567,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="809" y="408"></use> +</g> +</g> +</g> +</g> + <use xlink:href="#E1-MJMAIN-2E" x="5439" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/5822127cf733d292dd2b84f3d9744397 b/url/cache/bh/https/org/wikimedia/5822127cf733d292dd2b84f3d9744397 new file mode 100644 index 0000000..862ca9a --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/5822127cf733d292dd2b84f3d9744397 @@ -0,0 +1,46 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 845c817e348381a13f3fad5184169ce0e021c685 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2025 +date: Wed, 10 Dec 2025 07:23:51 GMT +age: 32782 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/97 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1073 +x-request-id: 2d547d89-e8fa-48a9-9963-6fa47bfaef26 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="2.546ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1096 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle dx}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/5933a6dc2a1b2999e86f5d75b26e03bb b/url/cache/bh/https/org/wikimedia/5933a6dc2a1b2999e86f5d75b26e03bb new file mode 100644 index 0000000..ac911db --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/5933a6dc2a1b2999e86f5d75b26e03bb @@ -0,0 +1,76 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: ca9d2b7dfb6116fad9c9030348004ffc1b486d07 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2034 +date: Wed, 10 Dec 2025 16:30:36 GMT +age: 1 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: 4d526573-5983-4e0e-b145-52c236ae7ae9 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="14.614ex" height="6.009ex" style="vertical-align: -2.171ex;" viewBox="0 -1652.5 6291.9 2587.3" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle F(t)=m{\frac {d^{2}x}{dt^{2}}}.}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-46" d="M48 1Q31 1 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 659Q197 676 203 680H742Q749 676 749 669Q749 664 736 557T722 447Q720 440 702 440H690Q683 445 683 453Q683 454 686 477T689 530Q689 560 682 579T663 610T626 626T575 633T503 634H480Q398 633 393 631Q388 629 386 623Q385 622 352 492L320 363H375Q378 363 398 363T426 364T448 367T472 374T489 386Q502 398 511 419T524 457T529 475Q532 480 548 480H560Q567 475 567 470Q567 467 536 339T502 207Q500 200 482 200H470Q463 206 463 212Q463 215 468 234T473 274Q473 303 453 310T364 317H309L277 190Q245 66 245 60Q245 46 334 46H359Q365 40 365 39T363 19Q359 6 353 0H336Q295 2 185 2Q120 2 86 2T48 1Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-74" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-6D" d="M21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-46" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="749" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="1139" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1500" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="2167" y="0"></use> + <use xlink:href="#E1-MJMATHI-6D" x="3224" y="0"></use> +<g transform="translate(4102,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1670" height="60" x="0" y="220"></rect> +<g transform="translate(60,676)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="741" y="513"></use> + <use xlink:href="#E1-MJMATHI-78" x="978" y="0"></use> +</g> +<g transform="translate(165,-780)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> +<g transform="translate(523,0)"> + <use xlink:href="#E1-MJMATHI-74" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="511" y="408"></use> +</g> +</g> +</g> +</g> + <use xlink:href="#E1-MJMAIN-2E" x="6013" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/60934dadb7f84fb9e12f7ab14124aaf1 b/url/cache/bh/https/org/wikimedia/60934dadb7f84fb9e12f7ab14124aaf1 new file mode 100644 index 0000000..17d87e3 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/60934dadb7f84fb9e12f7ab14124aaf1 @@ -0,0 +1,60 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: f339b9c0b34ebcd7924da2b54bafe630171cf600 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2027 +date: Tue, 09 Dec 2025 17:47:37 GMT +age: 81777 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/11 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2143 +x-request-id: 0d2cb3aa-3c9a-4ddb-b722-82931c48fdde +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="13.72ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 5907 1080.4" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle y=-2x+13}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-31" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path> +<path stroke-width="1" id="E1-MJMAIN-33" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-79" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="775" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="1831" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="2610" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3110" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="3905" y="0"></use> +<g transform="translate(4906,0)"> + <use xlink:href="#E1-MJMAIN-31"></use> + <use xlink:href="#E1-MJMAIN-33" x="500" y="0"></use> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/65e68e61f2cd100c923f2f018ad1fd06 b/url/cache/bh/https/org/wikimedia/65e68e61f2cd100c923f2f018ad1fd06 new file mode 100644 index 0000000..4ba9307 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/65e68e61f2cd100c923f2f018ad1fd06 @@ -0,0 +1,80 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: b4e68eccc69d29a2a10d669fdd0a7f038417277b +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2033 +date: Wed, 10 Dec 2025 13:56:05 GMT +age: 9269 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/6 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2220 +x-request-id: e8ce31d7-6085-4cda-9636-b3223c0b00e2 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="20.646ex" height="6.009ex" style="vertical-align: -2.171ex;" viewBox="0 -1652.5 8889.4 2587.3" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle f'(c)={\frac {f(b)-f(a)}{b-a}}.}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2032" d="M79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-63" d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-62" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2032" x="804" y="583"></use> + <use xlink:href="#E1-MJMAIN-28" x="863" y="0"></use> + <use xlink:href="#E1-MJMATHI-63" x="1252" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1686" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="2353" y="0"></use> +<g transform="translate(3409,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="4960" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-62" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1369" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="1981" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="2981" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="3532" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="3921" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="4451" y="0"></use> +</g> +<g transform="translate(1389,-715)"> + <use xlink:href="#E1-MJMATHI-62" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="651" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="1652" y="0"></use> +</g> +</g> +</g> + <use xlink:href="#E1-MJMAIN-2E" x="8610" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/688addf832f24a0c2d18de16424493e0 b/url/cache/bh/https/org/wikimedia/688addf832f24a0c2d18de16424493e0 new file mode 100644 index 0000000..e2511f9 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/688addf832f24a0c2d18de16424493e0 @@ -0,0 +1,52 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 7671c58f963c43ee6c236f3e3ed6c54a9c4bfdae +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2035 +date: Wed, 10 Dec 2025 13:16:53 GMT +age: 11600 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/14 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1665 +x-request-id: a0d0d185-7e74-474a-95f8-29563a97c059 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="6.672ex" height="3.009ex" style="vertical-align: -0.671ex;" viewBox="0 -1006.6 2872.8 1295.7" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle y=x^{k}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMATHI-6B" d="M121 647Q121 657 125 670T137 683Q138 683 209 688T282 694Q294 694 294 686Q294 679 244 477Q194 279 194 272Q213 282 223 291Q247 309 292 354T362 415Q402 442 438 442Q468 442 485 423T503 369Q503 344 496 327T477 302T456 291T438 288Q418 288 406 299T394 328Q394 353 410 369T442 390L458 393Q446 405 434 405H430Q398 402 367 380T294 316T228 255Q230 254 243 252T267 246T293 238T320 224T342 206T359 180T365 147Q365 130 360 106T354 66Q354 26 381 26Q429 26 459 145Q461 153 479 153H483Q499 153 499 144Q499 139 496 130Q455 -11 378 -11Q333 -11 305 15T277 90Q277 108 280 121T283 145Q283 167 269 183T234 206T200 217T182 220H180Q168 178 159 139T145 81T136 44T129 20T122 7T111 -2Q98 -11 83 -11Q66 -11 57 -1T48 16Q48 26 85 176T158 471L195 616Q196 629 188 632T149 637H144Q134 637 131 637T124 640T121 647Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-79" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="775" y="0"></use> +<g transform="translate(1831,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-6B" x="809" y="583"></use> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/6d349c399570c5d40193e9727145afe5 b/url/cache/bh/https/org/wikimedia/6d349c399570c5d40193e9727145afe5 new file mode 100644 index 0000000..e4c3319 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/6d349c399570c5d40193e9727145afe5 @@ -0,0 +1,88 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: abd05f78ff4c6c00a53179425bb7facb22b8d912 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2037 +date: Wed, 10 Dec 2025 04:52:54 GMT +age: 41860 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/9 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 3021 +x-request-id: ba38cebd-30a4-444b-b95c-077249960889 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="23.779ex" height="6.009ex" style="vertical-align: -2.171ex;" viewBox="0 -1652.5 10238.1 2587.3" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \lim _{\Delta x\to 0}{\frac {f(x+\Delta x)-f(x)}{\Delta x}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-6C" d="M42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6D" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q351 442 364 440T387 434T406 426T421 417T432 406T441 395T448 384T452 374T455 366L457 361L460 365Q463 369 466 373T475 384T488 397T503 410T523 422T546 432T572 439T603 442Q729 442 740 329Q741 322 741 190V104Q741 66 743 59T754 49Q775 46 803 46H819V0H811L788 1Q764 2 737 2T699 3Q596 3 587 0H579V46H595Q656 46 656 62Q657 64 657 200Q656 335 655 343Q649 371 635 385T611 402T585 404Q540 404 506 370Q479 343 472 315T464 232V168V108Q464 78 465 68T468 55T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2192" d="M56 237T56 250T70 270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-30" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(332,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-675)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="1406" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="2406" y="0"></use> +</g> +<g transform="translate(2222,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="7775" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1734" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="2735" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3568" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="4141" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="4753" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="5753" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="6304" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="6693" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="7266" y="0"></use> +</g> +<g transform="translate(3184,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/733c226dfa4c0c79d5d6601b4064342a b/url/cache/bh/https/org/wikimedia/733c226dfa4c0c79d5d6601b4064342a new file mode 100644 index 0000000..06b3113 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/733c226dfa4c0c79d5d6601b4064342a @@ -0,0 +1,76 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 50bf43a628b3417acd65fdb3b2b7d94e4f054a89 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2031 +date: Wed, 10 Dec 2025 14:03:43 GMT +age: 8813 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/1 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2474 +x-request-id: e6fc2e6b-31f5-4c3c-884e-fff171ebc3ee +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="20.458ex" height="3.009ex" style="vertical-align: -0.838ex; margin-right: -0.387ex;" viewBox="0 -934.9 8808.4 1295.7" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\ddot {x}}(t)=x''(t)=-32,\,\!}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-A8" d="M95 612Q95 633 112 651T153 669T193 652T210 612Q210 588 194 571T152 554L127 560Q95 577 95 612ZM289 611Q289 634 304 649T335 668Q336 668 340 668T346 669Q369 669 386 652T404 612T387 572T346 554Q323 554 306 570T289 611Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-74" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2032" d="M79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-33" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-A8" x="63" y="-3"></use> + <use xlink:href="#E1-MJMAIN-28" x="572" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="962" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1323" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="1990" y="0"></use> +<g transform="translate(3047,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> +<g transform="translate(572,412)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2032"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2032" x="275" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-28" x="4109" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="4498" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="4860" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="5527" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="6583" y="0"></use> +<g transform="translate(7362,0)"> + <use xlink:href="#E1-MJMAIN-33"></use> + <use xlink:href="#E1-MJMAIN-32" x="500" y="0"></use> +</g> + <use xlink:href="#E1-MJMAIN-2C" x="8363" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/73fa7c8a9d9c6e290365d3f13523f812 b/url/cache/bh/https/org/wikimedia/73fa7c8a9d9c6e290365d3f13523f812 new file mode 100644 index 0000000..a2eeba4 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/73fa7c8a9d9c6e290365d3f13523f812 @@ -0,0 +1,89 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 31782bfba546f0047ffb3e70e637619647e623af +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2036 +date: Wed, 10 Dec 2025 16:30:34 GMT +age: 2 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: 4451ca52-fd8f-43ef-a5fb-24464851e509 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="21.377ex" height="5.843ex" style="vertical-align: -2.338ex;" viewBox="0 -1508.9 9204.1 2515.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\text{slope }}={\frac {{\text{ change in }}y}{{\text{change in }}x}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-73" d="M295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6C" d="M42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6F" d="M28 214Q28 309 93 378T250 448Q340 448 405 380T471 215Q471 120 407 55T250 -10Q153 -10 91 57T28 214ZM250 30Q372 30 372 193V225V250Q372 272 371 288T364 326T348 362T317 390T268 410Q263 411 252 411Q222 411 195 399Q152 377 139 338T126 246V226Q126 130 145 91Q177 30 250 30Z"></path> +<path stroke-width="1" id="E1-MJMAIN-70" d="M36 -148H50Q89 -148 97 -134V-126Q97 -119 97 -107T97 -77T98 -38T98 6T98 55T98 106Q98 140 98 177T98 243T98 296T97 335T97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 61 434T98 436Q115 437 135 438T165 441T176 442H179V416L180 390L188 397Q247 441 326 441Q407 441 464 377T522 216Q522 115 457 52T310 -11Q242 -11 190 33L182 40V-45V-101Q182 -128 184 -134T195 -145Q216 -148 244 -148H260V-194H252L228 -193Q205 -192 178 -192T140 -191Q37 -191 28 -194H20V-148H36ZM424 218Q424 292 390 347T305 402Q234 402 182 337V98Q222 26 294 26Q345 26 384 80T424 218Z"></path> +<path stroke-width="1" id="E1-MJMAIN-65" d="M28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-63" d="M370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320Z"></path> +<path stroke-width="1" id="E1-MJMAIN-68" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 124T102 167T103 217T103 272T103 329Q103 366 103 407T103 482T102 542T102 586T102 603Q99 622 88 628T43 637H25V660Q25 683 27 683L37 684Q47 685 66 686T103 688Q120 689 140 690T170 693T181 694H184V367Q244 442 328 442Q451 442 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-61" d="M137 305T115 305T78 320T63 359Q63 394 97 421T218 448Q291 448 336 416T396 340Q401 326 401 309T402 194V124Q402 76 407 58T428 40Q443 40 448 56T453 109V145H493V106Q492 66 490 59Q481 29 455 12T400 -6T353 12T329 54V58L327 55Q325 52 322 49T314 40T302 29T287 17T269 6T247 -2T221 -8T190 -11Q130 -11 82 20T34 107Q34 128 41 147T68 188T116 225T194 253T304 268H318V290Q318 324 312 340Q290 411 215 411Q197 411 181 410T156 406T148 403Q170 388 170 359Q170 334 154 320ZM126 106Q126 75 150 51T209 26Q247 26 276 49T315 109Q317 116 318 175Q318 233 317 233Q309 233 296 232T251 223T193 203T147 166T126 106Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6E" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-67" d="M329 409Q373 453 429 453Q459 453 472 434T485 396Q485 382 476 371T449 360Q416 360 412 390Q410 404 415 411Q415 412 416 414V415Q388 412 363 393Q355 388 355 386Q355 385 359 381T368 369T379 351T388 325T392 292Q392 230 343 187T222 143Q172 143 123 171Q112 153 112 133Q112 98 138 81Q147 75 155 75T227 73Q311 72 335 67Q396 58 431 26Q470 -13 470 -72Q470 -139 392 -175Q332 -206 250 -206Q167 -206 107 -175Q29 -140 29 -75Q29 -39 50 -15T92 18L103 24Q67 55 67 108Q67 155 96 193Q52 237 52 292Q52 355 102 398T223 442Q274 442 318 416L329 409ZM299 343Q294 371 273 387T221 404Q192 404 171 388T145 343Q142 326 142 292Q142 248 149 227T179 192Q196 182 222 182Q244 182 260 189T283 207T294 227T299 242Q302 258 302 292T299 343ZM403 -75Q403 -50 389 -34T348 -11T299 -2T245 0H218Q151 0 138 -6Q118 -15 107 -34T95 -74Q95 -84 101 -97T122 -127T170 -155T250 -167Q319 -167 361 -139T403 -75Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-73"></use> + <use xlink:href="#E1-MJMAIN-6C" x="394" y="0"></use> + <use xlink:href="#E1-MJMAIN-6F" x="673" y="0"></use> + <use xlink:href="#E1-MJMAIN-70" x="1173" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="1730" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="2702" y="0"></use> +<g transform="translate(3758,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="5205" height="60" x="0" y="220"></rect> +<g transform="translate(60,726)"> + <use xlink:href="#E1-MJMAIN-63" x="250" y="0"></use> + <use xlink:href="#E1-MJMAIN-68" x="694" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1251" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="1751" y="0"></use> + <use xlink:href="#E1-MJMAIN-67" x="2308" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="2808" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="3503" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="3781" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="4588" y="0"></use> +</g> +<g transform="translate(147,-716)"> + <use xlink:href="#E1-MJMAIN-63"></use> + <use xlink:href="#E1-MJMAIN-68" x="444" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1001" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="1501" y="0"></use> + <use xlink:href="#E1-MJMAIN-67" x="2058" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="2558" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="3253" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="3531" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4338" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/76185c56d734a6ac7722835c1d59c093 b/url/cache/bh/https/org/wikimedia/76185c56d734a6ac7722835c1d59c093 new file mode 100644 index 0000000..312eb40 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/76185c56d734a6ac7722835c1d59c093 @@ -0,0 +1,52 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 6e4f69a6f5b7bde494c28dae4759d57e5cbf5d80 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2033 +date: Wed, 10 Dec 2025 07:37:08 GMT +age: 32006 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/9 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1431 +x-request-id: d3f96abf-388c-487f-9ccb-2e48acd9a142 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.168ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 2225.2 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle (3,9)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-33" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +<path stroke-width="1" id="E1-MJMAIN-39" d="M352 287Q304 211 232 211Q154 211 104 270T44 396Q42 412 42 436V444Q42 537 111 606Q171 666 243 666Q245 666 249 666T257 665H261Q273 665 286 663T323 651T370 619T413 560Q456 472 456 334Q456 194 396 97Q361 41 312 10T208 -22Q147 -22 108 7T68 93T121 149Q143 149 158 135T173 96Q173 78 164 65T148 49T135 44L131 43Q131 41 138 37T164 27T206 22H212Q272 22 313 86Q352 142 352 280V287ZM244 248Q292 248 321 297T351 430Q351 508 343 542Q341 552 337 562T323 588T293 615T246 625Q208 625 181 598Q160 576 154 546T147 441Q147 358 152 329T172 282Q197 248 244 248Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-28" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-33" x="389" y="0"></use> + <use xlink:href="#E1-MJMAIN-2C" x="890" y="0"></use> + <use xlink:href="#E1-MJMAIN-39" x="1335" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1835" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/77ed45f453b0dba7a939378949011b1e b/url/cache/bh/https/org/wikimedia/77ed45f453b0dba7a939378949011b1e new file mode 100644 index 0000000..019d6b8 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/77ed45f453b0dba7a939378949011b1e @@ -0,0 +1,76 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 5bc117ca8b3136c5f5d58891fc9acb1fefdf4ad1 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2037 +date: Wed, 10 Dec 2025 04:52:54 GMT +age: 41860 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/9 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2971 +x-request-id: 3ed543fe-720a-43ed-8789-6ebee59431e2 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="12.241ex" height="5.843ex" style="vertical-align: -2.338ex;" viewBox="0 -1508.9 5270.5 2515.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {{\text{change in }}y}{{\text{change in }}x}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-63" d="M370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320Z"></path> +<path stroke-width="1" id="E1-MJMAIN-68" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 124T102 167T103 217T103 272T103 329Q103 366 103 407T103 482T102 542T102 586T102 603Q99 622 88 628T43 637H25V660Q25 683 27 683L37 684Q47 685 66 686T103 688Q120 689 140 690T170 693T181 694H184V367Q244 442 328 442Q451 442 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-61" d="M137 305T115 305T78 320T63 359Q63 394 97 421T218 448Q291 448 336 416T396 340Q401 326 401 309T402 194V124Q402 76 407 58T428 40Q443 40 448 56T453 109V145H493V106Q492 66 490 59Q481 29 455 12T400 -6T353 12T329 54V58L327 55Q325 52 322 49T314 40T302 29T287 17T269 6T247 -2T221 -8T190 -11Q130 -11 82 20T34 107Q34 128 41 147T68 188T116 225T194 253T304 268H318V290Q318 324 312 340Q290 411 215 411Q197 411 181 410T156 406T148 403Q170 388 170 359Q170 334 154 320ZM126 106Q126 75 150 51T209 26Q247 26 276 49T315 109Q317 116 318 175Q318 233 317 233Q309 233 296 232T251 223T193 203T147 166T126 106Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6E" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-67" d="M329 409Q373 453 429 453Q459 453 472 434T485 396Q485 382 476 371T449 360Q416 360 412 390Q410 404 415 411Q415 412 416 414V415Q388 412 363 393Q355 388 355 386Q355 385 359 381T368 369T379 351T388 325T392 292Q392 230 343 187T222 143Q172 143 123 171Q112 153 112 133Q112 98 138 81Q147 75 155 75T227 73Q311 72 335 67Q396 58 431 26Q470 -13 470 -72Q470 -139 392 -175Q332 -206 250 -206Q167 -206 107 -175Q29 -140 29 -75Q29 -39 50 -15T92 18L103 24Q67 55 67 108Q67 155 96 193Q52 237 52 292Q52 355 102 398T223 442Q274 442 318 416L329 409ZM299 343Q294 371 273 387T221 404Q192 404 171 388T145 343Q142 326 142 292Q142 248 149 227T179 192Q196 182 222 182Q244 182 260 189T283 207T294 227T299 242Q302 258 302 292T299 343ZM403 -75Q403 -50 389 -34T348 -11T299 -2T245 0H218Q151 0 138 -6Q118 -15 107 -34T95 -74Q95 -84 101 -97T122 -127T170 -155T250 -167Q319 -167 361 -139T403 -75Z"></path> +<path stroke-width="1" id="E1-MJMAIN-65" d="M28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="5030" height="60" x="0" y="220"></rect> +<g transform="translate(97,726)"> + <use xlink:href="#E1-MJMAIN-63"></use> + <use xlink:href="#E1-MJMAIN-68" x="444" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1001" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="1501" y="0"></use> + <use xlink:href="#E1-MJMAIN-67" x="2058" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="2558" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="3253" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="3531" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="4338" y="0"></use> +</g> +<g transform="translate(60,-716)"> + <use xlink:href="#E1-MJMAIN-63"></use> + <use xlink:href="#E1-MJMAIN-68" x="444" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1001" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="1501" y="0"></use> + <use xlink:href="#E1-MJMAIN-67" x="2058" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="2558" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="3253" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="3531" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4338" y="0"></use> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/78307c744bd479a1426c2dfe5b28be6c b/url/cache/bh/https/org/wikimedia/78307c744bd479a1426c2dfe5b28be6c new file mode 100644 index 0000000..18113ac --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/78307c744bd479a1426c2dfe5b28be6c @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: ffd2487510aa438433a2579450ab2b3d557e5edc +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2031 +date: Wed, 10 Dec 2025 08:51:08 GMT +age: 27566 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/1646 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 670 +x-request-id: ba3104c2-4983-46e9-b56d-0862985af169 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.23ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 529.5 721.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle a}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-61" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/7d325e5a4e6c48b7ab7327cef27f7929 b/url/cache/bh/https/org/wikimedia/7d325e5a4e6c48b7ab7327cef27f7929 new file mode 100644 index 0000000..6eabeb1 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/7d325e5a4e6c48b7ab7327cef27f7929 @@ -0,0 +1,46 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 46e5b5b462e546b1d3d7e5f9a23efece405b2e78 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2027 +date: Wed, 10 Dec 2025 14:40:11 GMT +age: 6623 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/7 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 692 +x-request-id: 89b70bb8-18e3-479a-be99-b5c71809429e +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="2.971ex" height="2.343ex" style="vertical-align: -0.505ex;" viewBox="0 -791.3 1279 1008.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle -2}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-2212" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="778" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/8320334d04a93d739eada3564a3af99d b/url/cache/bh/https/org/wikimedia/8320334d04a93d739eada3564a3af99d new file mode 100644 index 0000000..b8c697a --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/8320334d04a93d739eada3564a3af99d @@ -0,0 +1,75 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 17d063dc86a53a2efb1fe86f4a5d47d498652766 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2030 +date: Tue, 09 Dec 2025 21:40:36 GMT +age: 67777 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/286 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2681 +x-request-id: 5d74a8dc-0add-4859-93ba-704793b8aa27 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="25.228ex" height="6.343ex" style="vertical-align: -2.338ex;" viewBox="0 -1724.2 10861.8 2730.8" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \int _{a}^{b}f'(t)\,dt=f(b)-f(a)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJSZ2-222B" d="M114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798Z"></path> +<path stroke-width="1" id="E1-MJMATHI-62" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2032" d="M79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-74" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJSZ2-222B" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-62" x="1500" y="1540"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-61" x="787" y="-1270"></use> +<g transform="translate(1631,0)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2032" x="804" y="583"></use> +</g> + <use xlink:href="#E1-MJMAIN-28" x="2494" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="2884" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3245" y="0"></use> + <use xlink:href="#E1-MJMATHI-64" x="3801" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="4325" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="4964" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="6020" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="6571" y="0"></use> + <use xlink:href="#E1-MJMATHI-62" x="6960" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="7390" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="8002" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="9002" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="9553" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="9942" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="10472" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/832ef528dc62acc4fe08f87b6c364d61 b/url/cache/bh/https/org/wikimedia/832ef528dc62acc4fe08f87b6c364d61 new file mode 100644 index 0000000..d46ef57 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/832ef528dc62acc4fe08f87b6c364d61 @@ -0,0 +1,80 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: b76332d2513b9fd600e54fcafc10072a155dc938 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2035 +date: Wed, 10 Dec 2025 16:30:35 GMT +age: 0 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: 7f0f7c5a-c930-4824-b2af-446ee32d0f07 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="25.308ex" height="3.176ex" style="vertical-align: -0.838ex; margin-right: -0.387ex;" viewBox="0 -1006.6 10896.5 1367.4" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle x(t)=-16t^{2}+16t+32,\,\!}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-74" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-31" d="M213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578Z"></path> +<path stroke-width="1" id="E1-MJMAIN-36" d="M42 313Q42 476 123 571T303 666Q372 666 402 630T432 550Q432 525 418 510T379 495Q356 495 341 509T326 548Q326 592 373 601Q351 623 311 626Q240 626 194 566Q147 500 147 364L148 360Q153 366 156 373Q197 433 263 433H267Q313 433 348 414Q372 400 396 374T435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM257 397Q227 397 205 380T171 335T154 278T148 216Q148 133 160 97T198 39Q222 21 251 21Q302 21 329 59Q342 77 347 104T352 209Q352 289 347 316T329 361Q302 397 257 397Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-33" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="572" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="962" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1323" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="1990" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="3047" y="0"></use> +<g transform="translate(3825,0)"> + <use xlink:href="#E1-MJMAIN-31"></use> + <use xlink:href="#E1-MJMAIN-36" x="500" y="0"></use> +</g> +<g transform="translate(4826,0)"> + <use xlink:href="#E1-MJMATHI-74" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="511" y="583"></use> +</g> + <use xlink:href="#E1-MJMAIN-2B" x="5864" y="0"></use> +<g transform="translate(6864,0)"> + <use xlink:href="#E1-MJMAIN-31"></use> + <use xlink:href="#E1-MJMAIN-36" x="500" y="0"></use> +</g> + <use xlink:href="#E1-MJMATHI-74" x="7865" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="8449" y="0"></use> +<g transform="translate(9450,0)"> + <use xlink:href="#E1-MJMAIN-33"></use> + <use xlink:href="#E1-MJMAIN-32" x="500" y="0"></use> +</g> + <use xlink:href="#E1-MJMAIN-2C" x="10451" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/89c5bad1cf18d1de2a4a3eab43be0395 b/url/cache/bh/https/org/wikimedia/89c5bad1cf18d1de2a4a3eab43be0395 new file mode 100644 index 0000000..435d2c7 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/89c5bad1cf18d1de2a4a3eab43be0395 @@ -0,0 +1,55 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 2250e602b41f737373c715600ba8f2d2cad1759d +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2033 +date: Wed, 10 Dec 2025 06:44:42 GMT +age: 35153 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/28 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1462 +x-request-id: 69ab3190-1d1d-4076-bee0-d0cc8509d4bc +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="8.391ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 3612.7 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle (a,f(a))}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-28" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="389" y="0"></use> + <use xlink:href="#E1-MJMAIN-2C" x="919" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="1364" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="1914" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="2304" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="2833" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3223" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/8bdb8de4d3e2591fea1686e3a6397b07 b/url/cache/bh/https/org/wikimedia/8bdb8de4d3e2591fea1686e3a6397b07 new file mode 100644 index 0000000..d2208f0 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/8bdb8de4d3e2591fea1686e3a6397b07 @@ -0,0 +1,57 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 546a15bd0e39f24c882ae7661e872689973aebce +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2029 +date: Wed, 10 Dec 2025 05:56:24 GMT +age: 38051 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/8 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1791 +x-request-id: 31695490-1d35-41e9-b1d6-b42af8cb7220 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="9.557ex" height="3.176ex" style="vertical-align: -0.838ex;" viewBox="0 -1006.6 4114.6 1367.4" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle f(y)=y^{2}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1437" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="2104" y="0"></use> +<g transform="translate(3161,0)"> + <use xlink:href="#E1-MJMATHI-79" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="706" y="583"></use> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/95ce9b44fa458cb394f4f9166ad2ddd3 b/url/cache/bh/https/org/wikimedia/95ce9b44fa458cb394f4f9166ad2ddd3 new file mode 100644 index 0000000..40400a3 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/95ce9b44fa458cb394f4f9166ad2ddd3 @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 32769037c408874e1890f77554c65f39c523ebe2 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2029 +date: Wed, 10 Dec 2025 15:17:50 GMT +age: 4363 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/22 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 473 +x-request-id: 8dd032de-2774-450e-926b-fa034ace30a5 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.936ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 833.5 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \Delta }</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/9a3496b19b07626f91554091e48b7bd8 b/url/cache/bh/https/org/wikimedia/9a3496b19b07626f91554091e48b7bd8 new file mode 100644 index 0000000..a991ca0 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/9a3496b19b07626f91554091e48b7bd8 @@ -0,0 +1,77 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: bf4f64cc882e88a4d7b634c37b7c1684630c3687 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2036 +date: Tue, 09 Dec 2025 02:13:50 GMT +age: 137784 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/28 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2726 +x-request-id: 0b98fea0-054d-49bd-b9d9-97680d75a16a +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="22.325ex" height="5.843ex" style="vertical-align: -2.338ex;" viewBox="0 -1508.9 9612.3 2515.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {d}{dx}}\int _{a}^{x}f(t)\,dt=f(x).}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJSZ2-222B" d="M114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-74" d="M26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1216" height="60" x="0" y="220"></rect> + <use xlink:href="#E1-MJMATHI-64" x="346" y="676"></use> +<g transform="translate(60,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</g> +<g transform="translate(1622,0)"> + <use xlink:href="#E1-MJSZ2-222B" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-78" x="1500" y="1540"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-61" x="787" y="-1270"></use> +</g> + <use xlink:href="#E1-MJMATHI-66" x="3355" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="3905" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="4295" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="4656" y="0"></use> + <use xlink:href="#E1-MJMATHI-64" x="5212" y="0"></use> + <use xlink:href="#E1-MJMATHI-74" x="5736" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="6375" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="7431" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="7982" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="8371" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="8944" y="0"></use> + <use xlink:href="#E1-MJMAIN-2E" x="9333" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/9b1b459d8861b7982ae43dc6dc003872 b/url/cache/bh/https/org/wikimedia/9b1b459d8861b7982ae43dc6dc003872 new file mode 100644 index 0000000..6e78feb --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/9b1b459d8861b7982ae43dc6dc003872 @@ -0,0 +1,114 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 06c378e465b5db843ac68d547d4800067b9d0969 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2036 +date: Wed, 10 Dec 2025 16:30:35 GMT +age: 0 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: a4113214-f920-44dd-82e0-8dc9dddf74a8 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="38.502ex" height="6.009ex" style="vertical-align: -2.171ex;" viewBox="0 -1652.5 16577.1 2587.3" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {dy}{dx}}=f'(x)=\lim _{\Delta x\to 0}{\frac {f(x+\Delta x)-f(x)}{\Delta x}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2032" d="M79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6C" d="M42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6D" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q351 442 364 440T387 434T406 426T421 417T432 406T441 395T448 384T452 374T455 366L457 361L460 365Q463 369 466 373T475 384T488 397T503 410T523 422T546 432T572 439T603 442Q729 442 740 329Q741 322 741 190V104Q741 66 743 59T754 49Q775 46 803 46H819V0H811L788 1Q764 2 737 2T699 3Q596 3 587 0H579V46H595Q656 46 656 62Q657 64 657 200Q656 335 655 343Q649 371 635 385T611 402T585 404Q540 404 506 370Q479 343 472 315T464 232V168V108Q464 78 465 68T468 55T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2192" d="M56 237T56 250T70 270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-30" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1216" height="60" x="0" y="220"></rect> +<g transform="translate(97,725)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="523" y="0"></use> +</g> +<g transform="translate(60,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="1733" y="0"></use> +<g transform="translate(2790,0)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2032" x="804" y="583"></use> +</g> + <use xlink:href="#E1-MJMAIN-28" x="3653" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4042" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="4615" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="5282" y="0"></use> +<g transform="translate(6338,0)"> +<g transform="translate(332,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-675)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="1406" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="2406" y="0"></use> +</g> +</g> +<g transform="translate(8561,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="7775" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1734" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="2735" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3568" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="4141" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="4753" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="5753" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="6304" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="6693" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="7266" y="0"></use> +</g> +<g transform="translate(3184,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/9d5cae1afebd6073fd7b2b97d2c95229 b/url/cache/bh/https/org/wikimedia/9d5cae1afebd6073fd7b2b97d2c95229 new file mode 100644 index 0000000..45e78c8 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/9d5cae1afebd6073fd7b2b97d2c95229 @@ -0,0 +1,52 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: d0cd7d7c75340e779d82658e19d1720ce84ab127 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2024 +date: Wed, 10 Dec 2025 05:51:27 GMT +age: 38347 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/103 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1469 +x-request-id: 59c14e16-fc13-42ae-9ac7-3cae8780f8f8 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.144ex" height="3.009ex" style="vertical-align: -0.838ex;" viewBox="0 -934.9 2214.9 1295.7" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle f'(x)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2032" d="M79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2032" x="804" y="583"></use> + <use xlink:href="#E1-MJMAIN-28" x="863" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="1252" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1825" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/a2d69c93f747b79b521b500548a31f4c b/url/cache/bh/https/org/wikimedia/a2d69c93f747b79b521b500548a31f4c new file mode 100644 index 0000000..ff3dc59 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/a2d69c93f747b79b521b500548a31f4c @@ -0,0 +1,54 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 2311a6a75c54b0ea085a381ba472c31d59321514 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2027 +date: Wed, 10 Dec 2025 04:02:53 GMT +age: 44861 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/184 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1849 +x-request-id: e08d10cf-786a-4ef3-a274-64233333114d +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="8.672ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 3733.6 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle y=f(x)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-79" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="775" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="1831" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="2382" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2771" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3344" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/a6d2611ac57994889028d3469bc46357 b/url/cache/bh/https/org/wikimedia/a6d2611ac57994889028d3469bc46357 new file mode 100644 index 0000000..6b2ea82 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/a6d2611ac57994889028d3469bc46357 @@ -0,0 +1,46 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: f3890eb866b6258d7a304fc34c70ee3fb3a81a70 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2032 +date: Wed, 10 Dec 2025 02:19:52 GMT +age: 51042 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/204 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 841 +x-request-id: 64cc822d-3904-4a51-b7a7-f01d32922c7b +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="3.266ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1406 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \Delta x}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/a8f3379bcb0a3ad5a12e7411a14b4327 b/url/cache/bh/https/org/wikimedia/a8f3379bcb0a3ad5a12e7411a14b4327 new file mode 100644 index 0000000..795124f --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/a8f3379bcb0a3ad5a12e7411a14b4327 @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: e85ff03cbe0c7341af6b982e47e9f90d235c66ab +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2028 +date: Wed, 10 Dec 2025 08:46:04 GMT +age: 27872 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/729 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 730 +x-request-id: 003f4d90-cf45-4a6b-96b6-dce83588442e +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.216ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 523.5 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle d}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/ab6595fd080df5f97c02e2aa5ce08b8a b/url/cache/bh/https/org/wikimedia/ab6595fd080df5f97c02e2aa5ce08b8a new file mode 100644 index 0000000..c87b862 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/ab6595fd080df5f97c02e2aa5ce08b8a @@ -0,0 +1,84 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: e04eff01e81518612676024c6e08a8a03c38320a +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2027 +date: Wed, 10 Dec 2025 04:52:54 GMT +age: 41860 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/9 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2959 +x-request-id: e6b08c93-95af-4c83-8cc4-e091f26be646 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="26.767ex" height="5.843ex" style="vertical-align: -2.005ex;" viewBox="0 -1652.5 11524.4 2515.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\text{slope}}={\frac {f(x+\Delta x)-f(x)}{\Delta x}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-73" d="M295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6C" d="M42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6F" d="M28 214Q28 309 93 378T250 448Q340 448 405 380T471 215Q471 120 407 55T250 -10Q153 -10 91 57T28 214ZM250 30Q372 30 372 193V225V250Q372 272 371 288T364 326T348 362T317 390T268 410Q263 411 252 411Q222 411 195 399Q152 377 139 338T126 246V226Q126 130 145 91Q177 30 250 30Z"></path> +<path stroke-width="1" id="E1-MJMAIN-70" d="M36 -148H50Q89 -148 97 -134V-126Q97 -119 97 -107T97 -77T98 -38T98 6T98 55T98 106Q98 140 98 177T98 243T98 296T97 335T97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 61 434T98 436Q115 437 135 438T165 441T176 442H179V416L180 390L188 397Q247 441 326 441Q407 441 464 377T522 216Q522 115 457 52T310 -11Q242 -11 190 33L182 40V-45V-101Q182 -128 184 -134T195 -145Q216 -148 244 -148H260V-194H252L228 -193Q205 -192 178 -192T140 -191Q37 -191 28 -194H20V-148H36ZM424 218Q424 292 390 347T305 402Q234 402 182 337V98Q222 26 294 26Q345 26 384 80T424 218Z"></path> +<path stroke-width="1" id="E1-MJMAIN-65" d="M28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-73"></use> + <use xlink:href="#E1-MJMAIN-6C" x="394" y="0"></use> + <use xlink:href="#E1-MJMAIN-6F" x="673" y="0"></use> + <use xlink:href="#E1-MJMAIN-70" x="1173" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="1730" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="2452" y="0"></use> +<g transform="translate(3508,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="7775" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1734" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="2735" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3568" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="4141" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="4753" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="5753" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="6304" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="6693" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="7266" y="0"></use> +</g> +<g transform="translate(3184,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/ac3a18ecb5627a9e4794f06778303352 b/url/cache/bh/https/org/wikimedia/ac3a18ecb5627a9e4794f06778303352 new file mode 100644 index 0000000..3e7d37e --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/ac3a18ecb5627a9e4794f06778303352 @@ -0,0 +1,52 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 79d7e5d868bec37d10c0a8a2ff7481eb5bb8d219 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2025 +date: Wed, 10 Dec 2025 12:01:24 GMT +age: 16151 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/5 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1209 +x-request-id: 58b9054d-52f0-4d47-bc48-7785ecd461f1 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.168ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 2225.2 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle (2,4)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +<path stroke-width="1" id="E1-MJMAIN-34" d="M462 0Q444 3 333 3Q217 3 199 0H190V46H221Q241 46 248 46T265 48T279 53T286 61Q287 63 287 115V165H28V211L179 442Q332 674 334 675Q336 677 355 677H373L379 671V211H471V165H379V114Q379 73 379 66T385 54Q393 47 442 46H471V0H462ZM293 211V545L74 212L183 211H293Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-28" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="389" y="0"></use> + <use xlink:href="#E1-MJMAIN-2C" x="890" y="0"></use> + <use xlink:href="#E1-MJMAIN-34" x="1335" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1835" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/b16987a6e334e4621e70d8399e60a06d b/url/cache/bh/https/org/wikimedia/b16987a6e334e4621e70d8399e60a06d new file mode 100644 index 0000000..a81fbbd --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/b16987a6e334e4621e70d8399e60a06d @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: c3c9a2c7b599b37105512c5d570edc034056dd40 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2036 +date: Wed, 10 Dec 2025 08:51:21 GMT +age: 27532 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/1625 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 800 +x-request-id: 18c49c05-3850-4111-be4a-175400462e5f +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.211ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 521.5 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle k}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-6B" d="M121 647Q121 657 125 670T137 683Q138 683 209 688T282 694Q294 694 294 686Q294 679 244 477Q194 279 194 272Q213 282 223 291Q247 309 292 354T362 415Q402 442 438 442Q468 442 485 423T503 369Q503 344 496 327T477 302T456 291T438 288Q418 288 406 299T394 328Q394 353 410 369T442 390L458 393Q446 405 434 405H430Q398 402 367 380T294 316T228 255Q230 254 243 252T267 246T293 238T320 224T342 206T359 180T365 147Q365 130 360 106T354 66Q354 26 381 26Q429 26 459 145Q461 153 479 153H483Q499 153 499 144Q499 139 496 130Q455 -11 378 -11Q333 -11 305 15T277 90Q277 108 280 121T283 145Q283 167 269 183T234 206T200 217T182 220H180Q168 178 159 139T145 81T136 44T129 20T122 7T111 -2Q98 -11 83 -11Q66 -11 57 -1T48 16Q48 26 85 176T158 471L195 616Q196 629 188 632T149 637H144Q134 637 131 637T124 640T121 647Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-6B" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/b2336162f8916d6658d1719fceb3fc07 b/url/cache/bh/https/org/wikimedia/b2336162f8916d6658d1719fceb3fc07 new file mode 100644 index 0000000..addb4f9 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/b2336162f8916d6658d1719fceb3fc07 @@ -0,0 +1,61 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 25e92b6f682846ab7e6fdd6164dd473ee3f259d6 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2029 +date: Wed, 10 Dec 2025 04:52:55 GMT +age: 41861 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/9 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1887 +x-request-id: a543e225-3cb2-4350-8232-e2964dd6ee9b +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="8.972ex" height="5.509ex" style="vertical-align: -2.005ex;" viewBox="0 -1508.9 3863.1 2372" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {dy}{dx}}=2x}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1216" height="60" x="0" y="220"></rect> +<g transform="translate(97,725)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="523" y="0"></use> +</g> +<g transform="translate(60,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="1733" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="2790" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3290" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/b34a090dabba2df4f498dd1f9c285a64 b/url/cache/bh/https/org/wikimedia/b34a090dabba2df4f498dd1f9c285a64 new file mode 100644 index 0000000..152bb63 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/b34a090dabba2df4f498dd1f9c285a64 @@ -0,0 +1,56 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 8d2cb3eb21e944c077ddbb69a60969d47141f02c +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2033 +date: Wed, 10 Dec 2025 05:56:24 GMT +age: 38051 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/34 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1751 +x-request-id: 41a1eb55-db0b-48ef-80a0-86274c8bbf7f +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="8.918ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 3839.7 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle c\in (a,b)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-63" d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2208" d="M84 250Q84 372 166 450T360 539Q361 539 377 539T419 540T469 540H568Q583 532 583 520Q583 511 570 501L466 500Q355 499 329 494Q280 482 242 458T183 409T147 354T129 306T124 272V270H568Q583 262 583 250T568 230H124V228Q124 207 134 177T167 112T231 48T328 7Q355 1 466 0H570Q583 -10 583 -20Q583 -32 568 -40H471Q464 -40 446 -40T417 -41Q262 -41 172 45Q84 127 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +<path stroke-width="1" id="E1-MJMATHI-62" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-63" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-2208" x="711" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="1656" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="2046" y="0"></use> + <use xlink:href="#E1-MJMAIN-2C" x="2575" y="0"></use> + <use xlink:href="#E1-MJMATHI-62" x="3020" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3450" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/b537ec91add506cc9dd07993b779928b b/url/cache/bh/https/org/wikimedia/b537ec91add506cc9dd07993b779928b new file mode 100644 index 0000000..6c97954 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/b537ec91add506cc9dd07993b779928b @@ -0,0 +1,48 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: aad656b6c009dbc111be61d5ab821ff8e8927e93 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2035 +date: Wed, 10 Dec 2025 14:31:58 GMT +age: 7096 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/10 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1426 +x-request-id: 41c06c59-7993-4f53-b6f4-02c47644d3cf +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.584ex" height="2.009ex" style="vertical-align: -0.671ex;" viewBox="0 -576.1 2404.1 865.1" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle x\approx y}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2248" d="M55 319Q55 360 72 393T114 444T163 472T205 482Q207 482 213 482T223 483Q262 483 296 468T393 413L443 381Q502 346 553 346Q609 346 649 375T694 454Q694 465 698 474T708 483Q722 483 722 452Q722 386 675 338T555 289Q514 289 468 310T388 357T308 404T224 426Q164 426 125 393T83 318Q81 289 69 289Q55 289 55 319ZM55 85Q55 126 72 159T114 210T163 238T205 248Q207 248 213 248T223 249Q262 249 296 234T393 179L443 147Q502 112 553 112Q609 112 649 141T694 220Q694 249 708 249T722 217Q722 153 675 104T555 55Q514 55 468 76T388 123T308 170T224 192Q164 192 125 159T83 84Q80 55 69 55Q55 55 55 85Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-2248" x="850" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="1906" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/b7c04ac8e0ff5b363fe8cef83dc6e951 b/url/cache/bh/https/org/wikimedia/b7c04ac8e0ff5b363fe8cef83dc6e951 new file mode 100644 index 0000000..6bcf725 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/b7c04ac8e0ff5b363fe8cef83dc6e951 @@ -0,0 +1,70 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 000852f14374eccb220f5bcfcc2169bc72804017 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2029 +date: Wed, 10 Dec 2025 04:52:54 GMT +age: 41860 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/9 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2542 +x-request-id: abbe502e-b9e5-4d47-b074-b011ca1694f1 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="12.831ex" height="5.676ex" style="vertical-align: -2.005ex;" viewBox="0 -1580.7 5524.6 2443.8" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\text{slope }}={\frac {\Delta y}{\Delta x}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-73" d="M295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6C" d="M42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6F" d="M28 214Q28 309 93 378T250 448Q340 448 405 380T471 215Q471 120 407 55T250 -10Q153 -10 91 57T28 214ZM250 30Q372 30 372 193V225V250Q372 272 371 288T364 326T348 362T317 390T268 410Q263 411 252 411Q222 411 195 399Q152 377 139 338T126 246V226Q126 130 145 91Q177 30 250 30Z"></path> +<path stroke-width="1" id="E1-MJMAIN-70" d="M36 -148H50Q89 -148 97 -134V-126Q97 -119 97 -107T97 -77T98 -38T98 6T98 55T98 106Q98 140 98 177T98 243T98 296T97 335T97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 61 434T98 436Q115 437 135 438T165 441T176 442H179V416L180 390L188 397Q247 441 326 441Q407 441 464 377T522 216Q522 115 457 52T310 -11Q242 -11 190 33L182 40V-45V-101Q182 -128 184 -134T195 -145Q216 -148 244 -148H260V-194H252L228 -193Q205 -192 178 -192T140 -191Q37 -191 28 -194H20V-148H36ZM424 218Q424 292 390 347T305 402Q234 402 182 337V98Q222 26 294 26Q345 26 384 80T424 218Z"></path> +<path stroke-width="1" id="E1-MJMAIN-65" d="M28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-73"></use> + <use xlink:href="#E1-MJMAIN-6C" x="394" y="0"></use> + <use xlink:href="#E1-MJMAIN-6F" x="673" y="0"></use> + <use xlink:href="#E1-MJMAIN-70" x="1173" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="1730" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="2702" y="0"></use> +<g transform="translate(3758,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1526" height="60" x="0" y="220"></rect> +<g transform="translate(97,725)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="833" y="0"></use> +</g> +<g transform="translate(60,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/bcc1a141c20d223e02c5c1f707a70ecf b/url/cache/bh/https/org/wikimedia/bcc1a141c20d223e02c5c1f707a70ecf new file mode 100644 index 0000000..252912f --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/bcc1a141c20d223e02c5c1f707a70ecf @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: ca732e5519cd2210bd59f1ab281b4e8f5a6a4413 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2032 +date: Mon, 08 Dec 2025 23:45:50 GMT +age: 146663 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/248 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 681 +x-request-id: f26c8ffa-214e-407b-9c4d-a826de0febea +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="2.194ex" height="5.676ex" style="vertical-align: -2.338ex;" viewBox="0 -1437.2 944.5 2443.8" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \int }</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJSZ2-222B" d="M114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJSZ2-222B" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/c043b23ee15f05b6b55288fe576219f4 b/url/cache/bh/https/org/wikimedia/c043b23ee15f05b6b55288fe576219f4 new file mode 100644 index 0000000..56d7ade --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/c043b23ee15f05b6b55288fe576219f4 @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 3b3d79e9ff8acf531bb7596a6e0687fbb8027ffb +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2028 +date: Wed, 10 Dec 2025 13:16:53 GMT +age: 11600 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/7 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 3165 +x-request-id: 39fb43d5-9b04-4cde-a06f-d95dfe805b11 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="20.937ex" height="5.843ex" style="vertical-align: -2.005ex;" viewBox="0 -1652.5 9014.6 2515.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \lim _{h\to 0}{f(a+h)-f(a) \over {h}}.}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-6C" d="M42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6D" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q351 442 364 440T387 434T406 426T421 417T432 406T441 395T448 384T452 374T455 366L457 361L460 365Q463 369 466 373T475 384T488 397T503 410T523 422T546 432T572 439T603 442Q729 442 740 329Q741 322 741 190V104Q741 66 743 59T754 49Q775 46 803 46H819V0H811L788 1Q764 2 737 2T699 3Q596 3 587 0H579V46H595Q656 46 656 62Q657 64 657 200Q656 335 655 343Q649 371 635 385T611 402T585 404Q540 404 506 370Q479 343 472 315T464 232V168V108Q464 78 465 68T468 55T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMATHI-68" d="M137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2192" d="M56 237T56 250T70 270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-30" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(39,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-660)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-68" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="576" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="1577" y="0"></use> +</g> +<g transform="translate(1635,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="6860" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1691" y="0"></use> + <use xlink:href="#E1-MJMATHI-68" x="2692" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3268" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="3880" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="4881" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="5431" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="5821" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="6350" y="0"></use> +</g> + <use xlink:href="#E1-MJMATHI-68" x="3141" y="-715"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-2E" x="8736" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/c4e86ee190eeb88eba1d01610cbb6742 b/url/cache/bh/https/org/wikimedia/c4e86ee190eeb88eba1d01610cbb6742 new file mode 100644 index 0000000..4aee369 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/c4e86ee190eeb88eba1d01610cbb6742 @@ -0,0 +1,80 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 6a2a54be44a458fc96b0fe0083ed6dc1a4f7da48 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2026 +date: Tue, 09 Dec 2025 09:40:26 GMT +age: 110987 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/10 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 3769 +x-request-id: bed7c071-b8b9-4616-8bb5-93d072e5ab86 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="24.776ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 10667.5 1080.4" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \mathrm {Distance} =\mathrm {Speed} \cdot \mathrm {Time} }</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-44" d="M130 622Q123 629 119 631T103 634T60 637H27V683H228Q399 682 419 682T461 676Q504 667 546 641T626 573T685 470T708 336Q708 210 634 116T442 3Q429 1 228 0H27V46H60Q102 47 111 49T130 61V622ZM593 338Q593 439 571 501T493 602Q439 637 355 637H322H294Q238 637 234 628Q231 624 231 344Q231 62 232 59Q233 49 248 48T339 46H350Q456 46 515 95Q561 133 577 191T593 338Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMAIN-73" d="M295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316Z"></path> +<path stroke-width="1" id="E1-MJMAIN-74" d="M27 422Q80 426 109 478T141 600V615H181V431H316V385H181V241Q182 116 182 100T189 68Q203 29 238 29Q282 29 292 100Q293 108 293 146V181H333V146V134Q333 57 291 17Q264 -10 221 -10Q187 -10 162 2T124 33T105 68T98 100Q97 107 97 248V385H18V422H27Z"></path> +<path stroke-width="1" id="E1-MJMAIN-61" d="M137 305T115 305T78 320T63 359Q63 394 97 421T218 448Q291 448 336 416T396 340Q401 326 401 309T402 194V124Q402 76 407 58T428 40Q443 40 448 56T453 109V145H493V106Q492 66 490 59Q481 29 455 12T400 -6T353 12T329 54V58L327 55Q325 52 322 49T314 40T302 29T287 17T269 6T247 -2T221 -8T190 -11Q130 -11 82 20T34 107Q34 128 41 147T68 188T116 225T194 253T304 268H318V290Q318 324 312 340Q290 411 215 411Q197 411 181 410T156 406T148 403Q170 388 170 359Q170 334 154 320ZM126 106Q126 75 150 51T209 26Q247 26 276 49T315 109Q317 116 318 175Q318 233 317 233Q309 233 296 232T251 223T193 203T147 166T126 106Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6E" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-63" d="M370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320Z"></path> +<path stroke-width="1" id="E1-MJMAIN-65" d="M28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-53" d="M55 507Q55 590 112 647T243 704H257Q342 704 405 641L426 672Q431 679 436 687T446 700L449 704Q450 704 453 704T459 705H463Q466 705 472 699V462L466 456H448Q437 456 435 459T430 479Q413 605 329 646Q292 662 254 662Q201 662 168 626T135 542Q135 508 152 480T200 435Q210 431 286 412T370 389Q427 367 463 314T500 191Q500 110 448 45T301 -21Q245 -21 201 -4T140 27L122 41Q118 36 107 21T87 -7T78 -21Q76 -22 68 -22H64Q61 -22 55 -16V101Q55 220 56 222Q58 227 76 227H89Q95 221 95 214Q95 182 105 151T139 90T205 42T305 24Q352 24 386 62T420 155Q420 198 398 233T340 281Q284 295 266 300Q261 301 239 306T206 314T174 325T141 343T112 367T85 402Q55 451 55 507Z"></path> +<path stroke-width="1" id="E1-MJMAIN-70" d="M36 -148H50Q89 -148 97 -134V-126Q97 -119 97 -107T97 -77T98 -38T98 6T98 55T98 106Q98 140 98 177T98 243T98 296T97 335T97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 61 434T98 436Q115 437 135 438T165 441T176 442H179V416L180 390L188 397Q247 441 326 441Q407 441 464 377T522 216Q522 115 457 52T310 -11Q242 -11 190 33L182 40V-45V-101Q182 -128 184 -134T195 -145Q216 -148 244 -148H260V-194H252L228 -193Q205 -192 178 -192T140 -191Q37 -191 28 -194H20V-148H36ZM424 218Q424 292 390 347T305 402Q234 402 182 337V98Q222 26 294 26Q345 26 384 80T424 218Z"></path> +<path stroke-width="1" id="E1-MJMAIN-64" d="M376 495Q376 511 376 535T377 568Q377 613 367 624T316 637H298V660Q298 683 300 683L310 684Q320 685 339 686T376 688Q393 689 413 690T443 693T454 694H457V390Q457 84 458 81Q461 61 472 55T517 46H535V0Q533 0 459 -5T380 -11H373V44L365 37Q307 -11 235 -11Q158 -11 96 50T34 215Q34 315 97 378T244 442Q319 442 376 393V495ZM373 342Q328 405 260 405Q211 405 173 369Q146 341 139 305T131 211Q131 155 138 120T173 59Q203 26 251 26Q322 26 373 103V342Z"></path> +<path stroke-width="1" id="E1-MJMAIN-22C5" d="M78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-54" d="M36 443Q37 448 46 558T55 671V677H666V671Q667 666 676 556T685 443V437H645V443Q645 445 642 478T631 544T610 593Q593 614 555 625Q534 630 478 630H451H443Q417 630 414 618Q413 616 413 339V63Q420 53 439 50T528 46H558V0H545L361 3Q186 1 177 0H164V46H194Q264 46 283 49T309 63V339V550Q309 620 304 625T271 630H244H224Q154 630 119 601Q101 585 93 554T81 486T76 443V437H36V443Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6D" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q351 442 364 440T387 434T406 426T421 417T432 406T441 395T448 384T452 374T455 366L457 361L460 365Q463 369 466 373T475 384T488 397T503 410T523 422T546 432T572 439T603 442Q729 442 740 329Q741 322 741 190V104Q741 66 743 59T754 49Q775 46 803 46H819V0H811L788 1Q764 2 737 2T699 3Q596 3 587 0H579V46H595Q656 46 656 62Q657 64 657 200Q656 335 655 343Q649 371 635 385T611 402T585 404Q540 404 506 370Q479 343 472 315T464 232V168V108Q464 78 465 68T468 55T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-44" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="764" y="0"></use> + <use xlink:href="#E1-MJMAIN-73" x="1043" y="0"></use> + <use xlink:href="#E1-MJMAIN-74" x="1437" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1827" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="2327" y="0"></use> + <use xlink:href="#E1-MJMAIN-63" x="2884" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="3328" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="4050" y="0"></use> +<g transform="translate(5107,0)"> + <use xlink:href="#E1-MJMAIN-53" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-70" x="556" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="1113" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="1557" y="0"></use> + <use xlink:href="#E1-MJMAIN-64" x="2002" y="0"></use> +</g> + <use xlink:href="#E1-MJMAIN-22C5" x="7887" y="0"></use> +<g transform="translate(8388,0)"> + <use xlink:href="#E1-MJMAIN-54" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="722" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="1001" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="1834" y="0"></use> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/d1e6b9442cd468493e6c1f9eb0ee8f36 b/url/cache/bh/https/org/wikimedia/d1e6b9442cd468493e6c1f9eb0ee8f36 new file mode 100644 index 0000000..12c5c8d --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/d1e6b9442cd468493e6c1f9eb0ee8f36 @@ -0,0 +1,46 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 5c5eda9ec854eb0076d43c147eb8956637a1003f +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2030 +date: Tue, 09 Dec 2025 18:36:38 GMT +age: 78815 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/68 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1115 +x-request-id: 4fc051fa-f5a1-438c-bd5d-570261d9e45f +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="2.371ex" height="2.509ex" style="vertical-align: -0.671ex;" viewBox="0 -791.3 1021 1080.4" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle dy}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="523" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/d3879897ab740d5f5c4f38065292762f b/url/cache/bh/https/org/wikimedia/d3879897ab740d5f5c4f38065292762f new file mode 100644 index 0000000..a553038 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/d3879897ab740d5f5c4f38065292762f @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 610c5119f352c9491649e38bc3eb7b4682a3c5e3 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2038 +date: Wed, 10 Dec 2025 04:52:55 GMT +age: 41860 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/9 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2821 +x-request-id: e7d67efb-be9b-4c94-9a6a-7fb8918679a5 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="26.161ex" height="5.509ex" style="vertical-align: -2.005ex;" viewBox="0 -1508.9 11263.8 2372" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {d}{dx}}(5x^{4})=5(4)x^{3}=20x^{3}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-35" d="M164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157Z"></path> +<path stroke-width="1" id="E1-MJMAIN-34" d="M462 0Q444 3 333 3Q217 3 199 0H190V46H221Q241 46 248 46T265 48T279 53T286 61Q287 63 287 115V165H28V211L179 442Q332 674 334 675Q336 677 355 677H373L379 671V211H471V165H379V114Q379 73 379 66T385 54Q393 47 442 46H471V0H462ZM293 211V545L74 212L183 211H293Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-33" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMAIN-30" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1216" height="60" x="0" y="220"></rect> + <use xlink:href="#E1-MJMATHI-64" x="346" y="676"></use> +<g transform="translate(60,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-28" x="1456" y="0"></use> + <use xlink:href="#E1-MJMAIN-35" x="1845" y="0"></use> +<g transform="translate(2346,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-34" x="809" y="583"></use> +</g> + <use xlink:href="#E1-MJMAIN-29" x="3372" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="4039" y="0"></use> + <use xlink:href="#E1-MJMAIN-35" x="5095" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="5596" y="0"></use> + <use xlink:href="#E1-MJMAIN-34" x="5985" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="6486" y="0"></use> +<g transform="translate(6875,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-33" x="809" y="583"></use> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="8180" y="0"></use> +<g transform="translate(9236,0)"> + <use xlink:href="#E1-MJMAIN-32"></use> + <use xlink:href="#E1-MJMAIN-30" x="500" y="0"></use> +</g> +<g transform="translate(10237,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-33" x="809" y="583"></use> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/dd77614b9511fc4ae716d4f3c520db82 b/url/cache/bh/https/org/wikimedia/dd77614b9511fc4ae716d4f3c520db82 new file mode 100644 index 0000000..da52cfa --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/dd77614b9511fc4ae716d4f3c520db82 @@ -0,0 +1,57 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: fbbae4f208c1a8c2f6ed7a0cee104f8710e39dee +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2038 +date: Wed, 10 Dec 2025 06:06:53 GMT +age: 37401 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/18 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2069 +x-request-id: 6f6037ce-7d6b-4c1a-87e1-284a10f57ad7 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="10.578ex" height="5.676ex" style="vertical-align: -2.338ex;" viewBox="0 -1437.2 4554.3 2443.8" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \int f(x)\,dx.}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJSZ2-222B" d="M114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJSZ2-222B" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-66" x="1111" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="1661" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2051" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="2623" y="0"></use> + <use xlink:href="#E1-MJMATHI-64" x="3179" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3703" y="0"></use> + <use xlink:href="#E1-MJMAIN-2E" x="4275" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/e173b91886df184555c54acf56a6b9f0 b/url/cache/bh/https/org/wikimedia/e173b91886df184555c54acf56a6b9f0 new file mode 100644 index 0000000..44682a4 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/e173b91886df184555c54acf56a6b9f0 @@ -0,0 +1,59 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: ac02adeed584466d53dee65f3228ad66939eb58b +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2028 +date: Wed, 10 Dec 2025 15:50:49 GMT +age: 2364 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/4 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2458 +x-request-id: c1971ad9-0b46-4a63-a10e-ac454bd13396 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="11.139ex" height="6.343ex" style="vertical-align: -2.338ex;" viewBox="0 -1724.2 4796 2730.8" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \int _{a}^{b}f(x)\,dx}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJSZ2-222B" d="M114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798Z"></path> +<path stroke-width="1" id="E1-MJMATHI-62" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJSZ2-222B" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-62" x="1500" y="1540"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-61" x="787" y="-1270"></use> + <use xlink:href="#E1-MJMATHI-66" x="1631" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="2181" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="2571" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3143" y="0"></use> + <use xlink:href="#E1-MJMATHI-64" x="3699" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4223" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/e63111421d2e7e51635bb8866b50dc14 b/url/cache/bh/https/org/wikimedia/e63111421d2e7e51635bb8866b50dc14 new file mode 100644 index 0000000..9f720ef --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/e63111421d2e7e51635bb8866b50dc14 @@ -0,0 +1,56 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 5ceb16b58a91d26cf1e442d0682dfa7a2c0ab72c +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2035 +date: Wed, 10 Dec 2025 01:46:27 GMT +age: 53047 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/57 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1531 +x-request-id: 9e4696a5-85ff-45d5-9bf3-4b2afcb1bb80 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="3.382ex" height="5.509ex" style="vertical-align: -2.005ex;" viewBox="0 -1508.9 1456 2372" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {dy}{dx}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1216" height="60" x="0" y="220"></rect> +<g transform="translate(97,725)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="523" y="0"></use> +</g> +<g transform="translate(60,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/e6c838f0ae2a1be66f3ea3356f2b5294 b/url/cache/bh/https/org/wikimedia/e6c838f0ae2a1be66f3ea3356f2b5294 new file mode 100644 index 0000000..c1871b1 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/e6c838f0ae2a1be66f3ea3356f2b5294 @@ -0,0 +1,67 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 6c4fd3f805c38024f3887477b61fd2297f4e8050 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2036 +date: Tue, 09 Dec 2025 21:32:11 GMT +age: 68284 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/21 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1899 +x-request-id: 677de753-71bb-4be6-b6a2-56acda5de151 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="13.812ex" height="5.509ex" style="vertical-align: -2.005ex;" viewBox="0 -1508.9 5947 2372" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {d}{dx}}(x^{2})=2x.}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-64" d="M366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2E" d="M78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1216" height="60" x="0" y="220"></rect> + <use xlink:href="#E1-MJMATHI-64" x="346" y="676"></use> +<g transform="translate(60,-715)"> + <use xlink:href="#E1-MJMATHI-64" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="523" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-28" x="1456" y="0"></use> +<g transform="translate(1845,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="809" y="583"></use> +</g> + <use xlink:href="#E1-MJMAIN-29" x="2871" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="3539" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="4595" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="5095" y="0"></use> + <use xlink:href="#E1-MJMAIN-2E" x="5668" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/e7abf05f3ba411ded84e617d157a3b63 b/url/cache/bh/https/org/wikimedia/e7abf05f3ba411ded84e617d157a3b63 new file mode 100644 index 0000000..b91a8ea --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/e7abf05f3ba411ded84e617d157a3b63 @@ -0,0 +1,99 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 5282b11d9ba9585af05265801b9da18fd6a4db92 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2033 +date: Wed, 10 Dec 2025 16:30:35 GMT +age: 1 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: b042e3b2-8f08-4a1f-880b-6bb6b187e23b +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="25.215ex" height="5.843ex" style="vertical-align: -2.338ex;" viewBox="0 -1508.9 10856.6 2515.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {{\text{change in }}y}{{\text{change in }}x}}={\frac {-6}{+3}}=-2}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-63" d="M370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320Z"></path> +<path stroke-width="1" id="E1-MJMAIN-68" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 124T102 167T103 217T103 272T103 329Q103 366 103 407T103 482T102 542T102 586T102 603Q99 622 88 628T43 637H25V660Q25 683 27 683L37 684Q47 685 66 686T103 688Q120 689 140 690T170 693T181 694H184V367Q244 442 328 442Q451 442 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-61" d="M137 305T115 305T78 320T63 359Q63 394 97 421T218 448Q291 448 336 416T396 340Q401 326 401 309T402 194V124Q402 76 407 58T428 40Q443 40 448 56T453 109V145H493V106Q492 66 490 59Q481 29 455 12T400 -6T353 12T329 54V58L327 55Q325 52 322 49T314 40T302 29T287 17T269 6T247 -2T221 -8T190 -11Q130 -11 82 20T34 107Q34 128 41 147T68 188T116 225T194 253T304 268H318V290Q318 324 312 340Q290 411 215 411Q197 411 181 410T156 406T148 403Q170 388 170 359Q170 334 154 320ZM126 106Q126 75 150 51T209 26Q247 26 276 49T315 109Q317 116 318 175Q318 233 317 233Q309 233 296 232T251 223T193 203T147 166T126 106Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6E" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-67" d="M329 409Q373 453 429 453Q459 453 472 434T485 396Q485 382 476 371T449 360Q416 360 412 390Q410 404 415 411Q415 412 416 414V415Q388 412 363 393Q355 388 355 386Q355 385 359 381T368 369T379 351T388 325T392 292Q392 230 343 187T222 143Q172 143 123 171Q112 153 112 133Q112 98 138 81Q147 75 155 75T227 73Q311 72 335 67Q396 58 431 26Q470 -13 470 -72Q470 -139 392 -175Q332 -206 250 -206Q167 -206 107 -175Q29 -140 29 -75Q29 -39 50 -15T92 18L103 24Q67 55 67 108Q67 155 96 193Q52 237 52 292Q52 355 102 398T223 442Q274 442 318 416L329 409ZM299 343Q294 371 273 387T221 404Q192 404 171 388T145 343Q142 326 142 292Q142 248 149 227T179 192Q196 182 222 182Q244 182 260 189T283 207T294 227T299 242Q302 258 302 292T299 343ZM403 -75Q403 -50 389 -34T348 -11T299 -2T245 0H218Q151 0 138 -6Q118 -15 107 -34T95 -74Q95 -84 101 -97T122 -127T170 -155T250 -167Q319 -167 361 -139T403 -75Z"></path> +<path stroke-width="1" id="E1-MJMAIN-65" d="M28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-36" d="M42 313Q42 476 123 571T303 666Q372 666 402 630T432 550Q432 525 418 510T379 495Q356 495 341 509T326 548Q326 592 373 601Q351 623 311 626Q240 626 194 566Q147 500 147 364L148 360Q153 366 156 373Q197 433 263 433H267Q313 433 348 414Q372 400 396 374T435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM257 397Q227 397 205 380T171 335T154 278T148 216Q148 133 160 97T198 39Q222 21 251 21Q302 21 329 59Q342 77 347 104T352 209Q352 289 347 316T329 361Q302 397 257 397Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-33" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="5030" height="60" x="0" y="220"></rect> +<g transform="translate(97,726)"> + <use xlink:href="#E1-MJMAIN-63"></use> + <use xlink:href="#E1-MJMAIN-68" x="444" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1001" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="1501" y="0"></use> + <use xlink:href="#E1-MJMAIN-67" x="2058" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="2558" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="3253" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="3531" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="4338" y="0"></use> +</g> +<g transform="translate(60,-716)"> + <use xlink:href="#E1-MJMAIN-63"></use> + <use xlink:href="#E1-MJMAIN-68" x="444" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1001" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="1501" y="0"></use> + <use xlink:href="#E1-MJMAIN-67" x="2058" y="0"></use> + <use xlink:href="#E1-MJMAIN-65" x="2558" y="0"></use> + <use xlink:href="#E1-MJMAIN-69" x="3253" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="3531" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="4338" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="5548" y="0"></use> +<g transform="translate(6604,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1399" height="60" x="0" y="220"></rect> +<g transform="translate(60,676)"> + <use xlink:href="#E1-MJMAIN-2212" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-36" x="778" y="0"></use> +</g> +<g transform="translate(60,-686)"> + <use xlink:href="#E1-MJMAIN-2B" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-33" x="778" y="0"></use> +</g> +</g> +</g> + <use xlink:href="#E1-MJMAIN-3D" x="8521" y="0"></use> + <use xlink:href="#E1-MJMAIN-2212" x="9577" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="10356" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/e8367dc17c801c740dbd4be2a78a765f b/url/cache/bh/https/org/wikimedia/e8367dc17c801c740dbd4be2a78a765f new file mode 100644 index 0000000..d8e0b27 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/e8367dc17c801c740dbd4be2a78a765f @@ -0,0 +1,196 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: ac4f244e335714a06d06c32b6f91097d713615bf +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2035 +date: Tue, 09 Dec 2025 21:32:10 GMT +age: 68283 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/23 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 4411 +x-request-id: 8f6b4ad2-9c25-4005-ae4c-980848298b51 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="29.203ex" height="25.509ex" style="vertical-align: -12.171ex;" viewBox="0 -5742.7 12573.4 10983.1" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\begin{aligned}f'(3)&=\lim _{h\to 0}{(3+h)^{2}-3^{2} \over {h}}\\&=\lim _{h\to 0}{9+6h+h^{2}-9 \over {h}}\\&=\lim _{h\to 0}{6h+h^{2} \over {h}}\\&=\lim _{h\to 0}(6+h)\\&=6\end{aligned}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2032" d="M79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-33" d="M127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6C" d="M42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42Z"></path> +<path stroke-width="1" id="E1-MJMAIN-69" d="M69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6D" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q351 442 364 440T387 434T406 426T421 417T432 406T441 395T448 384T452 374T455 366L457 361L460 365Q463 369 466 373T475 384T488 397T503 410T523 422T546 432T572 439T603 442Q729 442 740 329Q741 322 741 190V104Q741 66 743 59T754 49Q775 46 803 46H819V0H811L788 1Q764 2 737 2T699 3Q596 3 587 0H579V46H595Q656 46 656 62Q657 64 657 200Q656 335 655 343Q649 371 635 385T611 402T585 404Q540 404 506 370Q479 343 472 315T464 232V168V108Q464 78 465 68T468 55T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMATHI-68" d="M137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2192" d="M56 237T56 250T70 270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-30" d="M96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2212" d="M84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-39" d="M352 287Q304 211 232 211Q154 211 104 270T44 396Q42 412 42 436V444Q42 537 111 606Q171 666 243 666Q245 666 249 666T257 665H261Q273 665 286 663T323 651T370 619T413 560Q456 472 456 334Q456 194 396 97Q361 41 312 10T208 -22Q147 -22 108 7T68 93T121 149Q143 149 158 135T173 96Q173 78 164 65T148 49T135 44L131 43Q131 41 138 37T164 27T206 22H212Q272 22 313 86Q352 142 352 280V287ZM244 248Q292 248 321 297T351 430Q351 508 343 542Q341 552 337 562T323 588T293 615T246 625Q208 625 181 598Q160 576 154 546T147 441Q147 358 152 329T172 282Q197 248 244 248Z"></path> +<path stroke-width="1" id="E1-MJMAIN-36" d="M42 313Q42 476 123 571T303 666Q372 666 402 630T432 550Q432 525 418 510T379 495Q356 495 341 509T326 548Q326 592 373 601Q351 623 311 626Q240 626 194 566Q147 500 147 364L148 360Q153 366 156 373Q197 433 263 433H267Q313 433 348 414Q372 400 396 374T435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM257 397Q227 397 205 380T171 335T154 278T148 216Q148 133 160 97T198 39Q222 21 251 21Q302 21 329 59Q342 77 347 104T352 209Q352 289 347 316T329 361Q302 397 257 397Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(167,0)"> +<g transform="translate(-11,0)"> +<g transform="translate(0,3994)"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2032" x="804" y="583"></use> + <use xlink:href="#E1-MJMAIN-28" x="863" y="0"></use> + <use xlink:href="#E1-MJMAIN-33" x="1252" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1753" y="0"></use> +</g> +</g> +<g transform="translate(2132,0)"> +<g transform="translate(0,3994)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> +<g transform="translate(39,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-660)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-68" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="576" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="1577" y="0"></use> +</g> +</g> +<g transform="translate(2969,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="5830" height="60" x="0" y="220"></rect> +<g transform="translate(60,770)"> + <use xlink:href="#E1-MJMAIN-28" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-33" x="389" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1112" y="0"></use> + <use xlink:href="#E1-MJMATHI-68" x="2112" y="0"></use> +<g transform="translate(2689,0)"> + <use xlink:href="#E1-MJMAIN-29" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="550" y="513"></use> +</g> + <use xlink:href="#E1-MJMAIN-2212" x="3755" y="0"></use> +<g transform="translate(4755,0)"> + <use xlink:href="#E1-MJMAIN-33" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="707" y="555"></use> +</g> +</g> + <use xlink:href="#E1-MJMATHI-68" x="2626" y="-715"></use> +</g> +</g> +</g> +<g transform="translate(0,1407)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> +<g transform="translate(39,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-660)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-68" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="576" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="1577" y="0"></use> +</g> +</g> +<g transform="translate(2969,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="6897" height="60" x="0" y="220"></rect> +<g transform="translate(60,676)"> + <use xlink:href="#E1-MJMAIN-39" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="722" y="0"></use> + <use xlink:href="#E1-MJMAIN-36" x="1723" y="0"></use> + <use xlink:href="#E1-MJMATHI-68" x="2223" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="3022" y="0"></use> +<g transform="translate(4023,0)"> + <use xlink:href="#E1-MJMATHI-68" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="815" y="513"></use> +</g> + <use xlink:href="#E1-MJMAIN-2212" x="5276" y="0"></use> + <use xlink:href="#E1-MJMAIN-39" x="6276" y="0"></use> +</g> + <use xlink:href="#E1-MJMATHI-68" x="3160" y="-715"></use> +</g> +</g> +</g> +<g transform="translate(0,-1179)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> +<g transform="translate(39,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-660)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-68" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="576" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="1577" y="0"></use> +</g> +</g> +<g transform="translate(2969,0)"> +<g transform="translate(120,0)"> +<rect stroke="none" width="3450" height="60" x="0" y="220"></rect> +<g transform="translate(60,676)"> + <use xlink:href="#E1-MJMAIN-36" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-68" x="500" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1299" y="0"></use> +<g transform="translate(2299,0)"> + <use xlink:href="#E1-MJMATHI-68" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="815" y="513"></use> +</g> +</g> + <use xlink:href="#E1-MJMATHI-68" x="1436" y="-715"></use> +</g> +</g> +</g> +<g transform="translate(0,-3054)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> +<g transform="translate(1334,0)"> +<g transform="translate(39,0)"> + <use xlink:href="#E1-MJMAIN-6C"></use> + <use xlink:href="#E1-MJMAIN-69" x="278" y="0"></use> + <use xlink:href="#E1-MJMAIN-6D" x="557" y="0"></use> +</g> +<g transform="translate(0,-660)"> + <use transform="scale(0.707)" xlink:href="#E1-MJMATHI-68" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-2192" x="576" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-30" x="1577" y="0"></use> +</g> +</g> + <use xlink:href="#E1-MJMAIN-28" x="2803" y="0"></use> + <use xlink:href="#E1-MJMAIN-36" x="3192" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="3915" y="0"></use> + <use xlink:href="#E1-MJMATHI-68" x="4916" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="5492" y="0"></use> +</g> +<g transform="translate(0,-4930)"> + <use xlink:href="#E1-MJMAIN-3D" x="277" y="0"></use> + <use xlink:href="#E1-MJMAIN-36" x="1334" y="0"></use> +</g> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/e8b36bd15b6524d7d73e7b3ee76d252d b/url/cache/bh/https/org/wikimedia/e8b36bd15b6524d7d73e7b3ee76d252d new file mode 100644 index 0000000..0cb3331 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/e8b36bd15b6524d7d73e7b3ee76d252d @@ -0,0 +1,46 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: e50b849d3a7cd902f0ae3fa6ad6d1cad49987c39 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2036 +date: Tue, 09 Dec 2025 01:14:27 GMT +age: 141367 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/56 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 996 +x-request-id: c4256039-adbb-4208-8a72-dc25c1a1bf58 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="2.492ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 1073 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle 2x}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-32" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="500" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/e91f063aa55b01440b48d3f9c910bcca b/url/cache/bh/https/org/wikimedia/e91f063aa55b01440b48d3f9c910bcca new file mode 100644 index 0000000..bd791b6 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/e91f063aa55b01440b48d3f9c910bcca @@ -0,0 +1,60 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: b592d102ccd1ba134d401c5b3ea177baaba3ffac +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2030 +date: Tue, 09 Dec 2025 13:13:42 GMT +age: 98214 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 hit, cp5017 hit/13 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2326 +x-request-id: 1207c265-73a7-40a5-bf6c-ad318c0374ed +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="13.063ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 5624.3 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle f:[a,b]\to \mathbb {R} }</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3A" d="M78 370Q78 394 95 412T138 430Q162 430 180 414T199 371Q199 346 182 328T139 310T96 327T78 370ZM78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60Z"></path> +<path stroke-width="1" id="E1-MJMAIN-5B" d="M118 -250V750H255V710H158V-210H255V-250H118Z"></path> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2C" d="M78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17Z"></path> +<path stroke-width="1" id="E1-MJMATHI-62" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path> +<path stroke-width="1" id="E1-MJMAIN-5D" d="M22 710V750H159V-250H22V-210H119V710H22Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2192" d="M56 237T56 250T70 270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJAMS-52" d="M17 665Q17 672 28 683H221Q415 681 439 677Q461 673 481 667T516 654T544 639T566 623T584 607T597 592T607 578T614 565T618 554L621 548Q626 530 626 497Q626 447 613 419Q578 348 473 326L455 321Q462 310 473 292T517 226T578 141T637 72T686 35Q705 30 705 16Q705 7 693 -1H510Q503 6 404 159L306 310H268V183Q270 67 271 59Q274 42 291 38Q295 37 319 35Q344 35 353 28Q362 17 353 3L346 -1H28Q16 5 16 16Q16 35 55 35Q96 38 101 52Q106 60 106 341T101 632Q95 645 55 648Q17 648 17 665ZM241 35Q238 42 237 45T235 78T233 163T233 337V621L237 635L244 648H133Q136 641 137 638T139 603T141 517T141 341Q141 131 140 89T134 37Q133 36 133 35H241ZM457 496Q457 540 449 570T425 615T400 634T377 643Q374 643 339 648Q300 648 281 635Q271 628 270 610T268 481V346H284Q327 346 375 352Q421 364 439 392T457 496ZM492 537T492 496T488 427T478 389T469 371T464 361Q464 360 465 360Q469 360 497 370Q593 400 593 495Q593 592 477 630L457 637L461 626Q474 611 488 561Q492 537 492 496ZM464 243Q411 317 410 317Q404 317 401 315Q384 315 370 312H346L526 35H619L606 50Q553 109 464 243Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3A" x="828" y="0"></use> + <use xlink:href="#E1-MJMAIN-5B" x="1384" y="0"></use> + <use xlink:href="#E1-MJMATHI-61" x="1663" y="0"></use> + <use xlink:href="#E1-MJMAIN-2C" x="2192" y="0"></use> + <use xlink:href="#E1-MJMATHI-62" x="2637" y="0"></use> + <use xlink:href="#E1-MJMAIN-5D" x="3067" y="0"></use> + <use xlink:href="#E1-MJMAIN-2192" x="3623" y="0"></use> + <use xlink:href="#E1-MJAMS-52" x="4901" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/ef9f78392c92d7de7a26e32fcdea707b b/url/cache/bh/https/org/wikimedia/ef9f78392c92d7de7a26e32fcdea707b new file mode 100644 index 0000000..77e0934 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/ef9f78392c92d7de7a26e32fcdea707b @@ -0,0 +1,48 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 91a7698e4c7401bb321f97888b872b583a9e4642 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2025 +date: Tue, 09 Dec 2025 22:23:43 GMT +age: 65211 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/156 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1071 +x-request-id: c337b86f-9fbd-4d63-ac21-bd7a4d745166 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.326ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2293.1 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle a<b}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-61" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3C" d="M694 -11T694 -19T688 -33T678 -40Q671 -40 524 29T234 166L90 235Q83 240 83 250Q83 261 91 266Q664 540 678 540Q681 540 687 534T694 519T687 505Q686 504 417 376L151 250L417 124Q686 -4 687 -5Q694 -11 694 -19Z"></path> +<path stroke-width="1" id="E1-MJMATHI-62" d="M73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-61" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3C" x="807" y="0"></use> + <use xlink:href="#E1-MJMATHI-62" x="1863" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/f49cf2de85b79c8bb51ea33ee4cec7d9 b/url/cache/bh/https/org/wikimedia/f49cf2de85b79c8bb51ea33ee4cec7d9 new file mode 100644 index 0000000..1959359 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/f49cf2de85b79c8bb51ea33ee4cec7d9 @@ -0,0 +1,44 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: a601995d55609f2d9f5e233e36fbe9ea26011b3b +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2024 +date: Wed, 10 Dec 2025 16:11:47 GMT +age: 1128 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/91 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 686 +x-request-id: 7b1e3fe0-be30-4b48-8b85-341eb4dc1ede +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1.395ex" height="1.676ex" style="vertical-align: -0.338ex;" viewBox="0 -576.1 600.5 721.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle n}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-6E" d="M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-6E" x="0" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/f7c97d44d0c25fbebba0603cc9ee1895 b/url/cache/bh/https/org/wikimedia/f7c97d44d0c25fbebba0603cc9ee1895 new file mode 100644 index 0000000..426f144 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/f7c97d44d0c25fbebba0603cc9ee1895 @@ -0,0 +1,48 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 9f39b6e42e5ffb81ac7b051b9e48b9a91d0713c7 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2034 +date: Wed, 10 Dec 2025 13:50:10 GMT +age: 9624 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/10 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1085 +x-request-id: 79f02eb2-6e2c-4143-aeef-bf831335e46e +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="5.591ex" height="2.176ex" style="vertical-align: -0.338ex;" viewBox="0 -791.3 2407.1 936.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle x=2}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="850" y="0"></use> + <use xlink:href="#E1-MJMAIN-32" x="1906" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/f8263ba16b3ebc7c7b7e30c4fe9d5a4f b/url/cache/bh/https/org/wikimedia/f8263ba16b3ebc7c7b7e30c4fe9d5a4f new file mode 100644 index 0000000..bedc03f --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/f8263ba16b3ebc7c7b7e30c4fe9d5a4f @@ -0,0 +1,56 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 5100256c84fd871304993b43abf54aa86c167aaa +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2033 +date: Wed, 10 Dec 2025 16:30:35 GMT +age: 1 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: 6cfe7512-3b73-425e-8637-4ab614a5e5c4 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="4.102ex" height="5.676ex" style="vertical-align: -2.005ex;" viewBox="0 -1580.7 1766 2443.8" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle {\frac {\Delta y}{\Delta x}}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +<path stroke-width="1" id="E1-MJMATHI-79" d="M21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> +<g transform="translate(120,0)"> +<rect stroke="none" width="1526" height="60" x="0" y="220"></rect> +<g transform="translate(97,725)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-79" x="833" y="0"></use> +</g> +<g transform="translate(60,-737)"> + <use xlink:href="#E1-MJMAIN-394" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="833" y="0"></use> +</g> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/f8d123fadeeb03a66a27568de6053f0e b/url/cache/bh/https/org/wikimedia/f8d123fadeeb03a66a27568de6053f0e new file mode 100644 index 0000000..7becd23 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/f8d123fadeeb03a66a27568de6053f0e @@ -0,0 +1,59 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: ec2ee2a040ba3b62484ca1518869f51e2c3e5e5a +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2034 +date: Wed, 10 Dec 2025 06:10:33 GMT +age: 37180 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/42 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 2265 +x-request-id: 3a08a6c1-207e-4ee7-83c7-183c48a75421 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="9.605ex" height="2.843ex" style="vertical-align: -0.838ex;" viewBox="0 -863.1 4135.5 1223.9" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle \arctan(x)}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-61" d="M137 305T115 305T78 320T63 359Q63 394 97 421T218 448Q291 448 336 416T396 340Q401 326 401 309T402 194V124Q402 76 407 58T428 40Q443 40 448 56T453 109V145H493V106Q492 66 490 59Q481 29 455 12T400 -6T353 12T329 54V58L327 55Q325 52 322 49T314 40T302 29T287 17T269 6T247 -2T221 -8T190 -11Q130 -11 82 20T34 107Q34 128 41 147T68 188T116 225T194 253T304 268H318V290Q318 324 312 340Q290 411 215 411Q197 411 181 410T156 406T148 403Q170 388 170 359Q170 334 154 320ZM126 106Q126 75 150 51T209 26Q247 26 276 49T315 109Q317 116 318 175Q318 233 317 233Q309 233 296 232T251 223T193 203T147 166T126 106Z"></path> +<path stroke-width="1" id="E1-MJMAIN-72" d="M36 46H50Q89 46 97 60V68Q97 77 97 91T98 122T98 161T98 203Q98 234 98 269T98 328L97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 60 434T96 436Q112 437 131 438T160 441T171 442H174V373Q213 441 271 441H277Q322 441 343 419T364 373Q364 352 351 337T313 322Q288 322 276 338T263 372Q263 381 265 388T270 400T273 405Q271 407 250 401Q234 393 226 386Q179 341 179 207V154Q179 141 179 127T179 101T180 81T180 66V61Q181 59 183 57T188 54T193 51T200 49T207 48T216 47T225 47T235 46T245 46H276V0H267Q249 3 140 3Q37 3 28 0H20V46H36Z"></path> +<path stroke-width="1" id="E1-MJMAIN-63" d="M370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320Z"></path> +<path stroke-width="1" id="E1-MJMAIN-74" d="M27 422Q80 426 109 478T141 600V615H181V431H316V385H181V241Q182 116 182 100T189 68Q203 29 238 29Q282 29 292 100Q293 108 293 146V181H333V146V134Q333 57 291 17Q264 -10 221 -10Q187 -10 162 2T124 33T105 68T98 100Q97 107 97 248V385H18V422H27Z"></path> +<path stroke-width="1" id="E1-MJMAIN-6E" d="M41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-61"></use> + <use xlink:href="#E1-MJMAIN-72" x="500" y="0"></use> + <use xlink:href="#E1-MJMAIN-63" x="893" y="0"></use> + <use xlink:href="#E1-MJMAIN-74" x="1337" y="0"></use> + <use xlink:href="#E1-MJMAIN-61" x="1727" y="0"></use> + <use xlink:href="#E1-MJMAIN-6E" x="2227" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="2784" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3173" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="3746" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/f99dee44d509aaba6ae71880ad31ded6 b/url/cache/bh/https/org/wikimedia/f99dee44d509aaba6ae71880ad31ded6 new file mode 100644 index 0000000..7a7153b --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/f99dee44d509aaba6ae71880ad31ded6 @@ -0,0 +1,57 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: 84ddac4ae10b1aa4a11741c79771a583419fb1fb +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2032 +date: Wed, 10 Dec 2025 10:59:15 GMT +age: 19880 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 hit/40 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +content-length: 1756 +x-request-id: 38b93f84-4c69-403a-b375-b4db9f671257 +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="9.9ex" height="3.176ex" style="vertical-align: -0.838ex;" viewBox="0 -1006.6 4262.5 1367.4" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle f(x)=x^{2}}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMATHI-66" d="M118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162Z"></path> +<path stroke-width="1" id="E1-MJMAIN-28" d="M94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-29" d="M60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749Z"></path> +<path stroke-width="1" id="E1-MJMAIN-3D" d="M56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153Z"></path> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMATHI-66" x="0" y="0"></use> + <use xlink:href="#E1-MJMAIN-28" x="550" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="940" y="0"></use> + <use xlink:href="#E1-MJMAIN-29" x="1512" y="0"></use> + <use xlink:href="#E1-MJMAIN-3D" x="2179" y="0"></use> +<g transform="translate(3236,0)"> + <use xlink:href="#E1-MJMATHI-78" x="0" y="0"></use> + <use transform="scale(0.707)" xlink:href="#E1-MJMAIN-32" x="809" y="583"></use> +</g> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/fc3cbea5965d98c45b78ea40fc79f951 b/url/cache/bh/https/org/wikimedia/fc3cbea5965d98c45b78ea40fc79f951 new file mode 100644 index 0000000..37c6a30 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/fc3cbea5965d98c45b78ea40fc79f951 @@ -0,0 +1,51 @@ +HTTP/1.1 200 OK +cache-control: s-maxage=864000, max-age=86400 +content-type: image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0" +x-resource-location: df4bec3df87746ce76f13e26c338c16ab23ed9f2 +access-control-allow-origin: * +access-control-allow-methods: GET,HEAD +access-control-allow-headers: accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding +access-control-expose-headers: etag +x-content-type-options: nosniff +x-frame-options: SAMEORIGIN +referrer-policy: origin-when-cross-origin +x-xss-protection: 1; mode=block +content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-content-security-policy: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +x-webkit-csp: default-src 'none'; media-src *; img-src *; style-src *;frame-ancestors 'self' +server: restbase2034 +date: Wed, 10 Dec 2025 16:30:35 GMT +age: 0 +accept-ranges: bytes +vary: , Accept-Encoding +x-cache: cp5017 miss, cp5017 miss +x-cache-status: miss +server-timing: cache;desc="miss", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +set-cookie: WMF-Last-Access=10-Dec-2025;Path=/;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +set-cookie: WMF-Last-Access-Global=10-Dec-2025;Path=/;Domain=.wikimedia.org;HttpOnly;secure;Expires=Sun, 11 Jan 2026 12:00:00 GMT +x-client-ip: 180.190.38.11 +set-cookie: GeoIP=PH:03:San_Juan:15.74:120.63:v4; Path=/; secure; Domain=.wikimedia.org +set-cookie: NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600 +transfer-encoding: chunked +x-request-id: d82574f3-8853-4b03-82b5-bdbfe7e986af +x-analytics: + +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="8.598ex" height="2.343ex" style="vertical-align: -0.505ex;" viewBox="0 -791.3 3701.9 1008.6" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-labelledby="MathJax-SVG-1-Title"> +<title id="MathJax-SVG-1-Title">{\displaystyle 2x+\Delta x}</title> +<defs aria-hidden="true"> +<path stroke-width="1" id="E1-MJMAIN-32" d="M109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429Z"></path> +<path stroke-width="1" id="E1-MJMATHI-78" d="M52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289Z"></path> +<path stroke-width="1" id="E1-MJMAIN-2B" d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z"></path> +<path stroke-width="1" id="E1-MJMAIN-394" d="M51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344Z"></path> +</defs> +<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)" aria-hidden="true"> + <use xlink:href="#E1-MJMAIN-32" x="0" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="500" y="0"></use> + <use xlink:href="#E1-MJMAIN-2B" x="1295" y="0"></use> + <use xlink:href="#E1-MJMAIN-394" x="2295" y="0"></use> + <use xlink:href="#E1-MJMATHI-78" x="3129" y="0"></use> +</g> +</svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikimedia/upload/0af6604c22ec15242e23e6db31a9ccf1 b/url/cache/bh/https/org/wikimedia/upload/0af6604c22ec15242e23e6db31a9ccf1 Binary files differnew file mode 100644 index 0000000..462fdf7 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/0af6604c22ec15242e23e6db31a9ccf1 diff --git a/url/cache/bh/https/org/wikimedia/upload/12307c312796ad8cebd66f7123b54532 b/url/cache/bh/https/org/wikimedia/upload/12307c312796ad8cebd66f7123b54532 Binary files differnew file mode 100644 index 0000000..1a5578c --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/12307c312796ad8cebd66f7123b54532 diff --git a/url/cache/bh/https/org/wikimedia/upload/12e07657cec46b9f5a851bdf63d3b743 b/url/cache/bh/https/org/wikimedia/upload/12e07657cec46b9f5a851bdf63d3b743 Binary files differnew file mode 100644 index 0000000..17e5d68 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/12e07657cec46b9f5a851bdf63d3b743 diff --git a/url/cache/bh/https/org/wikimedia/upload/1d0d21f367df5a550b460752b00fca38 b/url/cache/bh/https/org/wikimedia/upload/1d0d21f367df5a550b460752b00fca38 Binary files differnew file mode 100644 index 0000000..a720800 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/1d0d21f367df5a550b460752b00fca38 diff --git a/url/cache/bh/https/org/wikimedia/upload/2019716ae1909d747bd1637d059ef0df b/url/cache/bh/https/org/wikimedia/upload/2019716ae1909d747bd1637d059ef0df Binary files differnew file mode 100644 index 0000000..7a2d149 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/2019716ae1909d747bd1637d059ef0df diff --git a/url/cache/bh/https/org/wikimedia/upload/35ccf2a7c987c987fef0e7a0d5fe3df5 b/url/cache/bh/https/org/wikimedia/upload/35ccf2a7c987c987fef0e7a0d5fe3df5 Binary files differnew file mode 100644 index 0000000..5a87c60 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/35ccf2a7c987c987fef0e7a0d5fe3df5 diff --git a/url/cache/bh/https/org/wikimedia/upload/41f7e2e30fb62dab3465ccb7097e6c63 b/url/cache/bh/https/org/wikimedia/upload/41f7e2e30fb62dab3465ccb7097e6c63 Binary files differnew file mode 100644 index 0000000..5c9ac5c --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/41f7e2e30fb62dab3465ccb7097e6c63 diff --git a/url/cache/bh/https/org/wikimedia/upload/497fc18c52632ec73e22ce72b15b4543 b/url/cache/bh/https/org/wikimedia/upload/497fc18c52632ec73e22ce72b15b4543 Binary files differnew file mode 100644 index 0000000..b22f62f --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/497fc18c52632ec73e22ce72b15b4543 diff --git a/url/cache/bh/https/org/wikimedia/upload/4cf9d4a6f1728115f78b3b91f4c63473 b/url/cache/bh/https/org/wikimedia/upload/4cf9d4a6f1728115f78b3b91f4c63473 Binary files differnew file mode 100644 index 0000000..874b7fc --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/4cf9d4a6f1728115f78b3b91f4c63473 diff --git a/url/cache/bh/https/org/wikimedia/upload/4ecbbea0ab3cc4bb572d3ed3b12b8c4d b/url/cache/bh/https/org/wikimedia/upload/4ecbbea0ab3cc4bb572d3ed3b12b8c4d Binary files differnew file mode 100644 index 0000000..8065def --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/4ecbbea0ab3cc4bb572d3ed3b12b8c4d diff --git a/url/cache/bh/https/org/wikimedia/upload/512d1d40e2f86861e9e134cccf2198fd b/url/cache/bh/https/org/wikimedia/upload/512d1d40e2f86861e9e134cccf2198fd Binary files differnew file mode 100644 index 0000000..63180ac --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/512d1d40e2f86861e9e134cccf2198fd diff --git a/url/cache/bh/https/org/wikimedia/upload/5718cf11a520d9c91e06480de2ac4eee b/url/cache/bh/https/org/wikimedia/upload/5718cf11a520d9c91e06480de2ac4eee Binary files differnew file mode 100644 index 0000000..a1e8586 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/5718cf11a520d9c91e06480de2ac4eee diff --git a/url/cache/bh/https/org/wikimedia/upload/693718725c70b1c7bb6569f3f8ac015e b/url/cache/bh/https/org/wikimedia/upload/693718725c70b1c7bb6569f3f8ac015e Binary files differnew file mode 100644 index 0000000..0f140c5 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/693718725c70b1c7bb6569f3f8ac015e diff --git a/url/cache/bh/https/org/wikimedia/upload/73568cd359daf10346d6d1938a0c3770 b/url/cache/bh/https/org/wikimedia/upload/73568cd359daf10346d6d1938a0c3770 Binary files differnew file mode 100644 index 0000000..3b58df1 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/73568cd359daf10346d6d1938a0c3770 diff --git a/url/cache/bh/https/org/wikimedia/upload/7d96f790e9d964d7f6a52a6940b4c08d b/url/cache/bh/https/org/wikimedia/upload/7d96f790e9d964d7f6a52a6940b4c08d Binary files differnew file mode 100644 index 0000000..a65dc4e --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/7d96f790e9d964d7f6a52a6940b4c08d diff --git a/url/cache/bh/https/org/wikimedia/upload/8ce7624e0e6da4bc4087f3dc0513df03 b/url/cache/bh/https/org/wikimedia/upload/8ce7624e0e6da4bc4087f3dc0513df03 Binary files differnew file mode 100644 index 0000000..ee3f8d3 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/8ce7624e0e6da4bc4087f3dc0513df03 diff --git a/url/cache/bh/https/org/wikimedia/upload/8d7176c47e68b90438a2a84065505912 b/url/cache/bh/https/org/wikimedia/upload/8d7176c47e68b90438a2a84065505912 Binary files differnew file mode 100644 index 0000000..70f1a82 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/8d7176c47e68b90438a2a84065505912 diff --git a/url/cache/bh/https/org/wikimedia/upload/91291313c6971eeab609663a78114468 b/url/cache/bh/https/org/wikimedia/upload/91291313c6971eeab609663a78114468 Binary files differnew file mode 100644 index 0000000..b61d35a --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/91291313c6971eeab609663a78114468 diff --git a/url/cache/bh/https/org/wikimedia/upload/992b0ddd934354603056660ac75b313b b/url/cache/bh/https/org/wikimedia/upload/992b0ddd934354603056660ac75b313b Binary files differnew file mode 100644 index 0000000..a659e3f --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/992b0ddd934354603056660ac75b313b diff --git a/url/cache/bh/https/org/wikimedia/upload/a96c6b0c91f9099124c00eed3afc094f b/url/cache/bh/https/org/wikimedia/upload/a96c6b0c91f9099124c00eed3afc094f Binary files differnew file mode 100644 index 0000000..9e643a0 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/a96c6b0c91f9099124c00eed3afc094f diff --git a/url/cache/bh/https/org/wikimedia/upload/b393eddb20d3354d42697e81ffca7d4e b/url/cache/bh/https/org/wikimedia/upload/b393eddb20d3354d42697e81ffca7d4e Binary files differnew file mode 100644 index 0000000..fc13d4a --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/b393eddb20d3354d42697e81ffca7d4e diff --git a/url/cache/bh/https/org/wikimedia/upload/b774d4f0a2b6f748ab917df8a542ac76 b/url/cache/bh/https/org/wikimedia/upload/b774d4f0a2b6f748ab917df8a542ac76 Binary files differnew file mode 100644 index 0000000..086b914 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/b774d4f0a2b6f748ab917df8a542ac76 diff --git a/url/cache/bh/https/org/wikimedia/upload/c011dfdb90238059c1c8be69ed9f3cdf b/url/cache/bh/https/org/wikimedia/upload/c011dfdb90238059c1c8be69ed9f3cdf Binary files differnew file mode 100644 index 0000000..123fc3d --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/c011dfdb90238059c1c8be69ed9f3cdf diff --git a/url/cache/bh/https/org/wikimedia/upload/c11aa00064a7d5daea62fb19fc185e73 b/url/cache/bh/https/org/wikimedia/upload/c11aa00064a7d5daea62fb19fc185e73 Binary files differnew file mode 100644 index 0000000..b8277d2 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/c11aa00064a7d5daea62fb19fc185e73 diff --git a/url/cache/bh/https/org/wikimedia/upload/c7c5d4455499c03ba4b3a7fb6da3df04 b/url/cache/bh/https/org/wikimedia/upload/c7c5d4455499c03ba4b3a7fb6da3df04 Binary files differnew file mode 100644 index 0000000..525792b --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/c7c5d4455499c03ba4b3a7fb6da3df04 diff --git a/url/cache/bh/https/org/wikimedia/upload/cc64a8c71d805038711dec723ca1f692 b/url/cache/bh/https/org/wikimedia/upload/cc64a8c71d805038711dec723ca1f692 Binary files differnew file mode 100644 index 0000000..cbaf676 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/cc64a8c71d805038711dec723ca1f692 diff --git a/url/cache/bh/https/org/wikimedia/upload/d32f141a9562f352d41424306ddeeb1b b/url/cache/bh/https/org/wikimedia/upload/d32f141a9562f352d41424306ddeeb1b Binary files differnew file mode 100644 index 0000000..ce357dc --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/d32f141a9562f352d41424306ddeeb1b diff --git a/url/cache/bh/https/org/wikimedia/upload/d64d07461bf88548a35bd17356b6daa0 b/url/cache/bh/https/org/wikimedia/upload/d64d07461bf88548a35bd17356b6daa0 Binary files differnew file mode 100644 index 0000000..c4b62bf --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/d64d07461bf88548a35bd17356b6daa0 diff --git a/url/cache/bh/https/org/wikimedia/upload/d931df139b0624a769ec925d41d48a03 b/url/cache/bh/https/org/wikimedia/upload/d931df139b0624a769ec925d41d48a03 Binary files differnew file mode 100644 index 0000000..3989810 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/d931df139b0624a769ec925d41d48a03 diff --git a/url/cache/bh/https/org/wikimedia/upload/e2f47d0dfc4fd6e2fd83f050e9776a4d b/url/cache/bh/https/org/wikimedia/upload/e2f47d0dfc4fd6e2fd83f050e9776a4d Binary files differnew file mode 100644 index 0000000..9b82cfa --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/e2f47d0dfc4fd6e2fd83f050e9776a4d diff --git a/url/cache/bh/https/org/wikimedia/upload/ed8ac2fdbb5bb2ee0b4dac94df61c1d4 b/url/cache/bh/https/org/wikimedia/upload/ed8ac2fdbb5bb2ee0b4dac94df61c1d4 Binary files differnew file mode 100644 index 0000000..dd0a228 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/ed8ac2fdbb5bb2ee0b4dac94df61c1d4 diff --git a/url/cache/bh/https/org/wikimedia/upload/f8741a86aa7cd14e370641540e7764da b/url/cache/bh/https/org/wikimedia/upload/f8741a86aa7cd14e370641540e7764da Binary files differnew file mode 100644 index 0000000..da500c7 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/f8741a86aa7cd14e370641540e7764da diff --git a/url/cache/bh/https/org/wikimedia/upload/fe4f91ec78f02bab767bf58f69a8e721 b/url/cache/bh/https/org/wikimedia/upload/fe4f91ec78f02bab767bf58f69a8e721 Binary files differnew file mode 100644 index 0000000..376a5f9 --- /dev/null +++ b/url/cache/bh/https/org/wikimedia/upload/fe4f91ec78f02bab767bf58f69a8e721 diff --git a/url/cache/bh/https/org/wikipedia/en/5bcd31b6373c6f7bb55a540b01508c88 b/url/cache/bh/https/org/wikipedia/en/5bcd31b6373c6f7bb55a540b01508c88 new file mode 100644 index 0000000..59186d4 --- /dev/null +++ b/url/cache/bh/https/org/wikipedia/en/5bcd31b6373c6f7bb55a540b01508c88 @@ -0,0 +1,23 @@ +HTTP/1.1 200 OK +date: Wed, 10 Dec 2025 13:47:11 GMT +expires: Wed, 09 Dec 2026 14:32:14 GMT +cache-control: max-age=31536000 +server: ATS/9.2.11 +etag: W/"24e4-6426794eeb300" +last-modified: Thu, 30 Oct 2025 22:15:08 GMT +access-control-allow-origin: * +content-type: image/svg+xml +age: 9782 +accept-ranges: bytes +x-cache: cp5017 hit, cp5017 hit/37951 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +x-client-ip: 180.190.38.11 +content-length: 3264 +x-request-id: 0a891df3-e432-4a16-8909-f2a8478b1c16 +x-analytics: + +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 117 13"><path d="M89.777 3.326c.104 0 .17.039.17.092 0 0-.055.363-.055.832 0 .093.076.081.117.039.584-.594 1.3-.921 1.781-.921 1.33 0 2.3 1.27 2.301 2.651 0 1.05-.352 1.86-.963 2.457-.533.509-1.18.729-1.91.729-.41 0-.812-.072-1.131-.201-.133-.055-.182-.071-.182.098v1.403c0 1.08.143 1.13 1.064 1.185.078.077.078.352 0 .428-.558-.011-.96-.025-1.572-.025-.572 0-.91.014-1.455.025-.078-.078-.078-.353 0-.431.793-.038.936-.104.936-1.184V4.951c0-.74-.143-.818-.846-.885-.025-.078-.053-.285-.025-.363.896-.116 1.4-.233 1.77-.377zm-17.266.144c.078.078.078.353 0 .431-.479.039-.869.455-1.053.832-.688 1.46-1.26 2.8-2.301 5.305-.16.385-.33.757-.533 1.117-.467.834-.989.938-1.26.938-.352 0-.611-.209-.611-.48 0-.17.195-.561.572-.561.143 0 .193.039.377.039.324 0 .506-.116.648-.377.195-.402.354-.762.508-1.195.131-.363-.068-.961-.182-1.223l-1.473-3.419c-.354-.828-.459-.923-1.023-.976-.078-.078-.078-.353 0-.431.26.015.609.024 1.053.024.469 0 .988-.012 1.469-.024.078.078.078.353 0 .431-.797.062-.66.297-.426.846l1.152 2.703c.109.259.221.224.311.014l1.291-2.977c.203-.473-.215-.547-.625-.586-.078-.078-.078-.353 0-.431.48.015.729.024 1.184.024.363 0 .6-.012.922-.024zM105.829.002c.117 0 .17.039.17.13 0 0-.046.448-.052 1.189l-.001 6.065c0 .639.117.885.949.949.078.078.078.273 0 .352-.793.092-1.38.285-1.664.521a.492.492 0 0 1-.299 0s.014-.639.014-.768c0-.092-.094-.067-.156-.019-.637.526-1.12.785-1.625.785-1.4 0-2.21-1.17-2.211-2.771 0-.963.338-1.73.898-2.286.52-.494 1.09-.781 1.949-.781.43 0 .963.222 1.014.222.092 0 .117-.026.117-.117V1.809c0-1.09-.156-1.03-.832-1.065-.078-.076-.104-.284-.078-.391.52-.039 1.48-.221 1.807-.351zm7.457 3.372c.949 0 1.96.352 1.965 2.197v1.938c0 .6.014 1.1.52 1.105.273 0 .328-.209.404-.209.051 0 .168.131.168.222 0 .063-.467.585-1.104.585-.694 0-.924-.48-1.002-.754h-.024l-.001-.005-.258.206c-.572.441-.82.547-1.418.547-.91 0-1.64-.377-1.639-1.404 0-.884.898-1.57 2.146-1.885l1.115-.273c.039-.013.078-.064.078-.154 0-1.47-.609-1.69-1.055-1.689-.492 0-1.08.145-1.078.546 0 .146.014.224.025.263a.593.593 0 0 1 .039.231c0 .169-.195.429-.572.429-.299 0-.455-.143-.455-.455 0-.699 1.08-1.44 2.146-1.441zm-15.579.018c1.81 0 2.2 1.17 2.197 2.265 0 .143-.09.221-.246.221l-3.459-.025c0 .754.154 1.35.416 1.78.402.663.949.937 1.418.937.754 0 1.13-.207 1.609-.701.156.011.234.078.273.206-.52.676-1.22 1.13-2.211 1.131-.936 0-1.55-.312-1.988-.832-.43-.494-.609-1.2-.609-1.924 0-1.98 1.47-3.06 2.6-3.058zm-13.081-.024c2.02 0 2.73 1.57 2.73 2.926 0 1.3-.818 2.91-2.756 2.912-1.83 0-2.73-1.47-2.73-2.795 0-1.65 1-3.04 2.756-3.043zm-49.254.024c1.81 0 2.2 1.17 2.197 2.265 0 .143-.091.221-.247.221l-3.458-.025c0 .754.156 1.35.416 1.78.403.663.949.937 1.417.937.754 0 1.13-.207 1.612-.701.156.011.234.078.273.206-.52.676-1.22 1.13-2.21 1.131-.936 0-1.55-.312-1.989-.832-.429-.494-.611-1.2-.611-1.924 0-1.98 1.47-3.06 2.6-3.058zm5.85 0c1.81 0 2.2 1.17 2.197 2.265 0 .143-.091.221-.247.221l-3.458-.025c0 .754.156 1.35.416 1.78.403.663.949.937 1.417.937.754 0 1.13-.207 1.612-.701.156.011.234.078.273.206-.52.676-1.22 1.13-2.21 1.131-.936 0-1.55-.312-1.989-.832-.429-.494-.611-1.2-.611-1.924 0-1.98 1.47-3.06 2.6-3.058zm-25.009 0c1.81 0 2.2 1.17 2.197 2.265 0 .143-.091.221-.247.221l-3.458-.025c0 .754.156 1.35.416 1.78.403.663.949.937 1.417.937.754 0 1.13-.207 1.612-.701.156.011.234.078.273.206-.52.676-1.22 1.13-2.21 1.131-.936 0-1.55-.312-1.989-.832-.429-.494-.611-1.2-.611-1.924 0-1.98 1.47-3.06 2.6-3.058zm47.407-.024c1.25 0 1.99.521 1.988 1.234 0 .402-.363.571-.637.571s-.453-.117-.494-.468c-.053-.455-.156-.91-.924-.91-.857 0-1.48.857-1.482 2.288 0 1.52.795 2.48 1.742 2.481.561 0 1.12-.285 1.561-.856.117.013.221.063.273.183-.65 1.07-1.34 1.32-2.119 1.315-1.64 0-2.57-1.16-2.574-2.834 0-1.85 1.38-3 2.666-3.004zm12.037 0c1.25 0 1.99.521 1.988 1.234 0 .402-.363.571-.637.571-.271 0-.453-.117-.494-.468-.051-.455-.154-.91-.922-.91-.859 0-1.48.857-1.482 2.288 0 1.52.793 2.48 1.742 2.481.559 0 1.12-.285 1.561-.856.117.013.221.063.271.183-.648 1.07-1.34 1.32-2.119 1.315-1.64 0-2.57-1.16-2.572-2.834 0-1.85 1.38-3 2.664-3.004zm-45.836-.035c.104 0 .169.038.169.091 0 0-.065.624-.065 1.04 0 .063.039.13.117-.015.299-.506.832-1.08 1.443-1.078.546 0 .78.375.78.623 0 .326-.299.649-.611.649-.273 0-.403-.247-.533-.377-.078-.077-.182-.091-.273-.091-.156 0-.455.43-.598.637-.156.234-.312.533-.312.871v1.809c0 1.08.156 1.12 1.066 1.184.078.078.078.354 0 .43a60.72 60.72 0 0 0-1.573-.025c-.52 0-.936.014-1.482.025-.078-.076-.078-.352 0-.43.806-.053.962-.104.962-1.184V4.958c0-.719-.143-.822-.845-.886-.052-.078-.052-.285-.026-.362.897-.117 1.42-.234 1.781-.377zM80.104.002c.115 0 .168.039.168.13 0 0-.046.448-.052 1.189l-.001 6.168c0 1.08.145 1.14.938 1.184.078.078.078.352 0 .43-.561-.014-.885-.025-1.443-.025-.572 0-.91.014-1.457.025-.078-.078-.078-.352 0-.43.793-.039.938-.104.938-1.184l-.001-5.68c0-1.09-.156-1.03-.832-1.065-.078-.076-.105-.284-.078-.391.52-.039 1.49-.221 1.82-.351zM52.231.633c.039 0 .052.013.052.039.026.104.221 1.35.286 1.885a.712.712 0 0 1-.429.065c-.286-.897-.494-1.42-1.469-1.417h-1.365c-.312 0-.468.26-.468.571v2.601h1.183c1.1.006 1.14-.163 1.183-.878.078-.078.351-.078.429 0-.013.39-.026.676-.026 1.117 0 .44.013.688.026 1.145-.078.078-.351.078-.429 0-.039-.585-.078-.884-1.183-.884h-1.183V8.01c0 .353.182.56.468.56h1.768c.988 0 1.44-.768 1.703-1.703a.605.605 0 0 1 .455.064 21.02 21.02 0 0 1-.481 2.172s-.914-.022-1.543-.025h-2.963c-.21.003-1.09.015-1.643.025-.078-.078-.078-.352 0-.43.91-.039 1.13-.104 1.131-1.184V2.276c0-1.08-.221-1.15-1.131-1.185-.078-.078-.078-.353 0-.431.65.015 1.68.025 1.677.025h3.315c.312 0 .416-.013.637-.052zm56.966 2.696c.104 0 .168.039.168.092 0 0-.051.832-.051 1.479v2.592c-.001 1.08.142 1.13.935 1.181.078.078.078.352 0 .43-.559-.014-.885-.025-1.443-.025-.57 0-.908.014-1.457.025-.074-.078-.074-.352 0-.43.793-.064.938-.104.938-1.184V4.954c0-.74-.137-.816-.846-.883-.025-.078-.054-.287-.025-.364.896-.117 1.41-.234 1.781-.378zM27.199.633c.031 0 .046.009.052.039.018.099.214 1.35.282 1.885l-.403.065c-.286-.897-.494-1.42-1.469-1.417h-1.365c-.312 0-.468.13-.468.442v2.729h1.209c1.1 0 1.14-.169 1.183-.885.078-.077.351-.077.429 0-.013.391-.026.677-.026 1.119 0 .439.013.688.026 1.144-.078.078-.351.078-.429 0-.039-.585-.078-.884-1.183-.884h-1.209v2.619c0 1.08.221 1.14 1.131 1.184.078.078.078.352 0 .43-.65-.014-1.03-.025-1.677-.025-.663 0-1.05.014-1.69.025-.078-.078-.078-.352 0-.43.91-.039 1.13-.104 1.131-1.184V2.276c0-1.08-.221-1.15-1.131-1.185-.078-.078-.078-.353 0-.431.65.015 1.68.025 1.677.025h3.319c.308 0 .384-.008.611-.052zM8.398 0c.104 0 .156.039.156.13 0 0-.037.455-.039 1.3l-.009 2.992c0 .183.083.048.127 0 .793-.884 1.42-1.05 2.054-1.054.455 0 .861.156 1.079.44.303.396.351 1.03.351 1.742v1.938c0 1.06.143 1.12.871 1.184.065.078.065.352 0 .43-.559-.014-.845-.025-1.378-.025-.52 0-.78.014-1.326.025-.065-.078-.065-.352 0-.43.676-.064.806-.117.806-1.184V5.51c0-.39-.026-.743-.156-1.001-.151-.298-.424-.468-.689-.468-.512 0-1.01.28-1.508.767a.758.758 0 0 0-.221.549v2.131c0 1.08.117 1.13.777 1.184.078.078.078.352 0 .43-.547-.014-.777-.025-1.285-.025-.559 0-.892.014-1.427.025-.078-.078-.078-.352 0-.43.754-.053.907-.104.907-1.184V1.805c0-.299 0-.598-.91-.598H4.927c-.468 0-.598.233-.598.676v5.604c0 1.08.221 1.14 1.261 1.184.078.078.078.352 0 .43-.65-.014-1.1-.025-1.807-.025-.715 0-1.18.014-1.82.025-.078-.078-.078-.352 0-.43 1.04-.039 1.26-.104 1.261-1.184V1.843c0-.401-.13-.637-.598-.637H1.534C.819 1.206.65 1.361.39 2.4L0 2.337C.156 1.649.234.977.286.335l.351.052c0 .078 0 .301.273.301h5.174c1.1 0 1.26-.099 2.314-.688zm47.33 3.328c.104 0 .156.039.156.104 0 0-.065.6-.065.988 0 .183.091.052.13 0 .792-.882 1.42-1.05 2.054-1.052.455 0 .857.156 1.078.44.301.403.352 1.03.352 1.742v1.938c0 1.06.145 1.12.871 1.184.064.078.064.352 0 .43-.559-.014-.846-.025-1.377-.025-.521 0-.779.014-1.327.025-.065-.078-.065-.352 0-.43.676-.064.806-.117.806-1.184V5.51c0-.39-.026-.74-.156-1.001-.156-.299-.429-.468-.689-.468-.507 0-1.01.284-1.508.767a.765.765 0 0 0-.221.549v2.131c0 1.06.117 1.12.78 1.184.078.078.078.352 0 .43-.546-.014-.78-.025-1.287-.025-.559 0-.897.014-1.43.025-.078-.078-.078-.352 0-.43.78-.064.91-.117.91-1.184V4.953c0-.754-.143-.818-.845-.883-.026-.078-.052-.287-.026-.364.897-.117 1.43-.234 1.794-.378zm28.755.473c-1.09-.003-1.49 1.18-1.494 2.312 0 1 .494 2.67 1.846 2.666.611 0 1.4-.353 1.404-2.066 0-1.91-.637-2.91-1.756-2.912zm6.942.163c-.379 0-.91.338-1.312.754-.167.175-.208.303-.208.575v2.418c0 .47.051.545.311.778.234.209.689.273.924.273 1.46 0 1.83-1.33 1.832-2.395 0-1.47-.715-2.4-1.547-2.403zm22.819 2.084-1.032.274c-.959.254-1.23.846-1.234 1.431 0 .401.285.923.938.923.363 0 .809-.286 1.146-.561.104-.078.182-.168.182-.338V6.048zm-10.588-2.225c-.26 0-.809.039-1.209.648-.193.271-.377.793-.377 1.729 0 1.62.729 2.39 1.432 2.393.322 0 .738-.208 1.223-.624.184-.158.207-.26.207-.507V4.993c0-.402-.039-.493-.221-.701-.262-.299-.586-.469-1.055-.469zm-68.284 0c-.312 0-1.22.117-1.469 1.586l2.353-.039c.143-.002.195-.064.195-.183 0-1.09-.585-1.36-1.079-1.364zm-19.159 0c-.312 0-1.22.117-1.469 1.586l2.353-.039c.143-.002.195-.064.195-.183 0-1.09-.585-1.36-1.079-1.364zm25.009 0c-.312 0-1.22.117-1.469 1.586l2.353-.039c.143-.002.195-.064.195-.183 0-1.09-.585-1.36-1.079-1.364zm56.482 0c-.311 0-1.22.117-1.469 1.586l2.354-.039c.145-.002.195-.064.195-.183 0-1.09-.586-1.36-1.08-1.364zM108.805.665c.352 0 .623.363.623.676 0 .273-.312.624-.676.624-.312 0-.623-.338-.623-.677.001-.311.364-.623.676-.623z"/></svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikipedia/en/5decfc8341e929f27904c6546f8e3166 b/url/cache/bh/https/org/wikipedia/en/5decfc8341e929f27904c6546f8e3166 new file mode 100644 index 0000000..4970f20 --- /dev/null +++ b/url/cache/bh/https/org/wikipedia/en/5decfc8341e929f27904c6546f8e3166 @@ -0,0 +1,23 @@ +HTTP/1.1 200 OK +date: Wed, 10 Dec 2025 08:45:03 GMT +expires: Thu, 10 Dec 2026 08:45:03 GMT +cache-control: max-age=31536000 +server: ATS/9.2.11 +etag: W/"2e6-6426794eeb300" +last-modified: Thu, 30 Oct 2025 22:15:08 GMT +access-control-allow-origin: * +content-type: image/svg+xml +age: 27910 +accept-ranges: bytes +x-cache: cp5017 miss, cp5017 hit/581309 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +x-client-ip: 180.190.38.11 +content-length: 397 +x-request-id: 7ba34daf-8546-40ff-a82e-2659bdf9bd78 +x-analytics: + +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#900" d="M16.735 8.292C16.735 3.712 20.435 0 25 0s8.264 3.712 8.264 8.292-3.7 8.291-8.264 8.291c-4.564 0-8.264-3.712-8.264-8.291z"/><path fill="#396" d="M35.001 13.284a15.069 15.069 0 0 1 5.034 11.263c0 7.73-5.795 14.102-13.264 14.981V21.542l8.23-8.258zM9.965 24.547c0-4.478 1.945-8.5 5.034-11.263l8.23 8.257v17.987c-7.469-.88-13.264-7.25-13.264-14.98z"/><path fill="#069" d="M0 24.917A25.056 25.056 0 0 1 8.137 6.399l4.568 4.583A18.383 18.383 0 0 0 6.658 24.64c0 10.163 8.212 18.403 18.342 18.403 10.13 0 18.342-8.24 18.342-18.403a18.383 18.383 0 0 0-6.047-13.657L41.864 6.4A25.054 25.054 0 0 1 50 24.917C50 38.77 38.808 50 25 50 11.193 50 0 38.77 0 24.917z"/></svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikipedia/en/8a2b68c6adbd0bb780d304e5f5437852 b/url/cache/bh/https/org/wikipedia/en/8a2b68c6adbd0bb780d304e5f5437852 Binary files differnew file mode 100644 index 0000000..e270c21 --- /dev/null +++ b/url/cache/bh/https/org/wikipedia/en/8a2b68c6adbd0bb780d304e5f5437852 diff --git a/url/cache/bh/https/org/wikipedia/en/98c84b8893ff7c552eb7648e23bb7a51 b/url/cache/bh/https/org/wikipedia/en/98c84b8893ff7c552eb7648e23bb7a51 new file mode 100644 index 0000000..6f9c922 --- /dev/null +++ b/url/cache/bh/https/org/wikipedia/en/98c84b8893ff7c552eb7648e23bb7a51 @@ -0,0 +1,23 @@ +HTTP/1.1 200 OK +date: Wed, 10 Dec 2025 13:16:29 GMT +expires: Thu, 10 Dec 2026 13:16:29 GMT +cache-control: max-age=31536000 +server: ATS/9.2.11 +etag: W/"181a-6426794eeb300" +last-modified: Thu, 30 Oct 2025 22:15:08 GMT +access-control-allow-origin: * +content-type: image/svg+xml +age: 11624 +accept-ranges: bytes +x-cache: cp5017 miss, cp5017 hit/212250 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +x-client-ip: 180.190.38.11 +content-length: 2604 +x-request-id: 62e4d913-f626-4459-a614-2871b4a43b53 +x-analytics: + +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 18"><path fill="#000" fill-rule="nonzero" d="m18.339 0 .199.001h.375l.174.001h.315l.138.001.323.001H20.034l.058.053v.5c0 .139-.078.208-.231.208-.753.035-.908.11-1.184.507-.15.216-.447.68-.755 1.204L15.28 7.419l-.074.154 3.23 6.611.196.054 5.088-12.076c.177-.487.15-.832-.078-1.035-.228-.197-.389-.315-.978-.34l-.477-.023a.275.275 0 0 1-.168-.061.174.174 0 0 1-.08-.147V.054l.073-.052h5.749l.058.052v.502c0 .136-.078.205-.231.205-.753.034-1.31.197-1.673.489-.362.294-.645.698-.848 1.225 0 0-1.53 3.5-3.137 7.159l-.268.61c-1.12 2.55-2.24 5.09-2.876 6.501-.613 1.17-1.22 1.06-1.745-.033-.411-.847-1.1-2.33-1.8-3.86l-.469-1.024c-.273-.6-.54-1.19-.786-1.727-1.08 2.23-2.56 5.26-3.3 6.624-.715 1.24-1.3 1.08-1.771.032-1.63-3.84-4.97-10.6-6.539-14.35-.29-.697-.51-1.14-.716-1.32C1.45.914 1.019.808.36.774.121.747.001.688 0 .593V.067L.058.016.592.014H1.6l.969-.001h.253l1.734.001h.225l.95.001h.577l.058.052v.5c0 .139-.087.206-.26.206L5.454.8c-.56.023-.84.191-.84.5 0 .145.06.38.19.696 1.25 3.05 5.58 12.2 5.576 12.169l.158.04 2.787-5.56c-.34-.751-.558-1.23-.558-1.234l-1.916-3.765s-.37-.753-.497-1.004C9.512.972 9.53.882 8.68.772c-.238-.031-.361-.061-.362-.18V.065L8.39.013h.702L10.58.01h2.77l.131.043V.58c0 .12-.086.182-.26.182l-.36.052c-.909.07-.76.442-.156 1.644l1.838 3.76 2.034-4.055c.318-.693.278-.9.157-1.064l-.027-.035c-.081-.096-.351-.251-.94-.275l-.231-.025a.276.276 0 0 1-.167-.06.172.172 0 0 1-.079-.147v-.5l.072-.052L16.24 0zm10.464 5.318h.118c.71 0 2.73-.053 2.73-.053l.027.053v.577c0 .08-.053.131-.158.132l-.551.053c-.814.078-1.1.29-1.103.815v8.74c0 .578.262.92 1.103.998l.551.054c.079 0 .157.051.158.156v.552l-.027.053s-1.99-.053-2.808-.053c-.735 0-2.78.053-2.783.053l-.052-.053v-.552c0-.105.078-.156.184-.156l.525-.054c.866-.078 1.13-.499 1.128-.997V6.895c0-.575-.316-.736-1.128-.813l-.525-.054c-.105 0-.184-.024-.184-.105v-.605l.026-.053s1.89.048 2.769.053zm8.81 10.318c0 .577.341.866 1.103.997l.288.054c.079.025.157.051.158.156v.551l-.027.054s-1.65-.054-2.44-.054c-.736 0-2.89.054-2.888.054l-.053-.054v-.55c0-.106.08-.157.184-.157l.525-.054c.787-.079 1.13-.499 1.129-.997V6.895c0-.575-.29-.736-1.129-.813l-.525-.055c-.105 0-.184-.024-.184-.105v-.604l.027-.053s2.15.053 2.966.053c.736 0 2.39-.053 2.389-.053l.026.053v.577c0 .079-.053.105-.158.131l-.288.054c-.814.156-1.1.289-1.103.815v3.964c.866 0 1.36-.444 2.52-1.68 1.05-1.16 1.86-2.12 1.864-2.626 0-.21-.236-.445-.762-.526-.105-.024-.157-.052-.157-.13V5.29l.026-.024s2.13.053 2.888.053c.682 0 1.84-.053 1.837-.053l.079.024v.606c0 .079-.079.131-.21.131-1.02.08-1.73.131-2.678 1.208l-2.257 2.597c-.446.475-.604.76-.604.972 0 .157.105.288.237.445l3.963 4.778c.315.366.945.525 1.47.628l.131.026c.08.025.184.077.184.156v.551l-.079.027s-1.39-.026-2.126-.027c-.656 0-1.6.027-1.6.027l-.027-.027v-.315c0-.342-.026-.629-.394-1.049l-2.914-3.623c-.394-.526-.814-.655-1.39-.655v3.89zm14.151 0c0 .577.262.919 1.102.997l.552.054c.078 0 .157.051.157.156v.551l-.026.054s-1.99-.054-2.809-.054c-.735 0-2.78.054-2.782.054l-.053-.054v-.55c0-.106.08-.157.184-.157l.525-.054c.866-.079 1.13-.499 1.129-.997V6.895c0-.575-.315-.736-1.129-.813l-.525-.055c-.105 0-.184-.024-.184-.105v-.604l.027-.053s2.07.053 2.887.053c.709 0 2.73-.053 2.73-.053l.026.053v.577c0 .079-.052.131-.157.131l-.552.054c-.814.078-1.1.289-1.102.815v8.74zm5.672-8.69c0-.814-.341-.84-1.575-.919-.157 0-.184-.077-.184-.13v-.605l.053-.026c.394 0 1.94.053 2.703.053.735 0 1.78-.053 2.757-.053 3.73 0 4.41 1.84 4.407 3.203 0 1.58-.76 4.04-4.486 4.043-.656 0-1.18-.054-1.655-.263v3.516c0 .576.315.71 1.156.84l.526.079c.105.025.185.053.185.156v.551l-.024.054s-2.1-.054-2.915-.054c-.735 0-2.7.054-2.704.054l-.026-.054v-.551c0-.105.053-.131.158-.156l.55-.08c.815-.104 1.08-.34 1.077-.84l-.003-8.818zm2.021 4.568c.525.211 1.18.236 1.706.237 1.58 0 2.33-.947 2.335-2.967 0-2.26-1.02-2.76-2.466-2.756-1.26 0-1.58.236-1.576.919l.001 4.567zm10.661 5.88c-.787 0-2.6.054-2.598.054l-.027-.054v-.577c0-.052.027-.13.158-.13l.605-.054c.815-.079 1.05-.604 1.051-1.128V6.843c0-.606-.315-.71-1.05-.761l-.606-.055c-.157-.024-.157-.077-.158-.105v-.604l.027-.053s2.05.053 2.834.053h3.859c.787 0 2.65-.053 2.652-.053l.055.053c.024 1.13.208 2.15.393 3.15l-.654.105c-.288-.972-.786-2.36-2.466-2.362h-2.1c-.5 0-.761.184-.761.63v3.806h1.967c.736 0 .92-.315 1.025-.84l.157-.55c0-.08.053-.133.157-.133h.444c.055 0 .055.027.055.079-.055.576-.157 1.31-.158 1.943 0 .655.105 1.21.158 1.811l-.055.054h-.444c-.13 0-.186-.054-.186-.133l-.13-.576c-.106-.526-.342-.815-1.028-.815h-1.966v4.017c0 .497.286.995.76.996h2.495c1.34 0 2.08-.84 2.388-2.207l.654.079-.526 3.017-.052.053s-1.55-.053-2.336-.053l-4.593.005zm9.872-.707.604-.054c.788-.079 1.05-.315 1.05-1.128V6.843c0-.685-.185-.685-1.05-.761l-.576-.055c-.105 0-.186-.052-.186-.13v-.578l.026-.053s2.31.053 2.784.053c.497 0 2.78-.053 3.465-.053 4.38 0 6.54 2.73 6.537 6.221 0 4.59-3.26 5.96-6.167 5.958-2.1 0-3.02-.054-3.832-.054-.788 0-2.78.054-2.784.054l-.026-.054v-.55a.147.147 0 0 1 .155-.154zm5.855 0c2.89 0 4.52-1.07 4.515-4.752 0-2.73-.605-5.91-5.014-5.908-1.02 0-1.68.157-1.68.816v8.662c0 .733.183 1.18 2.179 1.182zm12.996-1.051c0 .577.262.919 1.102.997l.551.054c.079 0 .157.051.158.156v.551l-.027.054s-1.99-.054-2.807-.054c-.736 0-2.78.054-2.783.054l-.053-.054v-.55c0-.106.079-.157.184-.157l.526-.054c.865-.079 1.13-.499 1.128-.997V6.895c0-.575-.316-.736-1.128-.813l-.526-.055c-.105 0-.184-.024-.184-.105v-.604l.026-.053s2.07.053 2.886.053c.708 0 2.73-.053 2.73-.053l.025.053v.577c0 .079-.055.131-.158.131l-.551.054c-.815.078-1.1.289-1.103.815l.003 8.74zm8.086.997.762.054c.105 0 .21.078.21.209v.498l-.053.054s-2.86-.054-3.491-.054c-.683 0-2.36.054-2.364.054l-.053-.054v-.498c0-.13.079-.21.21-.21 1.16-.078 1.81-.29 2.546-1.97l5.826-13.65c.288-.682.5-.946.895-.946.365 0 .498.264.707.788l5.38 14.227c.37 1.02.895 1.42 1.945 1.523l.288.025c.132 0 .264.078.263.211v.497l-.078.053s-2.02-.053-3.046-.053c-.92 0-3.49.053-3.492.053l-.025-.053v-.497c0-.133.053-.21.187-.21l.735-.054c.996-.078 1.37-.395 1.103-1.128l-1.602-4.438h-5.461c-.63 0-.787.105-.918.444l-1.524 3.807c-.262.66.079 1.24 1.05 1.318zm6.431-6.67-2.546-7.007h-.052l-2.625 6.667c-.105.265.078.341.655.342h4.568v-.001z"/></svg>
\ No newline at end of file diff --git a/url/cache/bh/https/org/wikipedia/en/fbe9ea308d1bf45e5b97be7bdfeeac54 b/url/cache/bh/https/org/wikipedia/en/fbe9ea308d1bf45e5b97be7bdfeeac54 new file mode 100644 index 0000000..9d22177 --- /dev/null +++ b/url/cache/bh/https/org/wikipedia/en/fbe9ea308d1bf45e5b97be7bdfeeac54 @@ -0,0 +1,51 @@ +HTTP/1.1 200 OK +date: Wed, 10 Dec 2025 08:43:12 GMT +cache-control: public, s-maxage=31536000, max-age=31536000, must-revalidate +server: ATS/9.2.11 +x-content-type-options: nosniff +access-control-allow-origin: * +last-modified: Tue, 02 Dec 2025 04:01:02 GMT +content-type: image/svg+xml +age: 28022 +accept-ranges: bytes +x-cache: cp5017 miss, cp5017 hit/583823 +x-cache-status: hit-front +server-timing: cache;desc="hit-front", host;desc="cp5017" +strict-transport-security: max-age=106384710; includeSubDomains; preload +report-to: { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } +nel: { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} +x-client-ip: 180.190.38.11 +content-length: 1320 +x-request-id: 399c7b5c-eca8-41bf-baf5-4cf8cc031905 +x-analytics: + +<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"> + <defs> + <linearGradient id="gradient" x1="0" x2="25" y1="25" y2="0" gradientUnits="userSpaceOnUse"> + <stop offset="0%" stop-color="#0a00b2"/> + <stop offset="50%" stop-color="red"/> + <stop offset="100%" stop-color="#fffc00"/> + </linearGradient> + <style> + .petal{opacity:.65} + </style> + </defs> + <g id="petals" style="fill:url(#gradient)"> + <path d="M7.068 4.359A3.87 3.87 0 0 0 8.2 7.024a3 3 0 0 0 1.973.787.92.92 0 0 0 .628-.281 3 3 0 0 0 .7-2.876C10.97 2.815 9.5 1.8 7.7.915a8 8 0 0 0-.632 3.444" class="petal"/> + <path d="M4.4 7.031a3.85 3.85 0 0 0 2.068 2.025 2.98 2.98 0 0 0 2.122-.031.92.92 0 0 0 .473-.5A3 3 0 0 0 8.617 5.6C7.42 4.1 5.678 3.728 3.676 3.607A8 8 0 0 0 4.4 7.031" class="petal"/> + <path d="M2.959 10.524A3.83 3.83 0 0 0 5.638 11.6a3 3 0 0 0 1.949-.844.93.93 0 0 0 .246-.645A3 3 0 0 0 6.306 7.58c-1.675-.919-3.428-.6-5.324.06a8 8 0 0 0 1.977 2.884" class="petal"/> + <path d="M2.956 14.307a3.82 3.82 0 0 0 2.885-.035 3 3 0 0 0 1.479-1.529.93.93 0 0 0-.02-.691A2.98 2.98 0 0 0 4.926 10.3c-1.9-.2-3.394.766-4.9 2.1a7.95 7.95 0 0 0 2.93 1.907" class="petal"/> + <path d="M4.394 17.8a3.83 3.83 0 0 0 2.653-1.141 3.02 3.02 0 0 0 .784-1.981.93.93 0 0 0-.28-.631 2.97 2.97 0 0 0-2.863-.706c-1.831.54-2.844 2.013-3.722 3.824a7.9 7.9 0 0 0 3.428.635" class="petal"/> + <path d="M7.054 20.479A3.85 3.85 0 0 0 9.07 18.4a3.02 3.02 0 0 0-.031-2.132.92.92 0 0 0-.5-.476 2.97 2.97 0 0 0-2.914.449c-1.486 1.2-1.86 2.953-1.982 4.964a7.9 7.9 0 0 0 3.411-.726" class="petal"/> + <path d="M10.531 21.93a3.87 3.87 0 0 0 1.069-2.692 3.02 3.02 0 0 0-.841-1.958.92.92 0 0 0-.642-.248A2.98 2.98 0 0 0 7.6 18.567c-.914 1.683-.594 3.443.06 5.348a8 8 0 0 0 2.871-1.985" class="petal"/> + <path d="M14.3 21.933a3.87 3.87 0 0 0-.035-2.9 3 3 0 0 0-1.522-1.486.92.92 0 0 0-.687.018 2.99 2.99 0 0 0-1.745 2.387c-.2 1.906.763 3.409 2.093 4.918a8 8 0 0 0 1.896-2.937" class="petal"/> + <path d="M17.776 20.489a3.87 3.87 0 0 0-1.136-2.665 3 3 0 0 0-1.973-.788.92.92 0 0 0-.628.281 3 3 0 0 0-.7 2.876c.538 1.839 2 2.857 3.807 3.739a8 8 0 0 0 .63-3.443" class="petal"/> + <path d="M20.441 17.817a3.85 3.85 0 0 0-2.065-2.025 2.98 2.98 0 0 0-2.122.031.92.92 0 0 0-.473.5 3 3 0 0 0 .447 2.927c1.2 1.493 2.94 1.869 4.942 1.991a8 8 0 0 0-.729-3.424" class="petal"/> + <path d="M21.885 14.324a3.83 3.83 0 0 0-2.679-1.077 3 3 0 0 0-1.949.844.93.93 0 0 0-.246.645 3 3 0 0 0 1.528 2.533c1.675.919 3.428.6 5.324-.06a8 8 0 0 0-1.978-2.885" class="petal"/> + <path d="M21.888 10.541a3.82 3.82 0 0 0-2.888.035 3 3 0 0 0-1.479 1.529.93.93 0 0 0 .018.691 2.98 2.98 0 0 0 2.376 1.753c1.9.2 3.394-.767 4.9-2.1a8 8 0 0 0-2.927-1.908" class="petal"/> + <path d="M20.451 7.046A3.83 3.83 0 0 0 17.8 8.187a3.02 3.02 0 0 0-.784 1.982.93.93 0 0 0 .28.631 2.97 2.97 0 0 0 2.863.706c1.831-.54 2.844-2.013 3.722-3.824a7.9 7.9 0 0 0-3.43-.636" class="petal"/> + <path d="M17.791 4.369a3.85 3.85 0 0 0-2.016 2.074 3.02 3.02 0 0 0 .031 2.132.92.92 0 0 0 .5.476 2.97 2.97 0 0 0 2.912-.451C20.7 7.4 21.079 5.649 21.2 3.638a7.9 7.9 0 0 0-3.409.731" class="petal"/> + <path d="M14.313 2.918a3.87 3.87 0 0 0-1.072 2.692 3.02 3.02 0 0 0 .84 1.958.92.92 0 0 0 .642.248 2.98 2.98 0 0 0 2.522-1.536c.914-1.683.594-3.443-.06-5.348a8 8 0 0 0-2.872 1.986" class="petal"/> + <path d="M10.548 2.915a3.87 3.87 0 0 0 .035 2.9A3 3 0 0 0 12.105 7.3a.92.92 0 0 0 .687-.018 2.99 2.99 0 0 0 1.745-2.387c.2-1.906-.763-3.409-2.093-4.918a8 8 0 0 0-1.896 2.938" class="petal"/> + </g> +</svg> diff --git a/url/cache/bh/https/org/wikipedia/www/2878abcac675284fda7d3c50a265f415 b/url/cache/bh/https/org/wikipedia/www/2878abcac675284fda7d3c50a265f415 Binary files differnew file mode 100644 index 0000000..59e5879 --- /dev/null +++ b/url/cache/bh/https/org/wikipedia/www/2878abcac675284fda7d3c50a265f415 |
