PNG  IHDR  8] PLTE S =tRNS   PNG  IHDR  8] PLTE S =tRNS   REDROOM
PHP 7.4.33
Preview: splice_test.go Size: 13.48 KB
/proc/thread-self/root/opt/golang/1.22.0/src/net/splice_test.go

// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build linux

package net

import (
	"io"
	"log"
	"os"
	"os/exec"
	"strconv"
	"sync"
	"testing"
	"time"
)

func TestSplice(t *testing.T) {
	t.Run("tcp-to-tcp", func(t *testing.T) { testSplice(t, "tcp", "tcp") })
	if !testableNetwork("unixgram") {
		t.Skip("skipping unix-to-tcp tests")
	}
	t.Run("unix-to-tcp", func(t *testing.T) { testSplice(t, "unix", "tcp") })
	t.Run("tcp-to-unix", func(t *testing.T) { testSplice(t, "tcp", "unix") })
	t.Run("tcp-to-file", func(t *testing.T) { testSpliceToFile(t, "tcp", "file") })
	t.Run("unix-to-file", func(t *testing.T) { testSpliceToFile(t, "unix", "file") })
	t.Run("no-unixpacket", testSpliceNoUnixpacket)
	t.Run("no-unixgram", testSpliceNoUnixgram)
}

func testSpliceToFile(t *testing.T, upNet, downNet string) {
	t.Run("simple", spliceTestCase{upNet, downNet, 128, 128, 0}.testFile)
	t.Run("multipleWrite", spliceTestCase{upNet, downNet, 4096, 1 << 20, 0}.testFile)
	t.Run("big", spliceTestCase{upNet, downNet, 5 << 20, 1 << 30, 0}.testFile)
	t.Run("honorsLimitedReader", spliceTestCase{upNet, downNet, 4096, 1 << 20, 1 << 10}.testFile)
	t.Run("updatesLimitedReaderN", spliceTestCase{upNet, downNet, 1024, 4096, 4096 + 100}.testFile)
	t.Run("limitedReaderAtLimit", spliceTestCase{upNet, downNet, 32, 128, 128}.testFile)
}

func testSplice(t *testing.T, upNet, downNet string) {
	t.Run("simple", spliceTestCase{upNet, downNet, 128, 128, 0}.test)
	t.Run("multipleWrite", spliceTestCase{upNet, downNet, 4096, 1 << 20, 0}.test)
	t.Run("big", spliceTestCase{upNet, downNet, 5 << 20, 1 << 30, 0}.test)
	t.Run("honorsLimitedReader", spliceTestCase{upNet, downNet, 4096, 1 << 20, 1 << 10}.test)
	t.Run("updatesLimitedReaderN", spliceTestCase{upNet, downNet, 1024, 4096, 4096 + 100}.test)
	t.Run("limitedReaderAtLimit", spliceTestCase{upNet, downNet, 32, 128, 128}.test)
	t.Run("readerAtEOF", func(t *testing.T) { testSpliceReaderAtEOF(t, upNet, downNet) })
	t.Run("issue25985", func(t *testing.T) { testSpliceIssue25985(t, upNet, downNet) })
}

type spliceTestCase struct {
	upNet, downNet string

	chunkSize, totalSize int
	limitReadSize        int
}

func (tc spliceTestCase) test(t *testing.T) {
	clientUp, serverUp := spliceTestSocketPair(t, tc.upNet)
	defer serverUp.Close()
	cleanup, err := startSpliceClient(clientUp, "w", tc.chunkSize, tc.totalSize)
	if err != nil {
		t.Fatal(err)
	}
	defer cleanup()
	clientDown, serverDown := spliceTestSocketPair(t, tc.downNet)
	defer serverDown.Close()
	cleanup, err = startSpliceClient(clientDown, "r", tc.chunkSize, tc.totalSize)
	if err != nil {
		t.Fatal(err)
	}
	defer cleanup()
	var (
		r    io.Reader = serverUp
		size           = tc.totalSize
	)
	if tc.limitReadSize > 0 {
		if tc.limitReadSize < size {
			size = tc.limitReadSize
		}

		r = &io.LimitedReader{
			N: int64(tc.limitReadSize),
			R: serverUp,
		}
		defer serverUp.Close()
	}
	n, err := io.Copy(serverDown, r)
	serverDown.Close()
	if err != nil {
		t.Fatal(err)
	}
	if want := int64(size); want != n {
		t.Errorf("want %d bytes spliced, got %d", want, n)
	}

	if tc.limitReadSize > 0 {
		wantN := 0
		if tc.limitReadSize > size {
			wantN = tc.limitReadSize - size
		}

		if n := r.(*io.LimitedReader).N; n != int64(wantN) {
			t.Errorf("r.N = %d, want %d", n, wantN)
		}
	}
}

func (tc spliceTestCase) testFile(t *testing.T) {
	f, err := os.OpenFile(os.DevNull, os.O_WRONLY, 0)
	if err != nil {
		t.Fatal(err)
	}
	defer f.Close()

	client, server := spliceTestSocketPair(t, tc.upNet)
	defer server.Close()

	cleanup, err := startSpliceClient(client, "w", tc.chunkSize, tc.totalSize)
	if err != nil {
		client.Close()
		t.Fatal("failed to start splice client:", err)
	}
	defer cleanup()

	var (
		r          io.Reader = server
		actualSize           = tc.totalSize
	)
	if tc.limitReadSize > 0 {
		if tc.limitReadSize < actualSize {
			actualSize = tc.limitReadSize
		}

		r = &io.LimitedReader{
			N: int64(tc.limitReadSize),
			R: r,
		}
	}

	got, err := io.Copy(f, r)
	if err != nil {
		t.Fatalf("failed to ReadFrom with error: %v", err)
	}
	if want := int64(actualSize); got != want {
		t.Errorf("got %d bytes, want %d", got, want)
	}
	if tc.limitReadSize > 0 {
		wantN := 0
		if tc.limitReadSize > actualSize {
			wantN = tc.limitReadSize - actualSize
		}

		if gotN := r.(*io.LimitedReader).N; gotN != int64(wantN) {
			t.Errorf("r.N = %d, want %d", gotN, wantN)
		}
	}
}

func testSpliceReaderAtEOF(t *testing.T, upNet, downNet string) {
	// UnixConn doesn't implement io.ReaderFrom, which will fail
	// the following test in asserting a UnixConn to be an io.ReaderFrom,
	// so skip this test.
	if upNet == "unix" || downNet == "unix" {
		t.Skip("skipping test on unix socket")
	}

	clientUp, serverUp := spliceTestSocketPair(t, upNet)
	defer clientUp.Close()
	clientDown, serverDown := spliceTestSocketPair(t, downNet)
	defer clientDown.Close()

	serverUp.Close()

	// We'd like to call net.spliceFrom here and check the handled return
	// value, but we disable splice on old Linux kernels.
	//
	// In that case, poll.Splice and net.spliceFrom return a non-nil error
	// and handled == false. We'd ideally like to see handled == true
	// because the source reader is at EOF, but if we're running on an old
	// kernel, and splice is disabled, we won't see EOF from net.spliceFrom,
	// because we won't touch the reader at all.
	//
	// Trying to untangle the errors from net.spliceFrom and match them
	// against the errors created by the poll package would be brittle,
	// so this is a higher level test.
	//
	// The following ReadFrom should return immediately, regardless of
	// whether splice is disabled or not. The other side should then
	// get a goodbye signal. Test for the goodbye signal.
	msg := "bye"
	go func() {
		serverDown.(io.ReaderFrom).ReadFrom(serverUp)
		io.WriteString(serverDown, msg)
		serverDown.Close()
	}()

	buf := make([]byte, 3)
	_, err := io.ReadFull(clientDown, buf)
	if err != nil {
		t.Errorf("clientDown: %v", err)
	}
	if string(buf) != msg {
		t.Errorf("clientDown got %q, want %q", buf, msg)
	}
}

func testSpliceIssue25985(t *testing.T, upNet, downNet string) {
	front := newLocalListener(t, upNet)
	defer front.Close()
	back := newLocalListener(t, downNet)
	defer back.Close()

	var wg sync.WaitGroup
	wg.Add(2)

	proxy := func() {
		src, err := front.Accept()
		if err != nil {
			return
		}
		dst, err := Dial(downNet, back.Addr().String())
		if err != nil {
			return
		}
		defer dst.Close()
		defer src.Close()
		go func() {
			io.Copy(src, dst)
			wg.Done()
		}()
		go func() {
			io.Copy(dst, src)
			wg.Done()
		}()
	}

	go proxy()

	toFront, err := Dial(upNet, front.Addr().String())
	if err != nil {
		t.Fatal(err)
	}

	io.WriteString(toFront, "foo")
	toFront.Close()

	fromProxy, err := back.Accept()
	if err != nil {
		t.Fatal(err)
	}
	defer fromProxy.Close()

	_, err = io.ReadAll(fromProxy)
	if err != nil {
		t.Fatal(err)
	}

	wg.Wait()
}

func testSpliceNoUnixpacket(t *testing.T) {
	clientUp, serverUp := spliceTestSocketPair(t, "unixpacket")
	defer clientUp.Close()
	defer serverUp.Close()
	clientDown, serverDown := spliceTestSocketPair(t, "tcp")
	defer clientDown.Close()
	defer serverDown.Close()
	// If splice called poll.Splice here, we'd get err == syscall.EINVAL
	// and handled == false.  If poll.Splice gets an EINVAL on the first
	// try, it assumes the kernel it's running on doesn't support splice
	// for unix sockets and returns handled == false. This works for our
	// purposes by somewhat of an accident, but is not entirely correct.
	//
	// What we want is err == nil and handled == false, i.e. we never
	// called poll.Splice, because we know the unix socket's network.
	_, err, handled := spliceFrom(serverDown.(*TCPConn).fd, serverUp)
	if err != nil || handled != false {
		t.Fatalf("got err = %v, handled = %t, want nil error, handled == false", err, handled)
	}
}

func testSpliceNoUnixgram(t *testing.T) {
	addr, err := ResolveUnixAddr("unixgram", testUnixAddr(t))
	if err != nil {
		t.Fatal(err)
	}
	defer os.Remove(addr.Name)
	up, err := ListenUnixgram("unixgram", addr)
	if err != nil {
		t.Fatal(err)
	}
	defer up.Close()
	clientDown, serverDown := spliceTestSocketPair(t, "tcp")
	defer clientDown.Close()
	defer serverDown.Close()
	// Analogous to testSpliceNoUnixpacket.
	_, err, handled := spliceFrom(serverDown.(*TCPConn).fd, up)
	if err != nil || handled != false {
		t.Fatalf("got err = %v, handled = %t, want nil error, handled == false", err, handled)
	}
}

func BenchmarkSplice(b *testing.B) {
	testHookUninstaller.Do(uninstallTestHooks)

	b.Run("tcp-to-tcp", func(b *testing.B) { benchSplice(b, "tcp", "tcp") })
	b.Run("unix-to-tcp", func(b *testing.B) { benchSplice(b, "unix", "tcp") })
	b.Run("tcp-to-unix", func(b *testing.B) { benchSplice(b, "tcp", "unix") })
}

func benchSplice(b *testing.B, upNet, downNet string) {
	for i := 0; i <= 10; i++ {
		chunkSize := 1 << uint(i+10)
		tc := spliceTestCase{
			upNet:     upNet,
			downNet:   downNet,
			chunkSize: chunkSize,
		}

		b.Run(strconv.Itoa(chunkSize), tc.bench)
	}
}

func (tc spliceTestCase) bench(b *testing.B) {
	// To benchmark the genericReadFrom code path, set this to false.
	useSplice := true

	clientUp, serverUp := spliceTestSocketPair(b, tc.upNet)
	defer serverUp.Close()

	cleanup, err := startSpliceClient(clientUp, "w", tc.chunkSize, tc.chunkSize*b.N)
	if err != nil {
		b.Fatal(err)
	}
	defer cleanup()

	clientDown, serverDown := spliceTestSocketPair(b, tc.downNet)
	defer serverDown.Close()

	cleanup, err = startSpliceClient(clientDown, "r", tc.chunkSize, tc.chunkSize*b.N)
	if err != nil {
		b.Fatal(err)
	}
	defer cleanup()

	b.SetBytes(int64(tc.chunkSize))
	b.ResetTimer()

	if useSplice {
		_, err := io.Copy(serverDown, serverUp)
		if err != nil {
			b.Fatal(err)
		}
	} else {
		type onlyReader struct {
			io.Reader
		}
		_, err := io.Copy(serverDown, onlyReader{serverUp})
		if err != nil {
			b.Fatal(err)
		}
	}
}

func spliceTestSocketPair(t testing.TB, net string) (client, server Conn) {
	t.Helper()
	ln := newLocalListener(t, net)
	defer ln.Close()
	var cerr, serr error
	acceptDone := make(chan struct{})
	go func() {
		server, serr = ln.Accept()
		acceptDone <- struct{}{}
	}()
	client, cerr = Dial(ln.Addr().Network(), ln.Addr().String())
	<-acceptDone
	if cerr != nil {
		if server != nil {
			server.Close()
		}
		t.Fatal(cerr)
	}
	if serr != nil {
		if client != nil {
			client.Close()
		}
		t.Fatal(serr)
	}
	return client, server
}

func startSpliceClient(conn Conn, op string, chunkSize, totalSize int) (func(), error) {
	f, err := conn.(interface{ File() (*os.File, error) }).File()
	if err != nil {
		return nil, err
	}

	cmd := exec.Command(os.Args[0], os.Args[1:]...)
	cmd.Env = []string{
		"GO_NET_TEST_SPLICE=1",
		"GO_NET_TEST_SPLICE_OP=" + op,
		"GO_NET_TEST_SPLICE_CHUNK_SIZE=" + strconv.Itoa(chunkSize),
		"GO_NET_TEST_SPLICE_TOTAL_SIZE=" + strconv.Itoa(totalSize),
		"TMPDIR=" + os.Getenv("TMPDIR"),
	}
	cmd.ExtraFiles = append(cmd.ExtraFiles, f)
	cmd.Stdout = os.Stdout
	cmd.Stderr = os.Stderr

	if err := cmd.Start(); err != nil {
		return nil, err
	}

	donec := make(chan struct{})
	go func() {
		cmd.Wait()
		conn.Close()
		f.Close()
		close(donec)
	}()

	return func() {
		select {
		case <-donec:
		case <-time.After(5 * time.Second):
			log.Printf("killing splice client after 5 second shutdown timeout")
			cmd.Process.Kill()
			select {
			case <-donec:
			case <-time.After(5 * time.Second):
				log.Printf("splice client didn't die after 10 seconds")
			}
		}
	}, nil
}

func init() {
	if os.Getenv("GO_NET_TEST_SPLICE") == "" {
		return
	}
	defer os.Exit(0)

	f := os.NewFile(uintptr(3), "splice-test-conn")
	defer f.Close()

	conn, err := FileConn(f)
	if err != nil {
		log.Fatal(err)
	}

	var chunkSize int
	if chunkSize, err = strconv.Atoi(os.Getenv("GO_NET_TEST_SPLICE_CHUNK_SIZE")); err != nil {
		log.Fatal(err)
	}
	buf := make([]byte, chunkSize)

	var totalSize int
	if totalSize, err = strconv.Atoi(os.Getenv("GO_NET_TEST_SPLICE_TOTAL_SIZE")); err != nil {
		log.Fatal(err)
	}

	var fn func([]byte) (int, error)
	switch op := os.Getenv("GO_NET_TEST_SPLICE_OP"); op {
	case "r":
		fn = conn.Read
	case "w":
		defer conn.Close()

		fn = conn.Write
	default:
		log.Fatalf("unknown op %q", op)
	}

	var n int
	for count := 0; count < totalSize; count += n {
		if count+chunkSize > totalSize {
			buf = buf[:totalSize-count]
		}

		var err error
		if n, err = fn(buf); err != nil {
			return
		}
	}
}

func BenchmarkSpliceFile(b *testing.B) {
	b.Run("tcp-to-file", func(b *testing.B) { benchmarkSpliceFile(b, "tcp") })
	b.Run("unix-to-file", func(b *testing.B) { benchmarkSpliceFile(b, "unix") })
}

func benchmarkSpliceFile(b *testing.B, proto string) {
	for i := 0; i <= 10; i++ {
		size := 1 << (i + 10)
		bench := spliceFileBench{
			proto:     proto,
			chunkSize: size,
		}
		b.Run(strconv.Itoa(size), bench.benchSpliceFile)
	}
}

type spliceFileBench struct {
	proto     string
	chunkSize int
}

func (bench spliceFileBench) benchSpliceFile(b *testing.B) {
	f, err := os.OpenFile(os.DevNull, os.O_WRONLY, 0)
	if err != nil {
		b.Fatal(err)
	}
	defer f.Close()

	totalSize := b.N * bench.chunkSize

	client, server := spliceTestSocketPair(b, bench.proto)
	defer server.Close()

	cleanup, err := startSpliceClient(client, "w", bench.chunkSize, totalSize)
	if err != nil {
		client.Close()
		b.Fatalf("failed to start splice client: %v", err)
	}
	defer cleanup()

	b.ReportAllocs()
	b.SetBytes(int64(bench.chunkSize))
	b.ResetTimer()

	got, err := io.Copy(f, server)
	if err != nil {
		b.Fatalf("failed to ReadFrom with error: %v", err)
	}
	if want := int64(totalSize); got != want {
		b.Errorf("bytes sent mismatch, got: %d, want: %d", got, want)
	}
}

Directory Contents

Dirs: 9 × Files: 214

Name Size Perms Modified Actions
http DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
internal DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
mail DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
netip DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
rpc DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
smtp DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
testdata DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
textproto DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
url DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
9.69 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.50 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
582 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
272 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
343 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
298 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
642 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
276 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
276 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
580 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
579 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
753 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
842 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
343 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.33 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.35 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.24 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
461 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
911 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
998 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.99 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.44 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
15.63 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
12.28 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.82 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
25.68 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
30.14 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.77 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.65 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.51 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
24.26 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
69.13 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.73 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.16 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.07 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.60 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.96 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
224 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
437 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
543 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
981 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
20.32 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
382 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
723 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
355 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
757 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.45 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.05 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.79 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
627 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.56 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.43 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
496 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.14 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.69 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.72 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
481 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.43 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.50 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.07 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.20 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.76 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
521 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
894 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
211 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
658 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
720 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.48 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.60 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.26 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.46 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.82 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
718 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.44 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.96 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.65 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.71 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.13 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
814 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
9.76 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.85 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.43 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
13.88 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.11 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
874 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.89 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.98 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
9.05 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.48 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
645 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.86 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.81 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
25.60 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
20.50 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
29.04 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
9.94 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
40.62 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.35 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
13.80 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.93 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.88 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.26 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
693 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.39 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
467 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
392 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.37 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.53 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.19 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
284 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.00 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
10.77 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.96 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.06 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
542 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
24.56 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
222 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
220 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
453 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
220 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
218 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
26.36 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.79 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
14.00 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
16.28 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.48 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.40 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.02 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.04 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.55 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.43 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.20 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.33 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.46 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.34 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.24 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.44 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.70 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
631 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.33 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.96 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.12 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.25 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
346 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.10 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.12 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.93 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
344 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.25 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.04 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.02 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.67 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.45 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
867 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
735 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.38 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
769 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
786 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.43 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.21 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
955 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.25 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
406 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.13 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.25 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.51 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
918 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.38 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
993 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
575 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
262 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
390 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
802 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.69 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
376 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
13.48 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
962 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.75 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
770 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
698 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
365 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
525 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
442 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.15 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
399 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
722 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
741 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.18 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.16 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
17.68 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.34 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
29.11 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.83 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.64 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.31 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.53 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
17.24 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
10.12 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.24 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.64 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
654 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
332 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
275 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.51 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
10.64 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.03 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.03 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
666 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.61 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
 !"#$%&'(()*+,-./00123456789 t\ wIDATx ]ys  47Y ƒ -  "  Rv  < f{Ɛ $k l L > L  ~h^ 1  [  r G t& h  l F z3O Y ! p A(_g̷ E8 )S 8 c  Kb"z ~ 5 J xAL WU <  *  5 m;W a pB h ~P J 2 3 6 ҙ .Ƹ P i  4g F R L P ΪK/D  M v (a3 k J Œ4N5* SH ` SdJ z  O J Xՠ V>u ߱ BE&L b2 ?2` tX+  c CB A$ i b C ĀMB E : /  # Dx &l =q Ty  0 \p I ( L Ǎ { e 4k ;`u^ヲ eP!( d {  )T A 8 O;Ě n >;s6 !  :Nx `[S D HU ~ q›J F} a g*D 49 / pn k h (t 8NxƐF _!r չ7 ZR R׷ q/5") Ӎ NY 0 x sZ!   o  fu  ,  K"$ ? pg  㕣=  1» {h " fh7    y  } € +7  $ y " X —ą - G P u 4 m >J 5 L =V ' ^@I p ?MS xЌ XV P ! h "C NS9B8̢ ]!K  e   zA , ӏkbY  !< XQ ٿyS| *" f { w  4@[S <  # 0 ! js [m  =,~ o "ݎ DHf Wo $ g ! Vԅ t mB /y Wf V4񺍸 c+@x?  B ~u " xUN e 0 BĂ) ~J pz! 7y6]l Ԥ@ P a< O /DHC `≻  N m"$  0ObB }{ x AO FCG D R ^ "B  { WDH  UR l@ T #  +"d T ; 0 i  D}. 7 ` ' ] w rE &S i ƕiTD EL P _ u h $ Ա FG wVD G L R Zf ' .!] J /ZR oGЍs Mr Ĥ ʬ 3 Q [3 cL ` ^ p + ( F;# B 5 '  2Y f [  ϶R0e }  E 7 6M aۮ H <& n % L] E}Up x紉, Uw' Q  Ǯշo k ވۙ 0N94 VX5 xEDE l D #֤ } C o )W :  ^ s 9  bRf iX5u ཱི 4 :[  T 1. | [E 2ؽ Iy\ : o x K G 5 ylP ' uK E ftb/i[3 .g _  [3M n G, #NwQ5~  ؚ) | n =Ц"x qg gB ` 듘 ~ x w ? ? R~  _ u. &VQ K˻   H C ( TN˄+ `C dA nB׭ D 3"Z G ê ^k H_ /- ~ " R_  .8 Z_ 6@ o  xg  uP ? 3լ @7AM!  E7^ - =V L  x  g-D0  CtmW 7  O  G _ WD0 g C  w1 r d w : a | \  *" f nֳ ^ H# f L ` Z ۽hV  }S F r0Ù Bć5r] @! NL iQ]{s^=4 d  WD  "  "   M; t" 8 5 e dL| "-*st" ) SWD ?R[S e ooF  20.D ? bo =) A i o d ģ ZҰaO @E =) i D a &ܟa CϞ y6 ,<%{^x%{f8? `iw^ ?/ M * IEND B`