Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Nov 2023 05:24:48 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: 6e28a6bc2e83 - main - stand: Remove ancient SCCS tags.
Message-ID:  <202311270524.3AR5OmLb066024@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=6e28a6bc2e83d56a5d2d5ee4f5da72d798de2d07

commit 6e28a6bc2e83d56a5d2d5ee4f5da72d798de2d07
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-11-23 17:21:37 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-11-27 05:23:29 +0000

    stand: Remove ancient SCCS tags.
    
    Remove ancient SCCS tags from the tree, automated scripting, with two
    minor fixup to keep things compiling. All the common forms in the tree
    were removed with a perl script.
    
    Sponsored by:           Netflix
---
 stand/common/newvers.sh     | 2 --
 stand/libsa/amd64/_setjmp.S | 3 ---
 stand/libsa/arp.c           | 2 --
 stand/libsa/bootp.c         | 2 --
 stand/libsa/close.c         | 2 --
 stand/libsa/dev.c           | 2 --
 stand/libsa/ether.c         | 2 --
 stand/libsa/fstat.c         | 2 --
 stand/libsa/geli/pwgets.c   | 2 --
 stand/libsa/getopt.c        | 3 ---
 stand/libsa/gets.c          | 2 --
 stand/libsa/in_cksum.c      | 2 --
 stand/libsa/inet_ntoa.c     | 3 ---
 stand/libsa/ioctl.c         | 2 --
 stand/libsa/lseek.c         | 2 --
 stand/libsa/net.c           | 2 --
 stand/libsa/nfsv2.h         | 2 --
 stand/libsa/nullfs.c        | 2 --
 stand/libsa/open.c          | 2 --
 stand/libsa/printf.c        | 2 --
 stand/libsa/random.c        | 2 --
 stand/libsa/rarp.c          | 2 --
 stand/libsa/read.c          | 2 --
 stand/libsa/rpc.c           | 2 --
 stand/libsa/rpcv2.h         | 2 --
 stand/libsa/saioctl.h       | 2 --
 stand/libsa/stand.h         | 2 --
 stand/libsa/stat.c          | 2 --
 stand/libsa/strcasecmp.c    | 3 ---
 stand/libsa/strdup.c        | 3 ---
 stand/libsa/twiddle.c       | 2 --
 stand/libsa/udp.c           | 2 --
 stand/libsa/write.c         | 2 --
 33 files changed, 71 deletions(-)

diff --git a/stand/common/newvers.sh b/stand/common/newvers.sh
index 610999bf7ace..916fecb98334 100755
--- a/stand/common/newvers.sh
+++ b/stand/common/newvers.sh
@@ -28,8 +28,6 @@
 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 # SUCH DAMAGE.
-#
-#	@(#)newvers.sh	8.1 (Berkeley) 4/20/94
 
 tempfile=$(mktemp tmp.XXXXXX) || exit
 trap "rm -f $tempfile" EXIT INT TERM
diff --git a/stand/libsa/amd64/_setjmp.S b/stand/libsa/amd64/_setjmp.S
index 077f080faa7e..62683be11946 100644
--- a/stand/libsa/amd64/_setjmp.S
+++ b/stand/libsa/amd64/_setjmp.S
@@ -30,9 +30,6 @@
  * SUCH DAMAGE.
  */
 
-#if defined(LIBC_SCCS) && !defined(lint)
-	.asciz "@(#)_setjmp.s	5.1 (Berkeley) 4/23/90"
-#endif /* LIBC_SCCS and not lint */
 #include <machine/asm.h>
 /*
  * C library -- _setjmp, _longjmp
diff --git a/stand/libsa/arp.c b/stand/libsa/arp.c
index caca08d4cc89..e461d9322e7e 100644
--- a/stand/libsa/arp.c
+++ b/stand/libsa/arp.c
@@ -31,8 +31,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- * @(#) Header: arp.c,v 1.5 93/07/15 05:52:26 leres Exp  (LBL)
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/bootp.c b/stand/libsa/bootp.c
index 2dc823027234..fea516d4b97d 100644
--- a/stand/libsa/bootp.c
+++ b/stand/libsa/bootp.c
@@ -31,8 +31,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- * @(#) Header: bootp.c,v 1.4 93/09/11 03:13:51 leres Exp  (LBL)
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/close.c b/stand/libsa/close.c
index 523578996483..0fb1c136664d 100644
--- a/stand/libsa/close.c
+++ b/stand/libsa/close.c
@@ -31,8 +31,6 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *	@(#)close.c	8.1 (Berkeley) 6/11/93
- *
  *
  * Copyright (c) 1989, 1990, 1991 Carnegie Mellon University
  * All Rights Reserved.
diff --git a/stand/libsa/dev.c b/stand/libsa/dev.c
index e83af5d2e6a0..ea81e0f92115 100644
--- a/stand/libsa/dev.c
+++ b/stand/libsa/dev.c
@@ -27,8 +27,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)dev.c	8.1 (Berkeley) 6/11/93
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/ether.c b/stand/libsa/ether.c
index 304983295eb2..e9dae723e99d 100644
--- a/stand/libsa/ether.c
+++ b/stand/libsa/ether.c
@@ -31,8 +31,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- * @(#) Header: net.c,v 1.9 93/08/06 19:32:15 leres Exp  (LBL)
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/fstat.c b/stand/libsa/fstat.c
index a0bdd8fe8605..b1e99a075880 100644
--- a/stand/libsa/fstat.c
+++ b/stand/libsa/fstat.c
@@ -27,8 +27,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)stat.c	8.1 (Berkeley) 6/11/93
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/geli/pwgets.c b/stand/libsa/geli/pwgets.c
index 5b3c85861786..f7eece5d0d5c 100644
--- a/stand/libsa/geli/pwgets.c
+++ b/stand/libsa/geli/pwgets.c
@@ -27,8 +27,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)gets.c	8.1 (Berkeley) 6/11/93
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/getopt.c b/stand/libsa/getopt.c
index 22c8b2b7fe0a..0e49664f8721 100644
--- a/stand/libsa/getopt.c
+++ b/stand/libsa/getopt.c
@@ -28,9 +28,6 @@
  */
 
 #include <sys/cdefs.h>
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)getopt.c	8.3 (Berkeley) 4/27/95";
-#endif /* LIBC_SCCS and not lint */
 
 #include "stand.h"
 #include <string.h>
diff --git a/stand/libsa/gets.c b/stand/libsa/gets.c
index 04775f6f5280..6d5968f1d6c2 100644
--- a/stand/libsa/gets.c
+++ b/stand/libsa/gets.c
@@ -27,8 +27,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)gets.c	8.1 (Berkeley) 6/11/93
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/in_cksum.c b/stand/libsa/in_cksum.c
index cdc1110fa4a1..f4d5a91b1b5a 100644
--- a/stand/libsa/in_cksum.c
+++ b/stand/libsa/in_cksum.c
@@ -31,8 +31,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- * @(#) Header: in_cksum.c,v 1.1 92/09/11 01:15:55 leres Exp  (LBL)
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/inet_ntoa.c b/stand/libsa/inet_ntoa.c
index 6c32c020557c..e696d4c67ffe 100644
--- a/stand/libsa/inet_ntoa.c
+++ b/stand/libsa/inet_ntoa.c
@@ -28,9 +28,6 @@
  */
 
 #include <sys/cdefs.h>
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)inet_ntoa.c	8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
 #include <sys/socket.h>
diff --git a/stand/libsa/ioctl.c b/stand/libsa/ioctl.c
index 26d817dbaefd..366c97309c1b 100644
--- a/stand/libsa/ioctl.c
+++ b/stand/libsa/ioctl.c
@@ -31,8 +31,6 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *	@(#)ioctl.c	8.1 (Berkeley) 6/11/93
- *
  *
  * Copyright (c) 1989, 1990, 1991 Carnegie Mellon University
  * All Rights Reserved.
diff --git a/stand/libsa/lseek.c b/stand/libsa/lseek.c
index eb063394a144..73448d4a4c03 100644
--- a/stand/libsa/lseek.c
+++ b/stand/libsa/lseek.c
@@ -31,8 +31,6 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *	@(#)lseek.c	8.1 (Berkeley) 6/11/93
- *
  *
  * Copyright (c) 1989, 1990, 1991 Carnegie Mellon University
  * All Rights Reserved.
diff --git a/stand/libsa/net.c b/stand/libsa/net.c
index 5125f89aaa9f..20731d90b6aa 100644
--- a/stand/libsa/net.c
+++ b/stand/libsa/net.c
@@ -31,8 +31,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- * @(#) Header: net.c,v 1.9 93/08/06 19:32:15 leres Exp  (LBL)
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/nfsv2.h b/stand/libsa/nfsv2.h
index 165517760eca..bcae55b06b1d 100644
--- a/stand/libsa/nfsv2.h
+++ b/stand/libsa/nfsv2.h
@@ -30,8 +30,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)nfsv2.h	8.1 (Berkeley) 6/10/93
  */
 
 /*
diff --git a/stand/libsa/nullfs.c b/stand/libsa/nullfs.c
index 157c8a3178ec..bb11286a4579 100644
--- a/stand/libsa/nullfs.c
+++ b/stand/libsa/nullfs.c
@@ -30,8 +30,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)open.c	8.1 (Berkeley) 6/11/93
  *  
  *
  * Copyright (c) 1989, 1990, 1991 Carnegie Mellon University
diff --git a/stand/libsa/open.c b/stand/libsa/open.c
index fc70e2c3904a..66866dd5c0f2 100644
--- a/stand/libsa/open.c
+++ b/stand/libsa/open.c
@@ -31,8 +31,6 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *	@(#)open.c	8.1 (Berkeley) 6/11/93
- *
  *
  * Copyright (c) 1989, 1990, 1991 Carnegie Mellon University
  * All Rights Reserved.
diff --git a/stand/libsa/printf.c b/stand/libsa/printf.c
index 4d4696828988..313cf79fdffa 100644
--- a/stand/libsa/printf.c
+++ b/stand/libsa/printf.c
@@ -30,8 +30,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)subr_prf.c	8.3 (Berkeley) 1/21/94
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/random.c b/stand/libsa/random.c
index 8570c9d514c1..a6d903ed2e02 100644
--- a/stand/libsa/random.c
+++ b/stand/libsa/random.c
@@ -25,8 +25,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)random.c	8.1 (Berkeley) 6/10/93
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/rarp.c b/stand/libsa/rarp.c
index 38a936a8833e..9c5daad5cd42 100644
--- a/stand/libsa/rarp.c
+++ b/stand/libsa/rarp.c
@@ -31,8 +31,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- * @(#) Header: arp.c,v 1.5 93/07/15 05:52:26 leres Exp  (LBL)
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/read.c b/stand/libsa/read.c
index 3f928f8e6916..df150f8f0fbe 100644
--- a/stand/libsa/read.c
+++ b/stand/libsa/read.c
@@ -31,8 +31,6 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *	@(#)read.c	8.1 (Berkeley) 6/11/93
- *
  *
  * Copyright (c) 1989, 1990, 1991 Carnegie Mellon University
  * All Rights Reserved.
diff --git a/stand/libsa/rpc.c b/stand/libsa/rpc.c
index c1fecd422610..108601f6629e 100644
--- a/stand/libsa/rpc.c
+++ b/stand/libsa/rpc.c
@@ -31,8 +31,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- * @(#) Header: rpc.c,v 1.12 93/09/28 08:31:56 leres Exp  (LBL)
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/rpcv2.h b/stand/libsa/rpcv2.h
index fb6df3595bb7..4973b3918110 100644
--- a/stand/libsa/rpcv2.h
+++ b/stand/libsa/rpcv2.h
@@ -30,8 +30,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)rpcv2.h	8.1 (Berkeley) 6/10/93
  */
 
 /*
diff --git a/stand/libsa/saioctl.h b/stand/libsa/saioctl.h
index 281527aa4fcf..2ad35443e367 100644
--- a/stand/libsa/saioctl.h
+++ b/stand/libsa/saioctl.h
@@ -27,8 +27,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)saioctl.h	8.1 (Berkeley) 6/11/93
  */
 
 /* ioctl's -- for disks just now */
diff --git a/stand/libsa/stand.h b/stand/libsa/stand.h
index d19d42d37f10..b6ddebb82fd7 100644
--- a/stand/libsa/stand.h
+++ b/stand/libsa/stand.h
@@ -52,8 +52,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)stand.h	8.1 (Berkeley) 6/11/93
  */
 
 #ifndef	STAND_H
diff --git a/stand/libsa/stat.c b/stand/libsa/stat.c
index fb79723ad03f..50065db6858b 100644
--- a/stand/libsa/stat.c
+++ b/stand/libsa/stat.c
@@ -27,8 +27,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)stat.c	8.1 (Berkeley) 6/11/93
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/strcasecmp.c b/stand/libsa/strcasecmp.c
index 6c149e1fa5da..9a4ddbcf9cb3 100644
--- a/stand/libsa/strcasecmp.c
+++ b/stand/libsa/strcasecmp.c
@@ -32,9 +32,6 @@
 #include <string.h>
 #include "stand.h"
 
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strcasecmp.c	8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
 
 int
 strcasecmp(const char *s1, const char *s2)
diff --git a/stand/libsa/strdup.c b/stand/libsa/strdup.c
index f256bb95afff..f4506f424c2f 100644
--- a/stand/libsa/strdup.c
+++ b/stand/libsa/strdup.c
@@ -28,9 +28,6 @@
  */
 
 #include <sys/cdefs.h>
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strdup.c	8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
 
 #include "stand.h"
 #include <stddef.h>
diff --git a/stand/libsa/twiddle.c b/stand/libsa/twiddle.c
index 682e66424cf6..43cdca25a367 100644
--- a/stand/libsa/twiddle.c
+++ b/stand/libsa/twiddle.c
@@ -30,8 +30,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *	@(#)subr_prf.c	8.3 (Berkeley) 1/21/94
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/udp.c b/stand/libsa/udp.c
index ae7989c17451..7a5942bbef95 100644
--- a/stand/libsa/udp.c
+++ b/stand/libsa/udp.c
@@ -31,8 +31,6 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- * @(#) Header: net.c,v 1.9 93/08/06 19:32:15 leres Exp  (LBL)
  */
 
 #include <sys/cdefs.h>
diff --git a/stand/libsa/write.c b/stand/libsa/write.c
index 2827f986974f..16a6fc7eaa60 100644
--- a/stand/libsa/write.c
+++ b/stand/libsa/write.c
@@ -31,8 +31,6 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *	@(#)write.c	8.1 (Berkeley) 6/11/93
- *
  *
  * Copyright (c) 1989, 1990, 1991 Carnegie Mellon University
  * All Rights Reserved.



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