PHP 8.0.30
Preview: class-wp-image-editor-gd.php Size: 16.18 KB
/home/certprox/public_html/wpinst/wordpress/wp-includes/class-wp-image-editor-gd.php

<?php
/**
 * WordPress GD Image Editor
 *
 * @package WordPress
 * @subpackage Image_Editor
 */

/**
 * WordPress Image Editor Class for Image Manipulation through GD
 *
 * @since 3.5.0
 *
 * @see WP_Image_Editor
 */
class WP_Image_Editor_GD extends WP_Image_Editor {
	/**
	 * GD Resource.
	 *
	 * @var resource|GdImage
	 */
	protected $image;

	public function __destruct() {
		if ( $this->image ) {
			// We don't need the original in memory anymore.
			imagedestroy( $this->image );
		}
	}

	/**
	 * Checks to see if current environment supports GD.
	 *
	 * @since 3.5.0
	 *
	 * @param array $args
	 * @return bool
	 */
	public static function test( $args = array() ) {
		if ( ! extension_loaded( 'gd' ) || ! function_exists( 'gd_info' ) ) {
			return false;
		}

		// On some setups GD library does not provide imagerotate() - Ticket #11536.
		if ( isset( $args['methods'] ) &&
			in_array( 'rotate', $args['methods'], true ) &&
			! function_exists( 'imagerotate' ) ) {

				return false;
		}

		return true;
	}

	/**
	 * Checks to see if editor supports the mime-type specified.
	 *
	 * @since 3.5.0
	 *
	 * @param string $mime_type
	 * @return bool
	 */
	public static function supports_mime_type( $mime_type ) {
		$image_types = imagetypes();
		switch ( $mime_type ) {
			case 'image/jpeg':
				return ( $image_types & IMG_JPG ) != 0;
			case 'image/png':
				return ( $image_types & IMG_PNG ) != 0;
			case 'image/gif':
				return ( $image_types & IMG_GIF ) != 0;
			case 'image/webp':
				return ( $image_types & IMG_WEBP ) != 0;
		}

		return false;
	}

	/**
	 * Loads image from $this->file into new GD Resource.
	 *
	 * @since 3.5.0
	 *
	 * @return true|WP_Error True if loaded successfully; WP_Error on failure.
	 */
	public function load() {
		if ( $this->image ) {
			return true;
		}

		if ( ! is_file( $this->file ) && ! preg_match( '|^https?://|', $this->file ) ) {
			return new WP_Error( 'error_loading_image', __( 'File does not exist?' ), $this->file );
		}

		// Set artificially high because GD uses uncompressed images in memory.
		wp_raise_memory_limit( 'image' );

		$file_contents = @file_get_contents( $this->file );

		if ( ! $file_contents ) {
			return new WP_Error( 'error_loading_image', __( 'File does not exist?' ), $this->file );
		}

		// WebP may not work with imagecreatefromstring().
		if (
			function_exists( 'imagecreatefromwebp' ) &&
			( 'image/webp' === wp_get_image_mime( $this->file ) )
		) {
			$this->image = @imagecreatefromwebp( $this->file );
		} else {
			$this->image = @imagecreatefromstring( $file_contents );
		}

		if ( ! is_gd_image( $this->image ) ) {
			return new WP_Error( 'invalid_image', __( 'File is not an image.' ), $this->file );
		}

		$size = wp_getimagesize( $this->file );

		if ( ! $size ) {
			return new WP_Error( 'invalid_image', __( 'Could not read image size.' ), $this->file );
		}

		if ( function_exists( 'imagealphablending' ) && function_exists( 'imagesavealpha' ) ) {
			imagealphablending( $this->image, false );
			imagesavealpha( $this->image, true );
		}

		$this->update_size( $size[0], $size[1] );
		$this->mime_type = $size['mime'];

		return $this->set_quality();
	}

	/**
	 * Sets or updates current image size.
	 *
	 * @since 3.5.0
	 *
	 * @param int $width
	 * @param int $height
	 * @return true
	 */
	protected function update_size( $width = false, $height = false ) {
		if ( ! $width ) {
			$width = imagesx( $this->image );
		}

		if ( ! $height ) {
			$height = imagesy( $this->image );
		}

		return parent::update_size( $width, $height );
	}

	/**
	 * Resizes current image.
	 *
	 * Wraps `::_resize()` which returns a GD resource or GdImage instance.
	 *
	 * At minimum, either a height or width must be provided. If one of the two is set
	 * to null, the resize will maintain aspect ratio according to the provided dimension.
	 *
	 * @since 3.5.0
	 *
	 * @param int|null $max_w Image width.
	 * @param int|null $max_h Image height.
	 * @param bool     $crop
	 * @return true|WP_Error
	 */
	public function resize( $max_w, $max_h, $crop = false ) {
		if ( ( $this->size['width'] == $max_w ) && ( $this->size['height'] == $max_h ) ) {
			return true;
		}

		$resized = $this->_resize( $max_w, $max_h, $crop );

		if ( is_gd_image( $resized ) ) {
			imagedestroy( $this->image );
			$this->image = $resized;
			return true;

		} elseif ( is_wp_error( $resized ) ) {
			return $resized;
		}

		return new WP_Error( 'image_resize_error', __( 'Image resize failed.' ), $this->file );
	}

	/**
	 * @param int        $max_w
	 * @param int        $max_h
	 * @param bool|array $crop
	 * @return resource|GdImage|WP_Error
	 */
	protected function _resize( $max_w, $max_h, $crop = false ) {
		$dims = image_resize_dimensions( $this->size['width'], $this->size['height'], $max_w, $max_h, $crop );

		if ( ! $dims ) {
			return new WP_Error( 'error_getting_dimensions', __( 'Could not calculate resized image dimensions' ), $this->file );
		}

		list( $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h ) = $dims;

		$resized = wp_imagecreatetruecolor( $dst_w, $dst_h );
		imagecopyresampled( $resized, $this->image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h );

		if ( is_gd_image( $resized ) ) {
			$this->update_size( $dst_w, $dst_h );
			return $resized;
		}

		return new WP_Error( 'image_resize_error', __( 'Image resize failed.' ), $this->file );
	}

	/**
	 * Create multiple smaller images from a single source.
	 *
	 * Attempts to create all sub-sizes and returns the meta data at the end. This
	 * may result in the server running out of resources. When it fails there may be few
	 * "orphaned" images left over as the meta data is never returned and saved.
	 *
	 * As of 5.3.0 the preferred way to do this is with `make_subsize()`. It creates
	 * the new images one at a time and allows for the meta data to be saved after
	 * each new image is created.
	 *
	 * @since 3.5.0
	 *
	 * @param array $sizes {
	 *     An array of image size data arrays.
	 *
	 *     Either a height or width must be provided.
	 *     If one of the two is set to null, the resize will
	 *     maintain aspect ratio according to the source image.
	 *
	 *     @type array ...$0 {
	 *         Array of height, width values, and whether to crop.
	 *
	 *         @type int  $width  Image width. Optional if `$height` is specified.
	 *         @type int  $height Image height. Optional if `$width` is specified.
	 *         @type bool $crop   Optional. Whether to crop the image. Default false.
	 *     }
	 * }
	 * @return array An array of resized images' metadata by size.
	 */
	public function multi_resize( $sizes ) {
		$metadata = array();

		foreach ( $sizes as $size => $size_data ) {
			$meta = $this->make_subsize( $size_data );

			if ( ! is_wp_error( $meta ) ) {
				$metadata[ $size ] = $meta;
			}
		}

		return $metadata;
	}

	/**
	 * Create an image sub-size and return the image meta data value for it.
	 *
	 * @since 5.3.0
	 *
	 * @param array $size_data {
	 *     Array of size data.
	 *
	 *     @type int  $width  The maximum width in pixels.
	 *     @type int  $height The maximum height in pixels.
	 *     @type bool $crop   Whether to crop the image to exact dimensions.
	 * }
	 * @return array|WP_Error The image data array for inclusion in the `sizes` array in the image meta,
	 *                        WP_Error object on error.
	 */
	public function make_subsize( $size_data ) {
		if ( ! isset( $size_data['width'] ) && ! isset( $size_data['height'] ) ) {
			return new WP_Error( 'image_subsize_create_error', __( 'Cannot resize the image. Both width and height are not set.' ) );
		}

		$orig_size = $this->size;

		if ( ! isset( $size_data['width'] ) ) {
			$size_data['width'] = null;
		}

		if ( ! isset( $size_data['height'] ) ) {
			$size_data['height'] = null;
		}

		if ( ! isset( $size_data['crop'] ) ) {
			$size_data['crop'] = false;
		}

		$resized = $this->_resize( $size_data['width'], $size_data['height'], $size_data['crop'] );

		if ( is_wp_error( $resized ) ) {
			$saved = $resized;
		} else {
			$saved = $this->_save( $resized );
			imagedestroy( $resized );
		}

		$this->size = $orig_size;

		if ( ! is_wp_error( $saved ) ) {
			unset( $saved['path'] );
		}

		return $saved;
	}

	/**
	 * Crops Image.
	 *
	 * @since 3.5.0
	 *
	 * @param int  $src_x   The start x position to crop from.
	 * @param int  $src_y   The start y position to crop from.
	 * @param int  $src_w   The width to crop.
	 * @param int  $src_h   The height to crop.
	 * @param int  $dst_w   Optional. The destination width.
	 * @param int  $dst_h   Optional. The destination height.
	 * @param bool $src_abs Optional. If the source crop points are absolute.
	 * @return true|WP_Error
	 */
	public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false ) {
		// If destination width/height isn't specified,
		// use same as width/height from source.
		if ( ! $dst_w ) {
			$dst_w = $src_w;
		}
		if ( ! $dst_h ) {
			$dst_h = $src_h;
		}

		foreach ( array( $src_w, $src_h, $dst_w, $dst_h ) as $value ) {
			if ( ! is_numeric( $value ) || (int) $value <= 0 ) {
				return new WP_Error( 'image_crop_error', __( 'Image crop failed.' ), $this->file );
			}
		}

		$dst = wp_imagecreatetruecolor( (int) $dst_w, (int) $dst_h );

		if ( $src_abs ) {
			$src_w -= $src_x;
			$src_h -= $src_y;
		}

		if ( function_exists( 'imageantialias' ) ) {
			imageantialias( $dst, true );
		}

		imagecopyresampled( $dst, $this->image, 0, 0, (int) $src_x, (int) $src_y, (int) $dst_w, (int) $dst_h, (int) $src_w, (int) $src_h );

		if ( is_gd_image( $dst ) ) {
			imagedestroy( $this->image );
			$this->image = $dst;
			$this->update_size();
			return true;
		}

		return new WP_Error( 'image_crop_error', __( 'Image crop failed.' ), $this->file );
	}

	/**
	 * Rotates current image counter-clockwise by $angle.
	 * Ported from image-edit.php
	 *
	 * @since 3.5.0
	 *
	 * @param float $angle
	 * @return true|WP_Error
	 */
	public function rotate( $angle ) {
		if ( function_exists( 'imagerotate' ) ) {
			$transparency = imagecolorallocatealpha( $this->image, 255, 255, 255, 127 );
			$rotated      = imagerotate( $this->image, $angle, $transparency );

			if ( is_gd_image( $rotated ) ) {
				imagealphablending( $rotated, true );
				imagesavealpha( $rotated, true );
				imagedestroy( $this->image );
				$this->image = $rotated;
				$this->update_size();
				return true;
			}
		}

		return new WP_Error( 'image_rotate_error', __( 'Image rotate failed.' ), $this->file );
	}

	/**
	 * Flips current image.
	 *
	 * @since 3.5.0
	 *
	 * @param bool $horz Flip along Horizontal Axis.
	 * @param bool $vert Flip along Vertical Axis.
	 * @return true|WP_Error
	 */
	public function flip( $horz, $vert ) {
		$w   = $this->size['width'];
		$h   = $this->size['height'];
		$dst = wp_imagecreatetruecolor( $w, $h );

		if ( is_gd_image( $dst ) ) {
			$sx = $vert ? ( $w - 1 ) : 0;
			$sy = $horz ? ( $h - 1 ) : 0;
			$sw = $vert ? -$w : $w;
			$sh = $horz ? -$h : $h;

			if ( imagecopyresampled( $dst, $this->image, 0, 0, $sx, $sy, $w, $h, $sw, $sh ) ) {
				imagedestroy( $this->image );
				$this->image = $dst;
				return true;
			}
		}

		return new WP_Error( 'image_flip_error', __( 'Image flip failed.' ), $this->file );
	}

	/**
	 * Saves current in-memory image to file.
	 *
	 * @since 3.5.0
	 * @since 5.9.0 Renamed `$filename` to `$destfilename` to match parent class
	 *              for PHP 8 named parameter support.
	 * @since 6.0.0 The `$filesize` value was added to the returned array.
	 *
	 * @param string|null $destfilename Optional. Destination filename. Default null.
	 * @param string|null $mime_type    Optional. The mime-type. Default null.
	 * @return array|WP_Error {
	 *     Array on success or WP_Error if the file failed to save.
	 *
	 *     @type string $path      Path to the image file.
	 *     @type string $file      Name of the image file.
	 *     @type int    $width     Image width.
	 *     @type int    $height    Image height.
	 *     @type string $mime-type The mime type of the image.
	 *     @type int    $filesize  File size of the image.
	 * }
	 */
	public function save( $destfilename = null, $mime_type = null ) {
		$saved = $this->_save( $this->image, $destfilename, $mime_type );

		if ( ! is_wp_error( $saved ) ) {
			$this->file      = $saved['path'];
			$this->mime_type = $saved['mime-type'];
		}

		return $saved;
	}

	/**
	 * @since 3.5.0
	 * @since 6.0.0 The `$filesize` value was added to the returned array.
	 *
	 * @param resource|GdImage $image
	 * @param string|null      $filename
	 * @param string|null      $mime_type
	 * @return array|WP_Error {
	 *     Array on success or WP_Error if the file failed to save.
	 *
	 *     @type string $path      Path to the image file.
	 *     @type string $file      Name of the image file.
	 *     @type int    $width     Image width.
	 *     @type int    $height    Image height.
	 *     @type string $mime-type The mime type of the image.
	 *     @type int    $filesize  File size of the image.
	 * }
	 */
	protected function _save( $image, $filename = null, $mime_type = null ) {
		list( $filename, $extension, $mime_type ) = $this->get_output_format( $filename, $mime_type );

		if ( ! $filename ) {
			$filename = $this->generate_filename( null, null, $extension );
		}

		if ( 'image/gif' === $mime_type ) {
			if ( ! $this->make_image( $filename, 'imagegif', array( $image, $filename ) ) ) {
				return new WP_Error( 'image_save_error', __( 'Image Editor Save Failed' ) );
			}
		} elseif ( 'image/png' === $mime_type ) {
			// Convert from full colors to index colors, like original PNG.
			if ( function_exists( 'imageistruecolor' ) && ! imageistruecolor( $image ) ) {
				imagetruecolortopalette( $image, false, imagecolorstotal( $image ) );
			}

			if ( ! $this->make_image( $filename, 'imagepng', array( $image, $filename ) ) ) {
				return new WP_Error( 'image_save_error', __( 'Image Editor Save Failed' ) );
			}
		} elseif ( 'image/jpeg' === $mime_type ) {
			if ( ! $this->make_image( $filename, 'imagejpeg', array( $image, $filename, $this->get_quality() ) ) ) {
				return new WP_Error( 'image_save_error', __( 'Image Editor Save Failed' ) );
			}
		} elseif ( 'image/webp' == $mime_type ) {
			if ( ! function_exists( 'imagewebp' ) || ! $this->make_image( $filename, 'imagewebp', array( $image, $filename, $this->get_quality() ) ) ) {
				return new WP_Error( 'image_save_error', __( 'Image Editor Save Failed' ) );
			}
		} else {
			return new WP_Error( 'image_save_error', __( 'Image Editor Save Failed' ) );
		}

		// Set correct file permissions.
		$stat  = stat( dirname( $filename ) );
		$perms = $stat['mode'] & 0000666; // Same permissions as parent folder, strip off the executable bits.
		chmod( $filename, $perms );

		return array(
			'path'      => $filename,
			/**
			 * Filters the name of the saved image file.
			 *
			 * @since 2.6.0
			 *
			 * @param string $filename Name of the file.
			 */
			'file'      => wp_basename( apply_filters( 'image_make_intermediate_size', $filename ) ),
			'width'     => $this->size['width'],
			'height'    => $this->size['height'],
			'mime-type' => $mime_type,
			'filesize'  => wp_filesize( $filename ),
		);
	}

	/**
	 * Returns stream of current image.
	 *
	 * @since 3.5.0
	 *
	 * @param string $mime_type The mime type of the image.
	 * @return bool True on success, false on failure.
	 */
	public function stream( $mime_type = null ) {
		list( $filename, $extension, $mime_type ) = $this->get_output_format( null, $mime_type );

		switch ( $mime_type ) {
			case 'image/png':
				header( 'Content-Type: image/png' );
				return imagepng( $this->image );
			case 'image/gif':
				header( 'Content-Type: image/gif' );
				return imagegif( $this->image );
			case 'image/webp':
				if ( function_exists( 'imagewebp' ) ) {
					header( 'Content-Type: image/webp' );
					return imagewebp( $this->image, null, $this->get_quality() );
				}
				// Fall back to the default if webp isn't supported.
			default:
				header( 'Content-Type: image/jpeg' );
				return imagejpeg( $this->image, null, $this->get_quality() );
		}
	}

	/**
	 * Either calls editor's save function or handles file as a stream.
	 *
	 * @since 3.5.0
	 *
	 * @param string   $filename
	 * @param callable $callback
	 * @param array    $arguments
	 * @return bool
	 */
	protected function make_image( $filename, $callback, $arguments ) {
		if ( wp_is_stream( $filename ) ) {
			$arguments[1] = null;
		}

		return parent::make_image( $filename, $callback, $arguments );
	}
}

Directory Contents

Dirs: 25 × Files: 223

Name Size Perms Modified Actions
assets DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
blocks DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
css DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
customize DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
fonts DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
ID3 DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
images DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
IXR DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
js DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
PHPMailer DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
pomo DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
Requests DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
rest-api DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
SimplePie DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
sitemaps DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
Text DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
widgets DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
33.32 KB lrw-r--r-- 2022-08-13 22:44:09
Edit Download
11.67 KB lrw-r--r-- 2022-04-21 11:24:17
Edit Download
18.31 KB lrw-r--r-- 2022-09-20 16:26:10
Edit Download
22.84 KB lrw-r--r-- 2022-11-09 01:08:14
Edit Download
316 B lrw-r--r-- 2021-08-11 09:08:01
Edit Download
10.89 KB lrw-r--r-- 2022-09-20 16:29:12
Edit Download
42.54 KB lrw-r--r-- 2022-11-11 16:31:14
Edit Download
11.24 KB lrw-r--r-- 2022-11-11 16:31:14
Edit Download
49.55 KB lrw-r--r-- 2022-10-16 15:46:15
Edit Download
12.60 KB lrw-r--r-- 2022-06-23 22:57:12
Edit Download
14.99 KB lrw-r--r-- 2022-08-30 15:17:08
Edit Download
5.83 KB lrw-r--r-- 2022-10-10 18:22:11
Edit Download
13.16 KB lrw-r--r-- 2022-10-10 18:22:11
Edit Download
32.55 KB lrw-r--r-- 2022-11-10 16:25:14
Edit Download
39.06 KB lrw-r--r-- 2022-10-24 19:25:13
Edit Download
55.59 KB lrw-r--r-- 2022-08-19 23:06:09
Edit Download
12.40 KB lrw-r--r-- 2022-08-04 14:52:11
Edit Download
529 B lrw-r--r-- 2020-02-06 06:33:11
Edit Download
367 B lrw-r--r-- 2022-06-17 11:20:13
Edit Download
2.48 KB lrw-r--r-- 2020-02-06 06:33:11
Edit Download
42.66 KB lrw-r--r-- 2022-08-31 13:41:08
Edit Download
401 B lrw-r--r-- 2022-06-17 11:20:13
Edit Download
6.54 KB lrw-r--r-- 2021-05-25 18:47:59
Edit Download
664 B lrw-r--r-- 2020-07-21 12:58:02
Edit Download
20.35 KB lrw-r--r-- 2020-05-01 20:12:06
Edit Download
29.72 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
95.78 KB lrw-r--r-- 2021-12-24 18:06:06
Edit Download
457 B lrw-r--r-- 2021-01-26 13:45:57
Edit Download
36.83 KB lrw-r--r-- 2020-05-01 19:07:09
Edit Download
2.42 KB lrw-r--r-- 2022-01-30 19:25:03
Edit Download
8.27 KB lrw-r--r-- 2022-01-30 19:25:03
Edit Download
13.88 KB lrw-r--r-- 2022-01-30 19:25:03
Edit Download
9.16 KB lrw-r--r-- 2022-09-15 12:32:08
Edit Download
2.64 KB lrw-r--r-- 2022-05-01 22:01:10
Edit Download
7.42 KB lrw-r--r-- 2022-01-30 19:25:03
Edit Download
17.08 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
5.14 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
11.97 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
1.32 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
4.64 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
14.85 KB lrw-r--r-- 2022-09-20 15:43:29
Edit Download
5.25 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
7.30 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
5.75 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
5.36 KB lrw-r--r-- 2022-10-11 18:46:13
Edit Download
1.80 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
4.56 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
13.66 KB lrw-r--r-- 2022-10-24 14:32:18
Edit Download
8.16 KB lrw-r--r-- 2022-10-03 14:41:14
Edit Download
46.55 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
9.13 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
25.14 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
197.08 KB lrw-r--r-- 2022-09-12 21:50:14
Edit Download
55.56 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
10.21 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
10.74 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
29.19 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
69.66 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
34.65 KB lrw-r--r-- 2022-10-17 11:49:11
Edit Download
13.73 KB lrw-r--r-- 2022-10-11 09:02:14
Edit Download
2.48 KB lrw-r--r-- 2022-09-28 22:19:10
Edit Download
70.01 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
15.61 KB lrw-r--r-- 2022-09-26 22:43:10
Edit Download
7.16 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
7.68 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
2.53 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
996 B lrw-r--r-- 2022-09-12 15:47:14
Edit Download
15.35 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
7.24 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
12.12 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
6.53 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
3.42 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
5.85 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
1.96 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
4.24 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
2.91 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
16.23 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
38.99 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
16.18 KB lrw-r--r-- 2022-09-19 22:53:10
Edit Download
27.22 KB lrw-r--r-- 2022-09-19 22:53:10
Edit Download
16.66 KB lrw-r--r-- 2022-10-07 19:17:12
Edit Download
6.85 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
5.04 KB lrw-r--r-- 2022-09-26 22:10:16
Edit Download
14.19 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
1.78 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
29.69 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
5.25 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
18.83 KB lrw-r--r-- 2022-10-18 18:16:16
Edit Download
11.89 KB lrw-r--r-- 2022-09-20 14:26:10
Edit Download
17.18 KB lrw-r--r-- 2022-09-26 22:10:16
Edit Download
6.69 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
30.16 KB lrw-r--r-- 2022-11-05 22:01:14
Edit Download
4.94 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
25.18 KB lrw-r--r-- 2022-09-26 22:10:16
Edit Download
6.33 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
145.05 KB lrw-r--r-- 2022-11-10 02:23:11
Edit Download
6.72 KB lrw-r--r-- 2022-10-04 03:59:13
Edit Download
11.13 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
4.20 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
3.38 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
11.16 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
61.60 KB lrw-r--r-- 2022-10-04 23:01:13
Edit Download
2.46 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
8.38 KB lrw-r--r-- 2022-10-24 19:25:13
Edit Download
18.86 KB lrw-r--r-- 2022-09-28 22:19:10
Edit Download
7.28 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
3.32 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
1.76 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
30.22 KB lrw-r--r-- 2022-10-18 18:16:16
Edit Download
7.28 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
10.64 KB lrw-r--r-- 2022-09-28 14:59:10
Edit Download
19.13 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
18.10 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
39.00 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
5.17 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
742 B lrw-r--r-- 2022-09-12 15:47:14
Edit Download
16.43 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
4.75 KB lrw-r--r-- 2022-10-24 18:37:15
Edit Download
1.52 KB lrw-r--r-- 2022-10-11 15:00:12
Edit Download
21.90 KB lrw-r--r-- 2022-11-11 17:58:12
Edit Download
4.22 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
105.00 KB lrw-r--r-- 2022-11-11 17:25:12
Edit Download
53.27 KB lrw-r--r-- 2022-09-20 01:36:09
Edit Download
2.92 KB lrw-r--r-- 2019-01-09 05:04:50
Edit Download
38.89 KB lrw-r--r-- 2022-11-09 02:01:14
Edit Download
2.17 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
22.23 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
12.86 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
3.27 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
17.97 KB lrw-r--r-- 2022-09-12 15:47:14
Edit Download
208.28 KB lrw-r--r-- 2022-10-11 01:46:14
Edit Download
25.39 KB lrw-r--r-- 2022-10-18 16:11:16
Edit Download
107.83 KB lrw-r--r-- 2022-10-31 20:45:10
Edit Download
373 B lrw-r--r-- 2022-09-20 14:17:12
Edit Download
343 B lrw-r--r-- 2022-09-20 14:17:12
Edit Download
338 B lrw-r--r-- 2022-09-20 14:17:12
Edit Download
94.03 KB lrw-r--r-- 2022-10-11 15:45:11
Edit Download
124.33 KB lrw-r--r-- 2022-10-17 11:31:12
Edit Download
14.65 KB lrw-r--r-- 2022-05-08 00:29:14
Edit Download
39.48 KB lrw-r--r-- 2022-10-12 11:53:15
Edit Download
400 B lrw-r--r-- 2022-06-17 11:20:13
Edit Download
10.29 KB lrw-r--r-- 2022-09-20 01:36:09
Edit Download
30.63 KB lrw-r--r-- 2022-10-25 13:45:16
Edit Download
2.17 KB lrw-r--r-- 2021-05-25 08:27:57
Edit Download
131.18 KB lrw-r--r-- 2022-10-17 11:19:11
Edit Download
338 B lrw-r--r-- 2022-06-17 11:20:13
Edit Download
36.58 KB lrw-r--r-- 2022-08-19 22:06:09
Edit Download
4.02 KB lrw-r--r-- 2022-04-29 19:17:11
Edit Download
5.32 KB lrw-r--r-- 2020-02-09 16:55:09
Edit Download
2.98 KB lrw-r--r-- 2021-11-29 09:52:00
Edit Download
2.61 KB lrw-r--r-- 2020-01-29 00:45:18
Edit Download
1.16 KB lrw-r--r-- 2020-01-29 00:45:18
Edit Download
3.97 KB lrw-r--r-- 2020-07-23 19:06:03
Edit Download
3.71 KB lrw-r--r-- 2020-01-29 00:45:18
Edit Download
22.46 KB lrw-r--r-- 2022-06-20 21:46:16
Edit Download
323.54 KB lrw-r--r-- 2022-11-11 15:31:14
Edit Download
253.61 KB lrw-r--r-- 2022-11-10 19:44:13
Edit Download
13.16 KB lrw-r--r-- 2022-10-11 09:02:14
Edit Download
8.37 KB lrw-r--r-- 2022-10-11 09:02:14
Edit Download
163.50 KB lrw-r--r-- 2022-10-11 09:02:14
Edit Download
8.34 KB lrw-r--r-- 2022-10-27 15:58:13
Edit Download
22.60 KB lrw-r--r-- 2022-09-14 13:08:14
Edit Download
6.70 KB lrw-r--r-- 2022-08-11 14:11:08
Edit Download
4.62 KB lrw-r--r-- 2021-02-02 00:10:01
Edit Download
68.10 KB lrw-r--r-- 2022-10-27 13:47:15
Edit Download
58.89 KB lrw-r--r-- 2022-10-24 18:37:15
Edit Download
146.62 KB lrw-r--r-- 2022-09-13 18:05:09
Edit Download
49.78 KB lrw-r--r-- 2022-11-11 02:26:13
Edit Download
162 B lrw-r--r-- 2019-10-08 17:19:04
Edit Download
59.09 KB lrw-r--r-- 2022-10-17 11:26:11
Edit Download
187.05 KB lrw-r--r-- 2022-11-11 02:28:13
Edit Download
61.54 KB lrw-r--r-- 2022-10-13 17:24:15
Edit Download
24.81 KB lrw-r--r-- 2022-10-18 18:16:16
Edit Download
4.78 KB lrw-r--r-- 2022-07-14 13:35:13
Edit Download
6.47 KB lrw-r--r-- 2022-09-20 02:51:09
Edit Download
21.13 KB lrw-r--r-- 2022-09-21 19:48:13
Edit Download
2.59 KB lrw-r--r-- 2021-07-06 20:21:57
Edit Download
88.83 KB lrw-r--r-- 2022-10-18 18:16:16
Edit Download
19.37 KB lrw-r--r-- 2022-05-13 12:21:13
Edit Download
3.71 KB lrw-r--r-- 2022-10-18 18:16:16
Edit Download
4.03 KB lrw-r--r-- 2020-05-16 18:42:12
Edit Download
38.94 KB lrw-r--r-- 2022-08-26 01:03:14
Edit Download
23.35 KB lrw-r--r-- 2022-11-11 02:43:12
Edit Download
41.32 KB lrw-r--r-- 2022-06-15 13:37:10
Edit Download
76.96 KB lrw-r--r-- 2022-10-18 18:16:16
Edit Download
6.12 KB lrw-r--r-- 2020-01-11 18:32:05
Edit Download
106.86 KB lrw-r--r-- 2022-10-17 11:42:11
Edit Download
35.15 KB lrw-r--r-- 2022-08-01 11:15:14
Edit Download
6.91 KB lrw-r--r-- 2020-11-24 21:27:05
Edit Download
64.32 KB lrw-r--r-- 2022-09-21 20:24:12
Edit Download
10.65 KB lrw-r--r-- 2022-03-15 15:22:05
Edit Download
269.08 KB lrw-r--r-- 2022-11-10 02:23:11
Edit Download
36.03 KB lrw-r--r-- 2022-06-21 13:34:13
Edit Download
200 B lrw-r--r-- 2020-11-12 11:17:07
Edit Download
200 B lrw-r--r-- 2020-11-12 11:17:07
Edit Download
93.92 KB lrw-r--r-- 2022-10-14 15:55:11
Edit Download
24.38 KB lrw-r--r-- 2022-09-28 14:47:12
Edit Download
19.04 KB lrw-r--r-- 2022-10-01 03:25:10
Edit Download
5.06 KB lrw-r--r-- 2022-04-06 15:33:03
Edit Download
255 B lrw-r--r-- 2020-11-16 22:52:05
Edit Download
22.44 KB lrw-r--r-- 2022-03-22 16:25:03
Edit Download
133.25 KB lrw-r--r-- 2022-11-10 16:23:14
Edit Download
258 B lrw-r--r-- 2020-02-06 06:33:11
Edit Download
20.93 KB lrw-r--r-- 2022-09-26 22:43:10
Edit Download
3.16 KB lrw-r--r-- 2021-05-15 17:38:05
Edit Download
441 B lrw-r--r-- 2020-11-12 11:17:07
Edit Download
6.25 KB lrw-r--r-- 2022-09-14 12:48:16
Edit Download
168.11 KB lrw-r--r-- 2022-10-10 12:30:16
Edit Download
592 B lrw-r--r-- 2021-12-10 20:30:05
Edit Download
2.94 KB lrw-r--r-- 2020-05-26 09:37:10
Edit Download
22.79 KB lrw-r--r-- 2022-09-21 01:09:10
Edit Download
1.12 KB lrw-r--r-- 2022-09-21 11:43:13
Edit Download
5.35 KB lrw-r--r-- 2022-11-11 16:31:14
Edit Download
9.19 KB lrw-r--r-- 2022-09-14 18:44:09
Edit Download
126.58 KB lrw-r--r-- 2022-10-07 20:48:12
Edit Download
33.85 KB lrw-r--r-- 2022-09-22 11:13:14
Edit Download
165.26 KB lrw-r--r-- 2022-10-11 13:45:13
Edit Download
5.73 KB lrw-r--r-- 2022-04-27 13:47:11
Edit Download
929 B lrw-r--r-- 2022-11-15 18:59:12
Edit Download
67.60 KB lrw-r--r-- 2022-10-17 12:41:11
Edit Download
1.02 KB lrw-r--r-- 2013-12-11 19:49:11
Edit Download
445 B lrw-r--r-- 2022-07-21 22:45:11
Edit Download
647 B lrw-r--r-- 2020-02-06 06:33:11
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).