Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Aug 2023 17:57:24 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 26a58599a09a - main - Remove $FreeBSD$: one-line forth tag
Message-ID:  <202308161757.37GHvOUh060141@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=26a58599a09a6181e0f5abe624021865a0c23186

commit 26a58599a09a6181e0f5abe624021865a0c23186
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-08-16 17:55:43 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-08-16 17:55:43 +0000

    Remove $FreeBSD$: one-line forth tag
    
    Remove /^\\[\s*]*\$FreeBSD\$.*$\n/
---
 share/examples/bootforth/boot.4th     | 1 -
 share/examples/bootforth/frames.4th   | 1 -
 share/examples/bootforth/loader.rc    | 1 -
 share/examples/bootforth/menu.4th     | 1 -
 share/examples/bootforth/menuconf.4th | 1 -
 share/examples/bootforth/screen.4th   | 1 -
 stand/ficl/softwords/classes.fr       | 1 -
 stand/ficl/softwords/ficlclass.fr     | 1 -
 stand/ficl/softwords/ficllocal.fr     | 1 -
 stand/ficl/softwords/fileaccess.fr    | 1 -
 stand/ficl/softwords/forml.fr         | 1 -
 stand/ficl/softwords/freebsd.fr       | 1 -
 stand/ficl/softwords/ifbrack.fr       | 1 -
 stand/ficl/softwords/jhlocal.fr       | 1 -
 stand/ficl/softwords/marker.fr        | 1 -
 stand/ficl/softwords/oo.fr            | 1 -
 stand/ficl/softwords/prefix.fr        | 1 -
 stand/ficl/softwords/softcore.fr      | 1 -
 stand/ficl/softwords/string.fr        | 1 -
 stand/forth/beastie.4th               | 1 -
 stand/forth/brand-fbsd.4th            | 1 -
 stand/forth/brand.4th                 | 1 -
 stand/forth/check-password.4th        | 1 -
 stand/forth/color.4th                 | 1 -
 stand/forth/delay.4th                 | 1 -
 stand/forth/efi.4th                   | 1 -
 stand/forth/frames.4th                | 1 -
 stand/forth/loader.4th                | 1 -
 stand/forth/loader.rc                 | 1 -
 stand/forth/logo-beastie.4th          | 1 -
 stand/forth/logo-beastiebw.4th        | 1 -
 stand/forth/logo-fbsdbw.4th           | 1 -
 stand/forth/logo-orb.4th              | 1 -
 stand/forth/logo-orbbw.4th            | 1 -
 stand/forth/menu-commands.4th         | 1 -
 stand/forth/menu.4th                  | 1 -
 stand/forth/menu.rc                   | 1 -
 stand/forth/menusets.4th              | 1 -
 stand/forth/screen.4th                | 1 -
 stand/forth/shortcuts.4th             | 1 -
 stand/forth/support.4th               | 1 -
 stand/forth/version.4th               | 1 -
 stand/i386/loader/loader.rc           | 1 -
 43 files changed, 43 deletions(-)

diff --git a/share/examples/bootforth/boot.4th b/share/examples/bootforth/boot.4th
index 8f26e0d0a38d..3f75424e46c5 100644
--- a/share/examples/bootforth/boot.4th
+++ b/share/examples/bootforth/boot.4th
@@ -1,6 +1,5 @@
 \ Example of the file which is automatically loaded by /boot/loader
 \ on startup.
-\ $FreeBSD$
 
 \ Load the screen manipulation words
 
diff --git a/share/examples/bootforth/frames.4th b/share/examples/bootforth/frames.4th
index 4f1f9b812a03..0adcf9ef648b 100644
--- a/share/examples/bootforth/frames.4th
+++ b/share/examples/bootforth/frames.4th
@@ -1,6 +1,5 @@
 \ Words implementing frame drawing
 \ XXX Filled boxes are left as an exercise for the reader... ;-/
-\ $FreeBSD$
 
 marker task-frames.4th
 
diff --git a/share/examples/bootforth/loader.rc b/share/examples/bootforth/loader.rc
index 617bc3db4104..e8aa549f5905 100644
--- a/share/examples/bootforth/loader.rc
+++ b/share/examples/bootforth/loader.rc
@@ -1,6 +1,5 @@
 \ Example of the file which is automatically loaded by /boot/loader
 \ on startup.
-\ $FreeBSD$
 
 cr .( Loading Forth extensions:)
 
diff --git a/share/examples/bootforth/menu.4th b/share/examples/bootforth/menu.4th
index 5c5c3e98c74e..3462ea9fc5a9 100644
--- a/share/examples/bootforth/menu.4th
+++ b/share/examples/bootforth/menu.4th
@@ -1,7 +1,6 @@
 \ Simple greeting screen, presenting basic options.
 \ XXX This is far too trivial - I don't have time now to think
 \ XXX about something more fancy... :-/
-\ $FreeBSD$
 
 : title
 	f_single
diff --git a/share/examples/bootforth/menuconf.4th b/share/examples/bootforth/menuconf.4th
index a769f77e3543..df53e812aabc 100644
--- a/share/examples/bootforth/menuconf.4th
+++ b/share/examples/bootforth/menuconf.4th
@@ -1,7 +1,6 @@
 \ Simple greeting screen, presenting basic options.
 \ XXX This is far too trivial - I don't have time now to think
 \ XXX about something more fancy... :-/
-\ $FreeBSD$
 
 : title
 	f_single
diff --git a/share/examples/bootforth/screen.4th b/share/examples/bootforth/screen.4th
index 3ea79e453d80..8bd873f48884 100644
--- a/share/examples/bootforth/screen.4th
+++ b/share/examples/bootforth/screen.4th
@@ -1,5 +1,4 @@
 \ Screen manipulation related words.
-\ $FreeBSD$
 
 marker task-screen.4th
 
diff --git a/stand/ficl/softwords/classes.fr b/stand/ficl/softwords/classes.fr
index b56da378e970..72524b0b9fa5 100644
--- a/stand/ficl/softwords/classes.fr
+++ b/stand/ficl/softwords/classes.fr
@@ -4,7 +4,6 @@
 \ john sadler  1 sep 98
 \ Needs oop.fr
 \
-\ $FreeBSD$
 
 also oop definitions
 
diff --git a/stand/ficl/softwords/ficlclass.fr b/stand/ficl/softwords/ficlclass.fr
index 6d75efb0d3c5..471820c1ac8f 100644
--- a/stand/ficl/softwords/ficlclass.fr
+++ b/stand/ficl/softwords/ficlclass.fr
@@ -7,7 +7,6 @@
 \ ** C - W O R D
 \ Models a FICL_WORD
 \
-\ $FreeBSD$
 
 object subclass c-word
     c-word     ref: .link
diff --git a/stand/ficl/softwords/ficllocal.fr b/stand/ficl/softwords/ficllocal.fr
index c916089696c1..86de6f9b6ea5 100644
--- a/stand/ficl/softwords/ficllocal.fr
+++ b/stand/ficl/softwords/ficllocal.fr
@@ -7,7 +7,6 @@
 \ locstate: 0 = looking for -- or }}
 \           1 = found --
 \
-\ $FreeBSD$
 
 hide
 0 constant zero
diff --git a/stand/ficl/softwords/fileaccess.fr b/stand/ficl/softwords/fileaccess.fr
index 7297df681cf3..137058572f47 100644
--- a/stand/ficl/softwords/fileaccess.fr
+++ b/stand/ficl/softwords/fileaccess.fr
@@ -4,7 +4,6 @@
 \ ** submitted by Larry Hastings, larry@hastings.org
 \ **
 \
-\ $FreeBSD$
 
 : r/o 1 ;
 : r/w 3 ; 
diff --git a/stand/ficl/softwords/forml.fr b/stand/ficl/softwords/forml.fr
index 1144ef536792..3e7e56ca2ec1 100644
--- a/stand/ficl/softwords/forml.fr
+++ b/stand/ficl/softwords/forml.fr
@@ -1,7 +1,6 @@
 \ examples from FORML conference paper Nov 98
 \ sadler
 \
-\ $FreeBSD$
 
 .( loading FORML examples ) cr
 object --> sub c-example
diff --git a/stand/ficl/softwords/freebsd.fr b/stand/ficl/softwords/freebsd.fr
index 96205c0808dd..948398b4e462 100644
--- a/stand/ficl/softwords/freebsd.fr
+++ b/stand/ficl/softwords/freebsd.fr
@@ -22,7 +22,6 @@
 \ ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ ** SUCH DAMAGE.
 \ **
-\ ** $FreeBSD$
 
 \ Words for use in scripts:
 \ % ignore errors here
diff --git a/stand/ficl/softwords/ifbrack.fr b/stand/ficl/softwords/ifbrack.fr
index a8c60626c4f8..b29b8fa08433 100644
--- a/stand/ficl/softwords/ifbrack.fr
+++ b/stand/ficl/softwords/ifbrack.fr
@@ -2,7 +2,6 @@
 \ ** ANS conditional compile directives [if] [else] [then]
 \ ** Requires ficl 2.0 or greater...
 \
-\ $FreeBSD$
 
 hide
 
diff --git a/stand/ficl/softwords/jhlocal.fr b/stand/ficl/softwords/jhlocal.fr
index 12ccb9fea753..3cbeb78ff9a1 100644
--- a/stand/ficl/softwords/jhlocal.fr
+++ b/stand/ficl/softwords/jhlocal.fr
@@ -14,7 +14,6 @@
 \
 \ revised 2 June 2000 - { | a -- } now works correctly
 \
-\ $FreeBSD$
 
 hide
 
diff --git a/stand/ficl/softwords/marker.fr b/stand/ficl/softwords/marker.fr
index ee3c9bdf2f64..3b9e86acaaf0 100644
--- a/stand/ficl/softwords/marker.fr
+++ b/stand/ficl/softwords/marker.fr
@@ -3,7 +3,6 @@
 \ John Sadler, 4 Oct 98
 \ Requires ficl 2.02 FORGET-WID !!
 \
-\ $FreeBSD$
 
 : marker   ( "name" -- )
     create  
diff --git a/stand/ficl/softwords/oo.fr b/stand/ficl/softwords/oo.fr
index b1c8e214e5bd..0857cbe4b9fb 100644
--- a/stand/ficl/softwords/oo.fr
+++ b/stand/ficl/softwords/oo.fr
@@ -3,7 +3,6 @@
 \ ** F I C L   O - O   E X T E N S I O N S
 \ ** john sadler aug 1998
 \
-\ $FreeBSD$
 
 17 ficl-vocabulary oop
 also oop definitions
diff --git a/stand/ficl/softwords/prefix.fr b/stand/ficl/softwords/prefix.fr
index ae1727fc00bc..b1491a384425 100644
--- a/stand/ficl/softwords/prefix.fr
+++ b/stand/ficl/softwords/prefix.fr
@@ -5,7 +5,6 @@
 \ (jws) To make a prefix, simply create a new definition in the <prefixes> 
 \ wordlist. start-prefixes and end-prefixes handle the bookkeeping
 \
-\ $FreeBSD$
 
 variable save-current
 
diff --git a/stand/ficl/softwords/softcore.fr b/stand/ficl/softwords/softcore.fr
index 3ec74d8cbece..1350f859f3a2 100644
--- a/stand/ficl/softwords/softcore.fr
+++ b/stand/ficl/softwords/softcore.fr
@@ -3,7 +3,6 @@
 \ ** John Sadler (john_sadler@alum.mit.edu)
 \ ** September, 1998
 \
-\ $FreeBSD$
 
 \ ** Ficl USER variables
 \ ** See words.c for primitive def'n of USER
diff --git a/stand/ficl/softwords/string.fr b/stand/ficl/softwords/string.fr
index dabb3900892f..bf6c997c70a7 100644
--- a/stand/ficl/softwords/string.fr
+++ b/stand/ficl/softwords/string.fr
@@ -11,7 +11,6 @@
 \   s" woof woof woof " str --> cat
 \   str --> type  cr
 \
-\ $FreeBSD$
 
 also oop definitions
 
diff --git a/stand/forth/beastie.4th b/stand/forth/beastie.4th
index f64cf9f8720b..8aab8214d37e 100644
--- a/stand/forth/beastie.4th
+++ b/stand/forth/beastie.4th
@@ -24,7 +24,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-beastie.4th
 
diff --git a/stand/forth/brand-fbsd.4th b/stand/forth/brand-fbsd.4th
index 84245ef232b6..ba84ae0d509a 100644
--- a/stand/forth/brand-fbsd.4th
+++ b/stand/forth/brand-fbsd.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 2 brandX ! 1 brandY ! \ Initialize brand placement defaults
 
diff --git a/stand/forth/brand.4th b/stand/forth/brand.4th
index 034e4eb40445..6c7cea584eba 100644
--- a/stand/forth/brand.4th
+++ b/stand/forth/brand.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-brand.4th
 
diff --git a/stand/forth/check-password.4th b/stand/forth/check-password.4th
index e7996227c5f9..cb938625f4d0 100644
--- a/stand/forth/check-password.4th
+++ b/stand/forth/check-password.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-check-password.4th
 
diff --git a/stand/forth/color.4th b/stand/forth/color.4th
index e73e8b725c31..d3371c17884a 100644
--- a/stand/forth/color.4th
+++ b/stand/forth/color.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-color.4th
 
diff --git a/stand/forth/delay.4th b/stand/forth/delay.4th
index 28cfa5c26eb9..45c1c5064827 100644
--- a/stand/forth/delay.4th
+++ b/stand/forth/delay.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-delay.4th
 
diff --git a/stand/forth/efi.4th b/stand/forth/efi.4th
index abcf12cffccd..5d4ed912281d 100644
--- a/stand/forth/efi.4th
+++ b/stand/forth/efi.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \
-\ $FreeBSD$
 
 only forth definitions
 
diff --git a/stand/forth/frames.4th b/stand/forth/frames.4th
index 8d2421c758d9..9103f0f0aa3e 100644
--- a/stand/forth/frames.4th
+++ b/stand/forth/frames.4th
@@ -23,7 +23,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-frames.4th
 
diff --git a/stand/forth/loader.4th b/stand/forth/loader.4th
index 89ea9efc4171..574077ea5710 100644
--- a/stand/forth/loader.4th
+++ b/stand/forth/loader.4th
@@ -23,7 +23,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \
-\ $FreeBSD$
 
 only forth definitions
 
diff --git a/stand/forth/loader.rc b/stand/forth/loader.rc
index c15b0f5ce23b..06f2edbd787d 100644
--- a/stand/forth/loader.rc
+++ b/stand/forth/loader.rc
@@ -1,5 +1,4 @@
 \ Loader.rc
-\ $FreeBSD$
 \
 \ You should not edit this file! Put any overrides in loader.rc.local
 \ instead as this file can be replaced during system updates.
diff --git a/stand/forth/logo-beastie.4th b/stand/forth/logo-beastie.4th
index 671eb5e496b2..cd049089a44d 100644
--- a/stand/forth/logo-beastie.4th
+++ b/stand/forth/logo-beastie.4th
@@ -24,7 +24,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 46 logoX ! 4 logoY ! \ Initialize logo placement defaults
 
diff --git a/stand/forth/logo-beastiebw.4th b/stand/forth/logo-beastiebw.4th
index 197099cda0bc..f465dd3d3aa9 100644
--- a/stand/forth/logo-beastiebw.4th
+++ b/stand/forth/logo-beastiebw.4th
@@ -23,7 +23,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 46 logoX ! 4 logoY ! \ Initialize logo placement defaults
 
diff --git a/stand/forth/logo-fbsdbw.4th b/stand/forth/logo-fbsdbw.4th
index d4a532b78f4f..67c16930c750 100644
--- a/stand/forth/logo-fbsdbw.4th
+++ b/stand/forth/logo-fbsdbw.4th
@@ -23,7 +23,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 52 logoX ! 9 logoY ! \ Initialize logo placement defaults
 
diff --git a/stand/forth/logo-orb.4th b/stand/forth/logo-orb.4th
index 289353a46926..51efdeaec826 100644
--- a/stand/forth/logo-orb.4th
+++ b/stand/forth/logo-orb.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 46 logoX ! 7 logoY ! \ Initialize logo placement defaults
 
diff --git a/stand/forth/logo-orbbw.4th b/stand/forth/logo-orbbw.4th
index 11dc11cabb77..9e49a979f911 100644
--- a/stand/forth/logo-orbbw.4th
+++ b/stand/forth/logo-orbbw.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 46 logoX ! 7 logoY ! \ Initialize logo placement defaults
 
diff --git a/stand/forth/menu-commands.4th b/stand/forth/menu-commands.4th
index 9adf30a46b66..decf3fdf6fa4 100644
--- a/stand/forth/menu-commands.4th
+++ b/stand/forth/menu-commands.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-menu-commands.4th
 
diff --git a/stand/forth/menu.4th b/stand/forth/menu.4th
index 75e75e3e3654..87b4efb8c185 100644
--- a/stand/forth/menu.4th
+++ b/stand/forth/menu.4th
@@ -24,7 +24,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-menu.4th
 
diff --git a/stand/forth/menu.rc b/stand/forth/menu.rc
index d640e803e61f..da9ef49c84cd 100644
--- a/stand/forth/menu.rc
+++ b/stand/forth/menu.rc
@@ -1,5 +1,4 @@
 \ Menu.rc
-\ $FreeBSD$
 \
 \ You should not edit this file! Put any overrides in menu.rc.local
 \ instead as this file can be replaced during system updates.
diff --git a/stand/forth/menusets.4th b/stand/forth/menusets.4th
index 9335b80d511a..c3a4f8e8adb2 100644
--- a/stand/forth/menusets.4th
+++ b/stand/forth/menusets.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-menusets.4th
 
diff --git a/stand/forth/screen.4th b/stand/forth/screen.4th
index e27482248b57..02eff4dd1b5b 100644
--- a/stand/forth/screen.4th
+++ b/stand/forth/screen.4th
@@ -23,7 +23,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-screen.4th
 
diff --git a/stand/forth/shortcuts.4th b/stand/forth/shortcuts.4th
index 33a1cf678988..6ea885102140 100644
--- a/stand/forth/shortcuts.4th
+++ b/stand/forth/shortcuts.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 \ FICL words intended to be used as shortcuts for carrying out common tasks or
 \ producing common results. Generally, words defined here are simply groupings
diff --git a/stand/forth/support.4th b/stand/forth/support.4th
index 999ac5005f5d..49318e067678 100644
--- a/stand/forth/support.4th
+++ b/stand/forth/support.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \
-\ $FreeBSD$
 
 \ Loader.rc support functions:
 \
diff --git a/stand/forth/version.4th b/stand/forth/version.4th
index a5311b4442ac..e92d77b321c8 100644
--- a/stand/forth/version.4th
+++ b/stand/forth/version.4th
@@ -22,7 +22,6 @@
 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 \ SUCH DAMAGE.
 \ 
-\ $FreeBSD$
 
 marker task-version.4th
 
diff --git a/stand/i386/loader/loader.rc b/stand/i386/loader/loader.rc
index 9f1ebe635971..4bac6ef6801d 100644
--- a/stand/i386/loader/loader.rc
+++ b/stand/i386/loader/loader.rc
@@ -1,5 +1,4 @@
 \ Loader.rc
-\ $FreeBSD$
 \
 \ Includes additional commands
 include /boot/loader.4th



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202308161757.37GHvOUh060141>