PHP 8.1.33
Preview: priority-queue.js Size: 13.91 KB
/home/jambtst2015/public_html/www.securiskbrokers.com/wp-includes/js/dist/priority-queue.js

/******/ (() => { // webpackBootstrap
/******/ 	var __webpack_modules__ = ({

/***/ 5033:
/***/ ((module, exports, __webpack_require__) => {

var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;(function (factory) {
	if (true) {
		!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
		__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
		(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
		__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
	} else {}
}(function(){
	'use strict';
	var scheduleStart, throttleDelay, lazytimer, lazyraf;
	var root = typeof window != 'undefined' ?
		window :
		typeof __webpack_require__.g != undefined ?
			__webpack_require__.g :
			this || {};
	var requestAnimationFrame = root.cancelRequestAnimationFrame && root.requestAnimationFrame || setTimeout;
	var cancelRequestAnimationFrame = root.cancelRequestAnimationFrame || clearTimeout;
	var tasks = [];
	var runAttempts = 0;
	var isRunning = false;
	var remainingTime = 7;
	var minThrottle = 35;
	var throttle = 125;
	var index = 0;
	var taskStart = 0;
	var tasklength = 0;
	var IdleDeadline = {
		get didTimeout(){
			return false;
		},
		timeRemaining: function(){
			var timeRemaining = remainingTime - (Date.now() - taskStart);
			return timeRemaining < 0 ? 0 : timeRemaining;
		},
	};
	var setInactive = debounce(function(){
		remainingTime = 22;
		throttle = 66;
		minThrottle = 0;
	});

	function debounce(fn){
		var id, timestamp;
		var wait = 99;
		var check = function(){
			var last = (Date.now()) - timestamp;

			if (last < wait) {
				id = setTimeout(check, wait - last);
			} else {
				id = null;
				fn();
			}
		};
		return function(){
			timestamp = Date.now();
			if(!id){
				id = setTimeout(check, wait);
			}
		};
	}

	function abortRunning(){
		if(isRunning){
			if(lazyraf){
				cancelRequestAnimationFrame(lazyraf);
			}
			if(lazytimer){
				clearTimeout(lazytimer);
			}
			isRunning = false;
		}
	}

	function onInputorMutation(){
		if(throttle != 125){
			remainingTime = 7;
			throttle = 125;
			minThrottle = 35;

			if(isRunning) {
				abortRunning();
				scheduleLazy();
			}
		}
		setInactive();
	}

	function scheduleAfterRaf() {
		lazyraf = null;
		lazytimer = setTimeout(runTasks, 0);
	}

	function scheduleRaf(){
		lazytimer = null;
		requestAnimationFrame(scheduleAfterRaf);
	}

	function scheduleLazy(){

		if(isRunning){return;}
		throttleDelay = throttle - (Date.now() - taskStart);

		scheduleStart = Date.now();

		isRunning = true;

		if(minThrottle && throttleDelay < minThrottle){
			throttleDelay = minThrottle;
		}

		if(throttleDelay > 9){
			lazytimer = setTimeout(scheduleRaf, throttleDelay);
		} else {
			throttleDelay = 0;
			scheduleRaf();
		}
	}

	function runTasks(){
		var task, i, len;
		var timeThreshold = remainingTime > 9 ?
			9 :
			1
		;

		taskStart = Date.now();
		isRunning = false;

		lazytimer = null;

		if(runAttempts > 2 || taskStart - throttleDelay - 50 < scheduleStart){
			for(i = 0, len = tasks.length; i < len && IdleDeadline.timeRemaining() > timeThreshold; i++){
				task = tasks.shift();
				tasklength++;
				if(task){
					task(IdleDeadline);
				}
			}
		}

		if(tasks.length){
			scheduleLazy();
		} else {
			runAttempts = 0;
		}
	}

	function requestIdleCallbackShim(task){
		index++;
		tasks.push(task);
		scheduleLazy();
		return index;
	}

	function cancelIdleCallbackShim(id){
		var index = id - 1 - tasklength;
		if(tasks[index]){
			tasks[index] = null;
		}
	}

	if(!root.requestIdleCallback || !root.cancelIdleCallback){
		root.requestIdleCallback = requestIdleCallbackShim;
		root.cancelIdleCallback = cancelIdleCallbackShim;

		if(root.document && document.addEventListener){
			root.addEventListener('scroll', onInputorMutation, true);
			root.addEventListener('resize', onInputorMutation);

			document.addEventListener('focus', onInputorMutation, true);
			document.addEventListener('mouseover', onInputorMutation, true);
			['click', 'keypress', 'touchstart', 'mousedown'].forEach(function(name){
				document.addEventListener(name, onInputorMutation, {capture: true, passive: true});
			});

			if(root.MutationObserver){
				new MutationObserver( onInputorMutation ).observe( document.documentElement, {childList: true, subtree: true, attributes: true} );
			}
		}
	} else {
		try{
			root.requestIdleCallback(function(){}, {timeout: 0});
		} catch(e){
			(function(rIC){
				var timeRemainingProto, timeRemaining;
				root.requestIdleCallback = function(fn, timeout){
					if(timeout && typeof timeout.timeout == 'number'){
						return rIC(fn, timeout.timeout);
					}
					return rIC(fn);
				};
				if(root.IdleCallbackDeadline && (timeRemainingProto = IdleCallbackDeadline.prototype)){
					timeRemaining = Object.getOwnPropertyDescriptor(timeRemainingProto, 'timeRemaining');
					if(!timeRemaining || !timeRemaining.configurable || !timeRemaining.get){return;}
					Object.defineProperty(timeRemainingProto, 'timeRemaining', {
						value:  function(){
							return timeRemaining.get.call(this);
						},
						enumerable: true,
						configurable: true,
					});
				}
			})(root.requestIdleCallback)
		}
	}

	return {
		request: requestIdleCallbackShim,
		cancel: cancelIdleCallbackShim,
	};
}));


/***/ })

/******/ 	});
/************************************************************************/
/******/ 	// The module cache
/******/ 	var __webpack_module_cache__ = {};
/******/ 	
/******/ 	// The require function
/******/ 	function __webpack_require__(moduleId) {
/******/ 		// Check if module is in cache
/******/ 		var cachedModule = __webpack_module_cache__[moduleId];
/******/ 		if (cachedModule !== undefined) {
/******/ 			return cachedModule.exports;
/******/ 		}
/******/ 		// Create a new module (and put it into the cache)
/******/ 		var module = __webpack_module_cache__[moduleId] = {
/******/ 			// no module.id needed
/******/ 			// no module.loaded needed
/******/ 			exports: {}
/******/ 		};
/******/ 	
/******/ 		// Execute the module function
/******/ 		__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/ 	
/******/ 		// Return the exports of the module
/******/ 		return module.exports;
/******/ 	}
/******/ 	
/************************************************************************/
/******/ 	/* webpack/runtime/define property getters */
/******/ 	(() => {
/******/ 		// define getter functions for harmony exports
/******/ 		__webpack_require__.d = (exports, definition) => {
/******/ 			for(var key in definition) {
/******/ 				if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ 					Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ 				}
/******/ 			}
/******/ 		};
/******/ 	})();
/******/ 	
/******/ 	/* webpack/runtime/global */
/******/ 	(() => {
/******/ 		__webpack_require__.g = (function() {
/******/ 			if (typeof globalThis === 'object') return globalThis;
/******/ 			try {
/******/ 				return this || new Function('return this')();
/******/ 			} catch (e) {
/******/ 				if (typeof window === 'object') return window;
/******/ 			}
/******/ 		})();
/******/ 	})();
/******/ 	
/******/ 	/* webpack/runtime/hasOwnProperty shorthand */
/******/ 	(() => {
/******/ 		__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ 	})();
/******/ 	
/******/ 	/* webpack/runtime/make namespace object */
/******/ 	(() => {
/******/ 		// define __esModule on exports
/******/ 		__webpack_require__.r = (exports) => {
/******/ 			if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ 				Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ 			}
/******/ 			Object.defineProperty(exports, '__esModule', { value: true });
/******/ 		};
/******/ 	})();
/******/ 	
/************************************************************************/
var __webpack_exports__ = {};
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
(() => {
"use strict";
// ESM COMPAT FLAG
__webpack_require__.r(__webpack_exports__);

// EXPORTS
__webpack_require__.d(__webpack_exports__, {
  createQueue: () => (/* binding */ createQueue)
});

// EXTERNAL MODULE: ./node_modules/requestidlecallback/index.js
var requestidlecallback = __webpack_require__(5033);
;// CONCATENATED MODULE: ./node_modules/@wordpress/priority-queue/build-module/request-idle-callback.js
/**
 * External dependencies
 */


/**
 * @typedef {( timeOrDeadline: IdleDeadline | number ) => void} Callback
 */

/**
 * @return {(callback: Callback) => void} RequestIdleCallback
 */
function createRequestIdleCallback() {
  if (typeof window === 'undefined') {
    return callback => {
      setTimeout(() => callback(Date.now()), 0);
    };
  }
  return window.requestIdleCallback;
}
/* harmony default export */ const request_idle_callback = (createRequestIdleCallback());

;// CONCATENATED MODULE: ./node_modules/@wordpress/priority-queue/build-module/index.js
/**
 * Internal dependencies
 */


/**
 * Enqueued callback to invoke once idle time permits.
 *
 * @typedef {()=>void} WPPriorityQueueCallback
 */

/**
 * An object used to associate callbacks in a particular context grouping.
 *
 * @typedef {{}} WPPriorityQueueContext
 */

/**
 * Function to add callback to priority queue.
 *
 * @typedef {(element:WPPriorityQueueContext,item:WPPriorityQueueCallback)=>void} WPPriorityQueueAdd
 */

/**
 * Function to flush callbacks from priority queue.
 *
 * @typedef {(element:WPPriorityQueueContext)=>boolean} WPPriorityQueueFlush
 */

/**
 * Reset the queue.
 *
 * @typedef {()=>void} WPPriorityQueueReset
 */

/**
 * Priority queue instance.
 *
 * @typedef {Object} WPPriorityQueue
 *
 * @property {WPPriorityQueueAdd}   add    Add callback to queue for context.
 * @property {WPPriorityQueueFlush} flush  Flush queue for context.
 * @property {WPPriorityQueueFlush} cancel Clear queue for context.
 * @property {WPPriorityQueueReset} reset  Reset queue.
 */

/**
 * Creates a context-aware queue that only executes
 * the last task of a given context.
 *
 * @example
 *```js
 * import { createQueue } from '@wordpress/priority-queue';
 *
 * const queue = createQueue();
 *
 * // Context objects.
 * const ctx1 = {};
 * const ctx2 = {};
 *
 * // For a given context in the queue, only the last callback is executed.
 * queue.add( ctx1, () => console.log( 'This will be printed first' ) );
 * queue.add( ctx2, () => console.log( 'This won\'t be printed' ) );
 * queue.add( ctx2, () => console.log( 'This will be printed second' ) );
 *```
 *
 * @return {WPPriorityQueue} Queue object with `add`, `flush` and `reset` methods.
 */
const createQueue = () => {
  /** @type {Map<WPPriorityQueueContext, WPPriorityQueueCallback>} */
  const waitingList = new Map();
  let isRunning = false;

  /**
   * Callback to process as much queue as time permits.
   *
   * Map Iteration follows the original insertion order. This means that here
   * we can iterate the queue and know that the first contexts which were
   * added will be run first. On the other hand, if anyone adds a new callback
   * for an existing context it will supplant the previously-set callback for
   * that context because we reassigned that map key's value.
   *
   * In the case that a callback adds a new callback to its own context then
   * the callback it adds will appear at the end of the iteration and will be
   * run only after all other existing contexts have finished executing.
   *
   * @param {IdleDeadline|number} deadline Idle callback deadline object, or
   *                                       animation frame timestamp.
   */
  const runWaitingList = deadline => {
    for (const [nextElement, callback] of waitingList) {
      waitingList.delete(nextElement);
      callback();
      if ('number' === typeof deadline || deadline.timeRemaining() <= 0) {
        break;
      }
    }
    if (waitingList.size === 0) {
      isRunning = false;
      return;
    }
    request_idle_callback(runWaitingList);
  };

  /**
   * Add a callback to the queue for a given context.
   *
   * If errors with undefined callbacks are encountered double check that
   * all of your useSelect calls have the right dependencies set correctly
   * in their second parameter. Missing dependencies can cause unexpected
   * loops and race conditions in the queue.
   *
   * @type {WPPriorityQueueAdd}
   *
   * @param {WPPriorityQueueContext}  element Context object.
   * @param {WPPriorityQueueCallback} item    Callback function.
   */
  const add = (element, item) => {
    waitingList.set(element, item);
    if (!isRunning) {
      isRunning = true;
      request_idle_callback(runWaitingList);
    }
  };

  /**
   * Flushes queue for a given context, returning true if the flush was
   * performed, or false if there is no queue for the given context.
   *
   * @type {WPPriorityQueueFlush}
   *
   * @param {WPPriorityQueueContext} element Context object.
   *
   * @return {boolean} Whether flush was performed.
   */
  const flush = element => {
    const callback = waitingList.get(element);
    if (undefined === callback) {
      return false;
    }
    waitingList.delete(element);
    callback();
    return true;
  };

  /**
   * Clears the queue for a given context, cancelling the callbacks without
   * executing them. Returns `true` if there were scheduled callbacks to cancel,
   * or `false` if there was is no queue for the given context.
   *
   * @type {WPPriorityQueueFlush}
   *
   * @param {WPPriorityQueueContext} element Context object.
   *
   * @return {boolean} Whether any callbacks got cancelled.
   */
  const cancel = element => {
    return waitingList.delete(element);
  };

  /**
   * Reset the queue without running the pending callbacks.
   *
   * @type {WPPriorityQueueReset}
   */
  const reset = () => {
    waitingList.clear();
    isRunning = false;
  };
  return {
    add,
    flush,
    cancel,
    reset
  };
};

})();

(window.wp = window.wp || {}).priorityQueue = __webpack_exports__;
/******/ })()
;

Directory Contents

Dirs: 3 × Files: 122

Name Size Perms Modified Actions
- drwxr-xr-x 2024-12-09 13:54:39
Edit Download
- drwxr-xr-x 2024-12-09 13:54:38
Edit Download
vendor DIR
- drwxr-xr-x 2024-12-09 13:54:38
Edit Download
8.53 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
2.30 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
23.00 KB lrw-r--r-- 2024-10-01 05:18:28
Edit Download
5.39 KB lrw-r--r-- 2024-05-23 23:39:28
Edit Download
22.97 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
5.41 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
15.61 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
5.48 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
4.51 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
1.08 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
80.13 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
20.37 KB lrw-r--r-- 2024-10-07 02:45:30
Edit Download
2.53 MB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
822.62 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
2.06 MB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
823.01 KB lrw-r--r-- 2024-11-05 00:46:30
Edit Download
14.87 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
2.34 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
553.47 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
169.02 KB lrw-r--r-- 2024-10-21 15:23:30
Edit Download
179.91 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
48.33 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
2.24 MB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
689.17 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
198.51 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
36.24 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
25.00 KB lrw-r--r-- 2024-09-23 10:52:26
Edit Download
9.20 KB lrw-r--r-- 2024-09-23 10:52:26
Edit Download
260.07 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
63.13 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
97.16 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
34.32 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
7.14 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
1.44 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
154.68 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
26.46 KB lrw-r--r-- 2024-06-18 17:19:30
Edit Download
798.19 KB lrw-r--r-- 2024-02-15 21:53:16
Edit Download
765.07 KB lrw-r--r-- 2024-02-15 21:53:16
Edit Download
4.63 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
684 B lrw-r--r-- 2024-01-31 17:59:56
Edit Download
2.41 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
457 B lrw-r--r-- 2024-01-31 17:59:56
Edit Download
61.52 KB lrw-r--r-- 2024-09-30 09:11:32
Edit Download
12.23 KB lrw-r--r-- 2024-09-30 09:11:32
Edit Download
123.61 KB lrw-r--r-- 2025-02-07 22:31:24
Edit Download
42.03 KB lrw-r--r-- 2025-02-07 22:31:24
Edit Download
1.53 MB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
608.94 KB lrw-r--r-- 2024-11-01 02:15:30
Edit Download
175.48 KB lrw-r--r-- 2024-11-01 02:15:30
Edit Download
58.00 KB lrw-r--r-- 2024-11-01 02:15:30
Edit Download
1.01 MB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
337.37 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
66.99 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
11.70 KB lrw-r--r-- 2024-02-15 21:53:16
Edit Download
5.90 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
1000 B lrw-r--r-- 2024-01-31 17:59:56
Edit Download
71.98 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
22.33 KB lrw-r--r-- 2024-11-20 21:00:32
Edit Download
68.36 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
22.39 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
20.43 KB lrw-r--r-- 2024-09-30 09:11:32
Edit Download
4.66 KB lrw-r--r-- 2024-09-30 09:11:32
Edit Download
3.62 KB lrw-r--r-- 2024-05-23 23:39:28
Edit Download
788 B lrw-r--r-- 2024-01-31 17:59:56
Edit Download
48.74 KB lrw-r--r-- 2024-02-15 21:53:16
Edit Download
8.93 KB lrw-r--r-- 2024-02-15 21:53:16
Edit Download
4.25 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
1018 B lrw-r--r-- 2024-01-31 17:59:56
Edit Download
24.21 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
2.95 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
13.77 KB lrw-r--r-- 2024-02-09 23:22:22
Edit Download
2.58 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
31.49 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
4.80 KB lrw-r--r-- 2024-10-01 05:18:28
Edit Download
25.47 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
8.05 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
21.64 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
2.02 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
13.29 KB lrw-r--r-- 2024-10-01 05:18:28
Edit Download
3.43 KB lrw-r--r-- 2024-10-01 05:18:28
Edit Download
63.02 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
20.89 KB lrw-r--r-- 2024-11-20 21:00:32
Edit Download
17.72 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
4.05 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
29.58 KB lrw-r--r-- 2024-05-23 23:39:28
Edit Download
5.49 KB lrw-r--r-- 2024-05-23 23:39:28
Edit Download
25.71 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
6.92 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
6.73 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
1.62 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
13.91 KB lrw-r--r-- 2024-02-15 21:53:16
Edit Download
3.30 KB lrw-r--r-- 2024-02-15 21:53:16
Edit Download
8.68 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
2.74 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
23.42 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
8.69 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
20.39 KB lrw-r--r-- 2024-10-01 05:18:28
Edit Download
5.97 KB lrw-r--r-- 2024-10-01 05:18:28
Edit Download
115.42 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
29.11 KB lrw-r--r-- 2024-09-30 09:11:32
Edit Download
26.29 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
4.29 KB lrw-r--r-- 2024-06-18 17:19:30
Edit Download
14.61 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
4.28 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
14.92 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
2.83 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
39.52 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
5.91 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
5.91 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
1.24 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
8.22 KB lrw-r--r-- 2024-02-15 21:53:16
Edit Download
1.64 KB lrw-r--r-- 2024-02-15 21:53:16
Edit Download
34.24 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
8.18 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
10.45 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
1.82 KB lrw-r--r-- 2024-05-31 22:59:00
Edit Download
2.43 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
311 B lrw-r--r-- 2024-01-31 17:59:56
Edit Download
53.34 KB lrw-r--r-- 2025-02-04 22:28:34
Edit Download
19.68 KB lrw-r--r-- 2024-09-20 05:55:36
Edit Download
14.63 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download
2.42 KB lrw-r--r-- 2024-01-31 17:59:56
Edit Download

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