Compare commits
	
		
			7 Commits
		
	
	
		
			fvtt-waste
			...
			fvtt-waste
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 217df7ee10 | |||
| 9990545568 | |||
| d2da332411 | |||
| 028e8bddac | |||
| 5c889a5153 | |||
| 68689add33 | |||
| 4ed2bcd2ee | 
@@ -2,7 +2,7 @@
 | 
			
		||||
 | 
			
		||||
## EN
 | 
			
		||||
 | 
			
		||||
Unofficial system for Wasteland (French version from Titam France).
 | 
			
		||||
Unofficial system for Wasteland (French RPG from Titam France).
 | 
			
		||||
 | 
			
		||||
Books are mandatory to play and are available at : http://www.titam-france.fr
 | 
			
		||||
 | 
			
		||||
@@ -16,7 +16,7 @@ Les livres du jeu sont nécessaires pour jouer, et sont disponibles ici : http:/
 | 
			
		||||
 | 
			
		||||
# Credits 
 | 
			
		||||
 | 
			
		||||
Wasteland, le jeu de rôle de Sword & Sorcery, is a property of Titam France/Sombres Projets.
 | 
			
		||||
Wasteland is a property of Titam France/Sombres Projets.
 | 
			
		||||
 | 
			
		||||
# Developmement 
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								assets/icons/don.webp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								assets/icons/don.webp
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 40 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/hubris.webp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								assets/icons/hubris.webp
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 40 KiB  | 
@@ -43,17 +43,24 @@ export class WastelandActorSheet extends ActorSheet {
 | 
			
		||||
      armes: duplicate(this.actor.getWeapons()),
 | 
			
		||||
      protections: duplicate(this.actor.getArmors()),
 | 
			
		||||
      pouvoirs:duplicate(this.actor.getPouvoirs()),
 | 
			
		||||
      dons: duplicate(this.actor.getDons()),
 | 
			
		||||
      hubrises: duplicate(this.actor.getHubris()),
 | 
			
		||||
      tours:duplicate(this.actor.getTours()),
 | 
			
		||||
      artifex: duplicate(this.actor.getArtifex()),
 | 
			
		||||
      charmes:duplicate(this.actor.getCharmes()),
 | 
			
		||||
      peuple: duplicate(this.actor.getPeuple() || {}),
 | 
			
		||||
      origine: duplicate(this.actor.getOrigine() || {}),
 | 
			
		||||
      heritage: duplicate(this.actor.getHeritage() || {}),
 | 
			
		||||
      metier: duplicate(this.actor.getMetier()  || {}),
 | 
			
		||||
      combat: this.actor.getCombatValues(),      
 | 
			
		||||
      config: duplicate(game.system.wasteland.config),
 | 
			
		||||
      capacites: duplicate(this.actor.getCapacites()),
 | 
			
		||||
      equipements: duplicate(this.actor.getEquipments()),
 | 
			
		||||
      monnaies: duplicate(this.actor.getMonnaies()),
 | 
			
		||||
      mutations: duplicate(this.actor.getMutations()),
 | 
			
		||||
      description: await TextEditor.enrichHTML(this.object.system.biodata.description, {async: true}),
 | 
			
		||||
      comportement: await TextEditor.enrichHTML(this.object.system.biodata.comportement, {async: true}),
 | 
			
		||||
      habitat: await TextEditor.enrichHTML(this.object.system.biodata.habitat, {async: true}),
 | 
			
		||||
      options: this.options,
 | 
			
		||||
      owner: this.document.isOwner,
 | 
			
		||||
      editScore: this.options.editScore,
 | 
			
		||||
 
 | 
			
		||||
@@ -37,11 +37,12 @@ export class WastelandActor extends Actor {
 | 
			
		||||
      return actor;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    const skills = await WastelandUtility.loadCompendium("fvtt-wasteland.skills")
 | 
			
		||||
    if (data.type == 'personnage') {
 | 
			
		||||
      const skills = await WastelandUtility.loadCompendium("fvtt-wasteland.skills")
 | 
			
		||||
      data.items = skills.map(i => i.toObject())
 | 
			
		||||
    }
 | 
			
		||||
    if (data.type == 'pnj') {
 | 
			
		||||
    if (data.type == 'creature') {
 | 
			
		||||
      data.items = skills.filter(i=>i.name.toLowerCase().includes("mêlée")).map(i => i.toObject())
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return super.create(data, options);
 | 
			
		||||
@@ -119,18 +120,33 @@ export class WastelandActor extends Actor {
 | 
			
		||||
  getArtifex() {
 | 
			
		||||
    return this.getItemSorted(["artifex"]) 
 | 
			
		||||
  }
 | 
			
		||||
  getCapacites() {
 | 
			
		||||
    return this.getItemSorted(["capacite"]) 
 | 
			
		||||
  }
 | 
			
		||||
  getPouvoirs() {
 | 
			
		||||
    return this.getItemSorted(["pouvoir"])
 | 
			
		||||
  }
 | 
			
		||||
  getDons() {
 | 
			
		||||
    return this.getItemSorted(["don"])
 | 
			
		||||
  }
 | 
			
		||||
  getHubris() {
 | 
			
		||||
    return this.getItemSorted(["hubris"])
 | 
			
		||||
  }
 | 
			
		||||
  getEquipments() {
 | 
			
		||||
    return this.getItemSorted(["equipement"])
 | 
			
		||||
  }
 | 
			
		||||
  getMonnaies() {
 | 
			
		||||
    return this.getItemSorted(["monnaie"])
 | 
			
		||||
  }
 | 
			
		||||
  getMutations() {
 | 
			
		||||
    return this.getItemSorted(["mutation"])
 | 
			
		||||
  }
 | 
			
		||||
  getArmors() {
 | 
			
		||||
    return this.getItemSorted(["protection"])
 | 
			
		||||
  }
 | 
			
		||||
  getPeuple() {
 | 
			
		||||
    return this.items.find(item => item.type == "peuple")
 | 
			
		||||
  }
 | 
			
		||||
  getOrigine() {
 | 
			
		||||
    return this.items.find(item => item.type == "origine")
 | 
			
		||||
  }
 | 
			
		||||
@@ -206,7 +222,7 @@ export class WastelandActor extends Actor {
 | 
			
		||||
      if (this.system.sante.base != newSante) {
 | 
			
		||||
        this.update({ 'system.sante.base': newSante })
 | 
			
		||||
      }
 | 
			
		||||
      let newPsyche = (this.system.attributs.cla.value + this.system.attributs.tre.value) * this.system.biodata.psychemultiplier + 5
 | 
			
		||||
      let newPsyche = ((this.system.attributs.cla.value + this.system.attributs.tre.value) * 2) + 5
 | 
			
		||||
      if (this.system.psyche.fullmax != newPsyche) {
 | 
			
		||||
        this.update({ 'system.psyche.fullmax': newPsyche })
 | 
			
		||||
      }
 | 
			
		||||
 
 | 
			
		||||
@@ -14,6 +14,10 @@ export const WASTELAND_CONFIG = {
 | 
			
		||||
    "nuit": "Chemin des Nuits", 
 | 
			
		||||
    "oiseaux": "Chemin des Oiseaux"
 | 
			
		||||
  },
 | 
			
		||||
  hubrisType: {
 | 
			
		||||
    "mental": "Mental",
 | 
			
		||||
    "physique": "Physique",
 | 
			
		||||
  },
 | 
			
		||||
  charmetype: {
 | 
			
		||||
    tour: "Tour",
 | 
			
		||||
    charme: "Charme",
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										26
									
								
								modules/wasteland-creature-sheet.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								modules/wasteland-creature-sheet.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,26 @@
 | 
			
		||||
/**
 | 
			
		||||
 * Extend the basic ActorSheet with some very simple modifications
 | 
			
		||||
 * @extends {ActorSheet}
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
import { WastelandUtility } from "./wasteland-utility.js";
 | 
			
		||||
import { WastelandActorSheet } from "./wasteland-actor-sheet.js";
 | 
			
		||||
 | 
			
		||||
/* -------------------------------------------- */
 | 
			
		||||
export class WastelandCreatureSheet extends WastelandActorSheet {
 | 
			
		||||
 | 
			
		||||
  /** @override */
 | 
			
		||||
  static get defaultOptions() {
 | 
			
		||||
 | 
			
		||||
    return mergeObject(super.defaultOptions, {
 | 
			
		||||
      classes: ["fvtt-wasteland", "sheet", "creature"],
 | 
			
		||||
      template: "systems/fvtt-wasteland/templates/creature-sheet.html",
 | 
			
		||||
      width: 640,
 | 
			
		||||
      height: 720,
 | 
			
		||||
      tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "stats" }],
 | 
			
		||||
      dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }],
 | 
			
		||||
      editScore: false
 | 
			
		||||
    });
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
}
 | 
			
		||||
@@ -16,6 +16,9 @@ export const defaultItemImg = {
 | 
			
		||||
    artifex: "systems/fvtt-wasteland/assets/icons/artifact.webp",  
 | 
			
		||||
    heritage: "systems/fvtt-wasteland/assets/icons/legacy.webp",  
 | 
			
		||||
    charme: "systems/fvtt-wasteland/assets/icons/charm.webp",  
 | 
			
		||||
    peuple: "systems/fvtt-wasteland/assets/icons/people.webp",  
 | 
			
		||||
    don: "systems/fvtt-wasteland/assets/icons/don.webp",
 | 
			
		||||
    hubris: "systems/fvtt-wasteland/assets/icons/hubris.webp",
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 
 | 
			
		||||
@@ -11,7 +11,7 @@
 | 
			
		||||
import { WastelandActor } from "./wasteland-actor.js";
 | 
			
		||||
import { WastelandItemSheet } from "./wasteland-item-sheet.js";
 | 
			
		||||
import { WastelandActorSheet } from "./wasteland-actor-sheet.js";
 | 
			
		||||
//import { WastelandNPCSheet } from "./wasteland-npc-sheet.js";
 | 
			
		||||
import { WastelandCreatureSheet } from "./wasteland-creature-sheet.js";
 | 
			
		||||
import { WastelandUtility } from "./wasteland-utility.js";
 | 
			
		||||
import { WastelandCombat } from "./wasteland-combat.js";
 | 
			
		||||
import { WastelandItem } from "./wasteland-item.js";
 | 
			
		||||
@@ -54,7 +54,7 @@ Hooks.once("init", async function () {
 | 
			
		||||
  // Register sheet application classes
 | 
			
		||||
  Actors.unregisterSheet("core", ActorSheet);
 | 
			
		||||
  Actors.registerSheet("fvtt-wasteland", WastelandActorSheet, { types: ["personnage"], makeDefault: true })
 | 
			
		||||
  //Actors.registerSheet("fvtt-wasteland", WastelandNPCSheet, { types: ["npc"], makeDefault: false });
 | 
			
		||||
  Actors.registerSheet("fvtt-wasteland", WastelandCreatureSheet, { types: ["creature"], makeDefault: false });
 | 
			
		||||
 | 
			
		||||
  Items.unregisterSheet("core", ItemSheet);
 | 
			
		||||
  Items.registerSheet("fvtt-wasteland", WastelandItemSheet, { makeDefault: true })
 | 
			
		||||
@@ -72,7 +72,7 @@ function welcomeMessage() {
 | 
			
		||||
    <strong>Bienvenue dans les Wasteland !</strong>
 | 
			
		||||
    <p>Les livres de Wasteland sont nécessaires pour jouer : https://www.titam-france.fr</p>
 | 
			
		||||
    <p>Wasteland est jeu de rôle publié par Titam France/Sombres projets, tout les droits leur appartiennent.</p>
 | 
			
		||||
    <p>Système développé par LeRatierBretonnien, support sur le <a href="https://discord.gg/pPSDNJk">Discord FR de Foundry</a>.</p>
 | 
			
		||||
    <p>Système développé par LeRatierBretonnien, avec le support de Prêtre. Plus d'infos et aides sur le <a href="https://discord.gg/pPSDNJk">Discord FR de Foundry</a>.</p>
 | 
			
		||||
    ` });
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -102,6 +102,17 @@ function registerUsageCount( registerKey ) {
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* -------------------------------------------- */
 | 
			
		||||
async function importDefaultScene() {
 | 
			
		||||
  let exists = game.scenes.find(j => j.name == "Accueil");
 | 
			
		||||
  if (!exists) {
 | 
			
		||||
    const scenes = await WastelandUtility.loadCompendium("fvtt-wasteland.scenes")
 | 
			
		||||
    let newDocuments = scenes.filter(i => i.name == "Accueil");
 | 
			
		||||
    await game.scenes.documentClass.create(newDocuments);
 | 
			
		||||
    game.scenes.find(i => i.name == "Accueil").activate();
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* -------------------------------------------- */
 | 
			
		||||
/*  Foundry VTT Initialization                  */
 | 
			
		||||
/* -------------------------------------------- */
 | 
			
		||||
@@ -119,6 +130,9 @@ Hooks.once("ready", function () {
 | 
			
		||||
  
 | 
			
		||||
  registerUsageCount('fvtt-wasteland')
 | 
			
		||||
  welcomeMessage();
 | 
			
		||||
 | 
			
		||||
  importDefaultScene();
 | 
			
		||||
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
/* -------------------------------------------- */
 | 
			
		||||
 
 | 
			
		||||
@@ -4,16 +4,16 @@ import { WastelandCommands } from "./wasteland-commands.js";
 | 
			
		||||
 | 
			
		||||
/* -------------------------------------------- */
 | 
			
		||||
const __contrecouptCharme = {
 | 
			
		||||
  1 : {name: "Effet chromatique", description: "" }, 
 | 
			
		||||
  3 : {name: "Enivrement Kobold", description: "" },
 | 
			
		||||
  5 : {name: "Mutisme superstitieux", description: "" },
 | 
			
		||||
  7 : {name: "Agité!", description: "" },
 | 
			
		||||
  9 : {name: "Somnolence", description: "" },
 | 
			
		||||
  11 : {name: "Manie incontrôlable", description: "" },
 | 
			
		||||
  13 : {name: "Malédiction des Ternes", description: "" },
 | 
			
		||||
  15 : {name: "La petite Mort", description: "" },
 | 
			
		||||
  17 : {name: "Angoisse cauchemardesque", description: "" },
 | 
			
		||||
  19 : {name: "Anémie Kobold", description: "" }
 | 
			
		||||
  1 : {name: "Effet chromatique", description: "le corps du kobold prend des teintes aussi étranges que voyantes. L'effet s’estompe progressivement et 24 heures plus tard, le kobold retrouve ses couleurs d’origine." }, 
 | 
			
		||||
  3 : {name: "Enivrement Kobold", description: "très excité par son premier tour, le kobold doit immédiatement faire un autre tour, pour lequel il emploiera un dé plus gros." },
 | 
			
		||||
  5 : {name: "Mutisme superstitieux", description: "le kobold ne doit plus parler» pendant les prochaines 24 heures. S'il le fait malgré tout, les effets de son tour s’arrêtent." },
 | 
			
		||||
  7 : {name: "Agité!", description: "le kobold ne tient plus en place. Il ne peut se reposer pendant les prochaines 12 heures. Dès. que 12 heures se sont écoulées, il s'effondre comme une masse et dort 12 heures d'affilée d’un sommeil enchanté dont rien ne pourra le réveiller." },
 | 
			
		||||
  9 : {name: "Somnolence", description: "le kobold devient somnolent. Il n’arrive pas à se concentrer même sur une tâche simple, bäille sans arrêt, traîne les pieds et n’agit plus que de mauvaise grâce. Cela dure jusqu’à ce qu'il ait dormi au moins 12 heures." },
 | 
			
		||||
  11 : {name: "Manie incontrôlable", description: "le kobold est pris d’une manie incontrôlable. Dès qu'il voit un chapeau rouge, il doit suivre son porteur. Il ne mangera que si son voisin de gauche mange aussi, etc. Cela dure pendant une jour- née puis l’effet s’inverse pendant une heure : il ne suivra jamais un chapeau rouge, ne mangera jamais si son voi- sin de gauche mange, etc. Le contrecoup prend alors fin." },
 | 
			
		||||
  13 : {name: "Malédiction des Ternes", description: "le kobold perd cette qualité mystérieuse qui fait que les kobolds sont des kobolds et devient tout. Terne. Il perd 1d20 point(s) de Bonne Aventure (s’il doit en perdre plus qu'il n’en a, il tombe simplement à 0). Ces points perdus pourront cependant être regagnés normalement." },
 | 
			
		||||
  15 : {name: "La petite Mort", description: "le kobold s'endort pour 1420 heures. Rien ni personne ne pourra le tirer de ce sommeil enchanté avant que ce contrecoup ne prenne fin." },
 | 
			
		||||
  17 : {name: "Angoisse cauchemardesque", description: "le kobold a une brève vision de pure horreur. Il perd 1420 points de Psyché {s'il doit en perdre plus qu'il n’en a, il tombe à 0)." },
 | 
			
		||||
  19 : {name: "Anémie Kobold", description: "le kobold se met à saigner du nez, des oreilles et même d’autres endroits. Il perd 1420 point(s) de Santé." }
 | 
			
		||||
} 
 | 
			
		||||
 | 
			
		||||
/* -------------------------------------------- */
 | 
			
		||||
@@ -153,7 +153,8 @@ export class WastelandUtility {
 | 
			
		||||
    const templatePaths = [
 | 
			
		||||
      'systems/fvtt-wasteland/templates/editor-notes-gm.html',
 | 
			
		||||
      'systems/fvtt-wasteland/templates/partial-item-description.html',
 | 
			
		||||
      'systems/fvtt-wasteland/templates/partial-list-niveau.html'
 | 
			
		||||
      'systems/fvtt-wasteland/templates/partial-list-niveau.html',
 | 
			
		||||
      'systems/fvtt-wasteland/templates/partial-list-niveau-creature.html'
 | 
			
		||||
    ]
 | 
			
		||||
    return loadTemplates(templatePaths);
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/armes/000140.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/armes/000140.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1 +1 @@
 | 
			
		||||
MANIFEST-000070
 | 
			
		||||
MANIFEST-000141
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,8 @@
 | 
			
		||||
2023/11/30-21:31:54.571664 7ff1ecbfe6c0 Recovering log #68
 | 
			
		||||
2023/11/30-21:31:54.581984 7ff1ecbfe6c0 Delete type=3 #66
 | 
			
		||||
2023/11/30-21:31:54.582070 7ff1ecbfe6c0 Delete type=0 #68
 | 
			
		||||
2023/11/30-21:35:03.519881 7fef56ffd6c0 Level-0 table #73: started
 | 
			
		||||
2023/11/30-21:35:03.520012 7fef56ffd6c0 Level-0 table #73: 0 bytes OK
 | 
			
		||||
2023/11/30-21:35:03.554022 7fef56ffd6c0 Delete type=0 #71
 | 
			
		||||
2023/11/30-21:35:03.651883 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:35:03.651960 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:58:00.210165 7fc5b37fe6c0 Recovering log #138
 | 
			
		||||
2024/01/06-13:58:00.221073 7fc5b37fe6c0 Delete type=3 #136
 | 
			
		||||
2024/01/06-13:58:00.221134 7fc5b37fe6c0 Delete type=0 #138
 | 
			
		||||
2024/01/06-14:00:23.177928 7fc331fef6c0 Level-0 table #144: started
 | 
			
		||||
2024/01/06-14:00:23.177953 7fc331fef6c0 Level-0 table #144: 0 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.184274 7fc331fef6c0 Delete type=0 #142
 | 
			
		||||
2024/01/06-14:00:23.184465 7fc331fef6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-14:00:23.184499 7fc331fef6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,15 @@
 | 
			
		||||
2023/11/30-21:15:46.391741 7fef57fff6c0 Recovering log #64
 | 
			
		||||
2023/11/30-21:15:46.442719 7fef57fff6c0 Delete type=3 #62
 | 
			
		||||
2023/11/30-21:15:46.442861 7fef57fff6c0 Delete type=0 #64
 | 
			
		||||
2023/11/30-21:27:11.875054 7fef56ffd6c0 Level-0 table #69: started
 | 
			
		||||
2023/11/30-21:27:11.875091 7fef56ffd6c0 Level-0 table #69: 0 bytes OK
 | 
			
		||||
2023/11/30-21:27:11.883212 7fef56ffd6c0 Delete type=0 #67
 | 
			
		||||
2023/11/30-21:27:11.905474 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:27:11.905597 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:46:03.522777 7fc5b2ffd6c0 Recovering log #134
 | 
			
		||||
2024/01/06-13:46:03.533446 7fc5b2ffd6c0 Delete type=3 #132
 | 
			
		||||
2024/01/06-13:46:03.533501 7fc5b2ffd6c0 Delete type=0 #134
 | 
			
		||||
2024/01/06-13:55:37.149628 7fc331fef6c0 Level-0 table #139: started
 | 
			
		||||
2024/01/06-13:55:37.153271 7fc331fef6c0 Level-0 table #139: 8739 bytes OK
 | 
			
		||||
2024/01/06-13:55:37.161272 7fc331fef6c0 Delete type=0 #137
 | 
			
		||||
2024/01/06-13:55:37.170917 7fc331fef6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:55:37.181917 7fc331fef6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at '!items!wv5EiePmPTpqFutt' @ 52 : 1
 | 
			
		||||
2024/01/06-13:55:37.181924 7fc331fef6c0 Compacting 1@1 + 1@2 files
 | 
			
		||||
2024/01/06-13:55:37.185278 7fc331fef6c0 Generated table #140@1: 40 keys, 8739 bytes
 | 
			
		||||
2024/01/06-13:55:37.185302 7fc331fef6c0 Compacted 1@1 + 1@2 files => 8739 bytes
 | 
			
		||||
2024/01/06-13:55:37.192928 7fc331fef6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
 | 
			
		||||
2024/01/06-13:55:37.193052 7fc331fef6c0 Delete type=2 #5
 | 
			
		||||
2024/01/06-13:55:37.193212 7fc331fef6c0 Delete type=2 #139
 | 
			
		||||
2024/01/06-13:55:37.213657 7fc331fef6c0 Manual compaction at level-1 from '!items!wv5EiePmPTpqFutt' @ 52 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/armes/MANIFEST-000141
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/armes/MANIFEST-000141
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/artifex/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/artifex/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								packs/artifex/CURRENT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								packs/artifex/CURRENT
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
MANIFEST-000002
 | 
			
		||||
							
								
								
									
										5
									
								
								packs/artifex/LOG
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								packs/artifex/LOG
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
2024/01/06-13:58:00.263052 7fc5b3fff6c0 Delete type=3 #1
 | 
			
		||||
2024/01/06-14:00:23.201502 7fc331fef6c0 Level-0 table #5: started
 | 
			
		||||
2024/01/06-14:00:23.205346 7fc331fef6c0 Level-0 table #5: 1279 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.211923 7fc331fef6c0 Delete type=0 #3
 | 
			
		||||
2024/01/06-14:00:23.218451 7fc331fef6c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								packs/artifex/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/artifex/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/bestiaire/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/bestiaire/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								packs/bestiaire/CURRENT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								packs/bestiaire/CURRENT
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
MANIFEST-000014
 | 
			
		||||
							
								
								
									
										8
									
								
								packs/bestiaire/LOG
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								packs/bestiaire/LOG
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,8 @@
 | 
			
		||||
2024/01/06-13:58:00.102272 7fc5b37fe6c0 Recovering log #12
 | 
			
		||||
2024/01/06-13:58:00.113016 7fc5b37fe6c0 Delete type=3 #10
 | 
			
		||||
2024/01/06-13:58:00.113110 7fc5b37fe6c0 Delete type=0 #12
 | 
			
		||||
2024/01/06-14:00:23.096102 7fc331fef6c0 Level-0 table #17: started
 | 
			
		||||
2024/01/06-14:00:23.096153 7fc331fef6c0 Level-0 table #17: 0 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.102626 7fc331fef6c0 Delete type=0 #15
 | 
			
		||||
2024/01/06-14:00:23.124386 7fc331fef6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-14:00:23.124495 7fc331fef6c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
 | 
			
		||||
							
								
								
									
										8
									
								
								packs/bestiaire/LOG.old
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								packs/bestiaire/LOG.old
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,8 @@
 | 
			
		||||
2024/01/06-13:46:03.424425 7fc5b3fff6c0 Recovering log #8
 | 
			
		||||
2024/01/06-13:46:03.434325 7fc5b3fff6c0 Delete type=3 #6
 | 
			
		||||
2024/01/06-13:46:03.434408 7fc5b3fff6c0 Delete type=0 #8
 | 
			
		||||
2024/01/06-13:55:37.015836 7fc331fef6c0 Level-0 table #13: started
 | 
			
		||||
2024/01/06-13:55:37.015860 7fc331fef6c0 Level-0 table #13: 0 bytes OK
 | 
			
		||||
2024/01/06-13:55:37.022948 7fc331fef6c0 Delete type=0 #11
 | 
			
		||||
2024/01/06-13:55:37.043945 7fc331fef6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:55:37.055005 7fc331fef6c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								packs/bestiaire/MANIFEST-000014
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/bestiaire/MANIFEST-000014
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/capacreature/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/capacreature/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								packs/capacreature/CURRENT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								packs/capacreature/CURRENT
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
MANIFEST-000002
 | 
			
		||||
							
								
								
									
										5
									
								
								packs/capacreature/LOG
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								packs/capacreature/LOG
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
2024/01/06-13:58:00.279635 7fc5b37fe6c0 Delete type=3 #1
 | 
			
		||||
2024/01/06-14:00:23.191823 7fc331fef6c0 Level-0 table #5: started
 | 
			
		||||
2024/01/06-14:00:23.195043 7fc331fef6c0 Level-0 table #5: 855 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.201385 7fc331fef6c0 Delete type=0 #3
 | 
			
		||||
2024/01/06-14:00:23.218440 7fc331fef6c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								packs/capacreature/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/capacreature/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/equipement/000094.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/equipement/000094.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1 +1 @@
 | 
			
		||||
MANIFEST-000023
 | 
			
		||||
MANIFEST-000095
 | 
			
		||||
 
 | 
			
		||||
@@ -1,15 +1,8 @@
 | 
			
		||||
2023/11/30-21:31:54.598908 7fef577fe6c0 Recovering log #21
 | 
			
		||||
2023/11/30-21:31:54.609937 7fef577fe6c0 Delete type=3 #19
 | 
			
		||||
2023/11/30-21:31:54.610437 7fef577fe6c0 Delete type=0 #21
 | 
			
		||||
2023/11/30-21:35:03.596423 7fef56ffd6c0 Level-0 table #26: started
 | 
			
		||||
2023/11/30-21:35:03.614395 7fef56ffd6c0 Level-0 table #26: 884 bytes OK
 | 
			
		||||
2023/11/30-21:35:03.651671 7fef56ffd6c0 Delete type=0 #24
 | 
			
		||||
2023/11/30-21:35:03.651919 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:35:03.652025 7fef56ffd6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at '!items!zjMDuxKHKJ4vE5UV' @ 164 : 1
 | 
			
		||||
2023/11/30-21:35:03.652048 7fef56ffd6c0 Compacting 1@1 + 1@2 files
 | 
			
		||||
2023/11/30-21:35:03.675829 7fef56ffd6c0 Generated table #27@1: 70 keys, 11954 bytes
 | 
			
		||||
2023/11/30-21:35:03.675880 7fef56ffd6c0 Compacted 1@1 + 1@2 files => 11954 bytes
 | 
			
		||||
2023/11/30-21:35:03.709827 7fef56ffd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
 | 
			
		||||
2023/11/30-21:35:03.709992 7fef56ffd6c0 Delete type=2 #18
 | 
			
		||||
2023/11/30-21:35:03.710206 7fef56ffd6c0 Delete type=2 #26
 | 
			
		||||
2023/11/30-21:35:03.851003 7fef56ffd6c0 Manual compaction at level-1 from '!items!zjMDuxKHKJ4vE5UV' @ 164 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:58:00.236620 7fc5b2ffd6c0 Recovering log #92
 | 
			
		||||
2024/01/06-13:58:00.246702 7fc5b2ffd6c0 Delete type=3 #90
 | 
			
		||||
2024/01/06-13:58:00.246758 7fc5b2ffd6c0 Delete type=0 #92
 | 
			
		||||
2024/01/06-14:00:23.212029 7fc331fef6c0 Level-0 table #98: started
 | 
			
		||||
2024/01/06-14:00:23.212053 7fc331fef6c0 Level-0 table #98: 0 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.218305 7fc331fef6c0 Delete type=0 #96
 | 
			
		||||
2024/01/06-14:00:23.218466 7fc331fef6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-14:00:23.218488 7fc331fef6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,15 @@
 | 
			
		||||
2023/11/30-21:15:46.497302 7fef577fe6c0 Recovering log #16
 | 
			
		||||
2023/11/30-21:15:46.549019 7fef577fe6c0 Delete type=3 #14
 | 
			
		||||
2023/11/30-21:15:46.549163 7fef577fe6c0 Delete type=0 #16
 | 
			
		||||
2023/11/30-21:27:11.898240 7fef56ffd6c0 Level-0 table #22: started
 | 
			
		||||
2023/11/30-21:27:11.898354 7fef56ffd6c0 Level-0 table #22: 0 bytes OK
 | 
			
		||||
2023/11/30-21:27:11.905296 7fef56ffd6c0 Delete type=0 #20
 | 
			
		||||
2023/11/30-21:27:11.905567 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:27:11.905677 7fef56ffd6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:46:03.565879 7fc5b27fc6c0 Recovering log #88
 | 
			
		||||
2024/01/06-13:46:03.576119 7fc5b27fc6c0 Delete type=3 #86
 | 
			
		||||
2024/01/06-13:46:03.576174 7fc5b27fc6c0 Delete type=0 #88
 | 
			
		||||
2024/01/06-13:55:37.170927 7fc331fef6c0 Level-0 table #93: started
 | 
			
		||||
2024/01/06-13:55:37.174967 7fc331fef6c0 Level-0 table #93: 12930 bytes OK
 | 
			
		||||
2024/01/06-13:55:37.181792 7fc331fef6c0 Delete type=0 #91
 | 
			
		||||
2024/01/06-13:55:37.203126 7fc331fef6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:55:37.213722 7fc331fef6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at '!items!zjMDuxKHKJ4vE5UV' @ 227 : 1
 | 
			
		||||
2024/01/06-13:55:37.213741 7fc331fef6c0 Compacting 1@1 + 1@2 files
 | 
			
		||||
2024/01/06-13:55:37.217590 7fc331fef6c0 Generated table #94@1: 70 keys, 12930 bytes
 | 
			
		||||
2024/01/06-13:55:37.217614 7fc331fef6c0 Compacted 1@1 + 1@2 files => 12930 bytes
 | 
			
		||||
2024/01/06-13:55:37.224227 7fc331fef6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
 | 
			
		||||
2024/01/06-13:55:37.224320 7fc331fef6c0 Delete type=2 #27
 | 
			
		||||
2024/01/06-13:55:37.224435 7fc331fef6c0 Delete type=2 #93
 | 
			
		||||
2024/01/06-13:55:37.231068 7fc331fef6c0 Manual compaction at level-1 from '!items!zjMDuxKHKJ4vE5UV' @ 227 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/equipement/MANIFEST-000095
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/equipement/MANIFEST-000095
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/heritages/000164.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/heritages/000164.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1 +1 @@
 | 
			
		||||
MANIFEST-000094
 | 
			
		||||
MANIFEST-000165
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,8 @@
 | 
			
		||||
2023/11/30-21:31:54.530148 7ff1ed3ff6c0 Recovering log #92
 | 
			
		||||
2023/11/30-21:31:54.540278 7ff1ed3ff6c0 Delete type=3 #90
 | 
			
		||||
2023/11/30-21:31:54.540377 7ff1ed3ff6c0 Delete type=0 #92
 | 
			
		||||
2023/11/30-21:35:03.458404 7fef56ffd6c0 Level-0 table #97: started
 | 
			
		||||
2023/11/30-21:35:03.458477 7fef56ffd6c0 Level-0 table #97: 0 bytes OK
 | 
			
		||||
2023/11/30-21:35:03.492335 7fef56ffd6c0 Delete type=0 #95
 | 
			
		||||
2023/11/30-21:35:03.492642 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:35:03.492708 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:58:00.171110 7fc5b27fc6c0 Recovering log #162
 | 
			
		||||
2024/01/06-13:58:00.181185 7fc5b27fc6c0 Delete type=3 #160
 | 
			
		||||
2024/01/06-13:58:00.181240 7fc5b27fc6c0 Delete type=0 #162
 | 
			
		||||
2024/01/06-14:00:23.158016 7fc331fef6c0 Level-0 table #168: started
 | 
			
		||||
2024/01/06-14:00:23.158038 7fc331fef6c0 Level-0 table #168: 0 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.164071 7fc331fef6c0 Delete type=0 #166
 | 
			
		||||
2024/01/06-14:00:23.184425 7fc331fef6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-14:00:23.184473 7fc331fef6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,15 @@
 | 
			
		||||
2023/11/30-21:15:46.230478 7ff1ed3ff6c0 Recovering log #88
 | 
			
		||||
2023/11/30-21:15:46.280445 7ff1ed3ff6c0 Delete type=3 #86
 | 
			
		||||
2023/11/30-21:15:46.280560 7ff1ed3ff6c0 Delete type=0 #88
 | 
			
		||||
2023/11/30-21:27:11.868243 7fef56ffd6c0 Level-0 table #93: started
 | 
			
		||||
2023/11/30-21:27:11.868282 7fef56ffd6c0 Level-0 table #93: 0 bytes OK
 | 
			
		||||
2023/11/30-21:27:11.874637 7fef56ffd6c0 Delete type=0 #91
 | 
			
		||||
2023/11/30-21:27:11.874845 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:27:11.874886 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:46:03.482051 7fc5b3fff6c0 Recovering log #158
 | 
			
		||||
2024/01/06-13:46:03.493237 7fc5b3fff6c0 Delete type=3 #156
 | 
			
		||||
2024/01/06-13:46:03.493324 7fc5b3fff6c0 Delete type=0 #158
 | 
			
		||||
2024/01/06-13:55:37.075466 7fc331fef6c0 Level-0 table #163: started
 | 
			
		||||
2024/01/06-13:55:37.078777 7fc331fef6c0 Level-0 table #163: 9225 bytes OK
 | 
			
		||||
2024/01/06-13:55:37.085668 7fc331fef6c0 Delete type=0 #161
 | 
			
		||||
2024/01/06-13:55:37.096497 7fc331fef6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:55:37.117781 7fc331fef6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at '!items!nYYX7rtSMGFO4xVY' @ 20 : 1
 | 
			
		||||
2024/01/06-13:55:37.117789 7fc331fef6c0 Compacting 1@1 + 1@2 files
 | 
			
		||||
2024/01/06-13:55:37.121429 7fc331fef6c0 Generated table #164@1: 10 keys, 9225 bytes
 | 
			
		||||
2024/01/06-13:55:37.121464 7fc331fef6c0 Compacted 1@1 + 1@2 files => 9225 bytes
 | 
			
		||||
2024/01/06-13:55:37.127742 7fc331fef6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
 | 
			
		||||
2024/01/06-13:55:37.127895 7fc331fef6c0 Delete type=2 #17
 | 
			
		||||
2024/01/06-13:55:37.128143 7fc331fef6c0 Delete type=2 #163
 | 
			
		||||
2024/01/06-13:55:37.138608 7fc331fef6c0 Manual compaction at level-1 from '!items!nYYX7rtSMGFO4xVY' @ 20 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/heritages/MANIFEST-000165
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/heritages/MANIFEST-000165
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/heros/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/heros/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								packs/heros/CURRENT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								packs/heros/CURRENT
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
MANIFEST-000002
 | 
			
		||||
							
								
								
									
										5
									
								
								packs/heros/LOG
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								packs/heros/LOG
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
2024/01/06-13:58:00.129533 7fc5b27fc6c0 Delete type=3 #1
 | 
			
		||||
2024/01/06-14:00:23.124608 7fc331fef6c0 Level-0 table #5: started
 | 
			
		||||
2024/01/06-14:00:23.129994 7fc331fef6c0 Level-0 table #5: 204795 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.136757 7fc331fef6c0 Delete type=0 #3
 | 
			
		||||
2024/01/06-14:00:23.157871 7fc331fef6c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								packs/heros/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/heros/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/metiers/000164.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/metiers/000164.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										0
									
								
								packs/metiers/000167.log
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								packs/metiers/000167.log
									
									
									
									
									
										Normal file
									
								
							@@ -1 +1 @@
 | 
			
		||||
MANIFEST-000094
 | 
			
		||||
MANIFEST-000165
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,8 @@
 | 
			
		||||
2023/11/30-21:31:54.542933 7fef577fe6c0 Recovering log #92
 | 
			
		||||
2023/11/30-21:31:54.554795 7fef577fe6c0 Delete type=3 #90
 | 
			
		||||
2023/11/30-21:31:54.554886 7fef577fe6c0 Delete type=0 #92
 | 
			
		||||
2023/11/30-21:35:03.492815 7fef56ffd6c0 Level-0 table #97: started
 | 
			
		||||
2023/11/30-21:35:03.492885 7fef56ffd6c0 Level-0 table #97: 0 bytes OK
 | 
			
		||||
2023/11/30-21:35:03.519702 7fef56ffd6c0 Delete type=0 #95
 | 
			
		||||
2023/11/30-21:35:03.651862 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:35:03.651936 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:58:00.183870 7fc5b2ffd6c0 Recovering log #162
 | 
			
		||||
2024/01/06-13:58:00.194839 7fc5b2ffd6c0 Delete type=3 #160
 | 
			
		||||
2024/01/06-13:58:00.194936 7fc5b2ffd6c0 Delete type=0 #162
 | 
			
		||||
2024/01/06-14:00:23.164212 7fc331fef6c0 Level-0 table #168: started
 | 
			
		||||
2024/01/06-14:00:23.164251 7fc331fef6c0 Level-0 table #168: 0 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.170741 7fc331fef6c0 Delete type=0 #166
 | 
			
		||||
2024/01/06-14:00:23.184442 7fc331fef6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-14:00:23.184482 7fc331fef6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,15 @@
 | 
			
		||||
2023/11/30-21:15:46.283399 7fef577fe6c0 Recovering log #88
 | 
			
		||||
2023/11/30-21:15:46.335688 7fef577fe6c0 Delete type=3 #86
 | 
			
		||||
2023/11/30-21:15:46.335822 7fef577fe6c0 Delete type=0 #88
 | 
			
		||||
2023/11/30-21:27:11.860229 7fef56ffd6c0 Level-0 table #93: started
 | 
			
		||||
2023/11/30-21:27:11.860269 7fef56ffd6c0 Level-0 table #93: 0 bytes OK
 | 
			
		||||
2023/11/30-21:27:11.868082 7fef56ffd6c0 Delete type=0 #91
 | 
			
		||||
2023/11/30-21:27:11.874830 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:27:11.874872 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:46:03.496302 7fc5b27fc6c0 Recovering log #158
 | 
			
		||||
2024/01/06-13:46:03.506168 7fc5b27fc6c0 Delete type=3 #156
 | 
			
		||||
2024/01/06-13:46:03.506231 7fc5b27fc6c0 Delete type=0 #158
 | 
			
		||||
2024/01/06-13:55:37.107625 7fc331fef6c0 Level-0 table #163: started
 | 
			
		||||
2024/01/06-13:55:37.111120 7fc331fef6c0 Level-0 table #163: 36291 bytes OK
 | 
			
		||||
2024/01/06-13:55:37.117536 7fc331fef6c0 Delete type=0 #161
 | 
			
		||||
2024/01/06-13:55:37.128322 7fc331fef6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:55:37.138647 7fc331fef6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at '!items!y0G0VMyygxIj4Y7F' @ 29 : 1
 | 
			
		||||
2024/01/06-13:55:37.138668 7fc331fef6c0 Compacting 1@1 + 1@2 files
 | 
			
		||||
2024/01/06-13:55:37.143036 7fc331fef6c0 Generated table #164@1: 19 keys, 36291 bytes
 | 
			
		||||
2024/01/06-13:55:37.143057 7fc331fef6c0 Compacted 1@1 + 1@2 files => 36291 bytes
 | 
			
		||||
2024/01/06-13:55:37.149213 7fc331fef6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
 | 
			
		||||
2024/01/06-13:55:37.149337 7fc331fef6c0 Delete type=2 #17
 | 
			
		||||
2024/01/06-13:55:37.149509 7fc331fef6c0 Delete type=2 #163
 | 
			
		||||
2024/01/06-13:55:37.170907 7fc331fef6c0 Manual compaction at level-1 from '!items!y0G0VMyygxIj4Y7F' @ 29 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/metiers/MANIFEST-000165
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/metiers/MANIFEST-000165
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										0
									
								
								packs/mutations/000004.log
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								packs/mutations/000004.log
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/mutations/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/mutations/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								packs/mutations/CURRENT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								packs/mutations/CURRENT
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
MANIFEST-000002
 | 
			
		||||
							
								
								
									
										0
									
								
								packs/mutations/LOCK
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								packs/mutations/LOCK
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										5
									
								
								packs/mutations/LOG
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								packs/mutations/LOG
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
2024/01/06-13:58:00.294752 7fc5b27fc6c0 Delete type=3 #1
 | 
			
		||||
2024/01/06-14:00:23.218556 7fc331fef6c0 Level-0 table #5: started
 | 
			
		||||
2024/01/06-14:00:23.222459 7fc331fef6c0 Level-0 table #5: 555 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.229250 7fc331fef6c0 Delete type=0 #3
 | 
			
		||||
2024/01/06-14:00:23.252367 7fc331fef6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								packs/mutations/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/mutations/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/origines/000165.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/origines/000165.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										0
									
								
								packs/origines/000168.log
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								packs/origines/000168.log
									
									
									
									
									
										Normal file
									
								
							@@ -1 +1 @@
 | 
			
		||||
MANIFEST-000095
 | 
			
		||||
MANIFEST-000166
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,8 @@
 | 
			
		||||
2023/11/30-21:31:54.514944 7ff1ecbfe6c0 Recovering log #93
 | 
			
		||||
2023/11/30-21:31:54.526638 7ff1ecbfe6c0 Delete type=3 #91
 | 
			
		||||
2023/11/30-21:31:54.526771 7ff1ecbfe6c0 Delete type=0 #93
 | 
			
		||||
2023/11/30-21:35:03.336231 7fef56ffd6c0 Level-0 table #98: started
 | 
			
		||||
2023/11/30-21:35:03.336291 7fef56ffd6c0 Level-0 table #98: 0 bytes OK
 | 
			
		||||
2023/11/30-21:35:03.381349 7fef56ffd6c0 Delete type=0 #96
 | 
			
		||||
2023/11/30-21:35:03.492560 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:35:03.492661 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:58:00.158171 7fc5b37fe6c0 Recovering log #163
 | 
			
		||||
2024/01/06-13:58:00.169589 7fc5b37fe6c0 Delete type=3 #161
 | 
			
		||||
2024/01/06-13:58:00.169644 7fc5b37fe6c0 Delete type=0 #163
 | 
			
		||||
2024/01/06-14:00:23.144124 7fc331fef6c0 Level-0 table #169: started
 | 
			
		||||
2024/01/06-14:00:23.144167 7fc331fef6c0 Level-0 table #169: 0 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.150274 7fc331fef6c0 Delete type=0 #167
 | 
			
		||||
2024/01/06-14:00:23.157894 7fc331fef6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-14:00:23.157918 7fc331fef6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,15 @@
 | 
			
		||||
2023/11/30-21:15:46.184229 7fef57fff6c0 Recovering log #89
 | 
			
		||||
2023/11/30-21:15:46.226456 7fef57fff6c0 Delete type=3 #87
 | 
			
		||||
2023/11/30-21:15:46.226596 7fef57fff6c0 Delete type=0 #89
 | 
			
		||||
2023/11/30-21:27:11.846165 7fef56ffd6c0 Level-0 table #94: started
 | 
			
		||||
2023/11/30-21:27:11.846241 7fef56ffd6c0 Level-0 table #94: 0 bytes OK
 | 
			
		||||
2023/11/30-21:27:11.853264 7fef56ffd6c0 Delete type=0 #92
 | 
			
		||||
2023/11/30-21:27:11.874798 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:27:11.874859 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:46:03.467442 7fc5b2ffd6c0 Recovering log #159
 | 
			
		||||
2024/01/06-13:46:03.477436 7fc5b2ffd6c0 Delete type=3 #157
 | 
			
		||||
2024/01/06-13:46:03.477527 7fc5b2ffd6c0 Delete type=0 #159
 | 
			
		||||
2024/01/06-13:55:37.033274 7fc331fef6c0 Level-0 table #164: started
 | 
			
		||||
2024/01/06-13:55:37.037180 7fc331fef6c0 Level-0 table #164: 32140 bytes OK
 | 
			
		||||
2024/01/06-13:55:37.043824 7fc331fef6c0 Delete type=0 #162
 | 
			
		||||
2024/01/06-13:55:37.043996 7fc331fef6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:55:37.055023 7fc331fef6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at '!items!xox7R7Uuuz0eGL0p' @ 52 : 1
 | 
			
		||||
2024/01/06-13:55:37.055031 7fc331fef6c0 Compacting 1@1 + 1@2 files
 | 
			
		||||
2024/01/06-13:55:37.058742 7fc331fef6c0 Generated table #165@1: 23 keys, 32140 bytes
 | 
			
		||||
2024/01/06-13:55:37.058763 7fc331fef6c0 Compacted 1@1 + 1@2 files => 32140 bytes
 | 
			
		||||
2024/01/06-13:55:37.064964 7fc331fef6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
 | 
			
		||||
2024/01/06-13:55:37.065069 7fc331fef6c0 Delete type=2 #10
 | 
			
		||||
2024/01/06-13:55:37.065208 7fc331fef6c0 Delete type=2 #164
 | 
			
		||||
2024/01/06-13:55:37.085856 7fc331fef6c0 Manual compaction at level-1 from '!items!xox7R7Uuuz0eGL0p' @ 52 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/origines/MANIFEST-000166
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/origines/MANIFEST-000166
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										0
									
								
								packs/peuples/000004.log
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								packs/peuples/000004.log
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/peuples/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/peuples/000005.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								packs/peuples/CURRENT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								packs/peuples/CURRENT
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
MANIFEST-000002
 | 
			
		||||
							
								
								
									
										0
									
								
								packs/peuples/LOCK
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								packs/peuples/LOCK
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										5
									
								
								packs/peuples/LOG
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								packs/peuples/LOG
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
2024/01/06-13:58:00.309775 7fc5b2ffd6c0 Delete type=3 #1
 | 
			
		||||
2024/01/06-14:00:23.229343 7fc331fef6c0 Level-0 table #5: started
 | 
			
		||||
2024/01/06-14:00:23.232531 7fc331fef6c0 Level-0 table #5: 5139 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.239050 7fc331fef6c0 Delete type=0 #3
 | 
			
		||||
2024/01/06-14:00:23.252379 7fc331fef6c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								packs/peuples/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/peuples/MANIFEST-000002
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/pouvoirs/000082.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/pouvoirs/000082.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										0
									
								
								packs/pouvoirs/000085.log
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								packs/pouvoirs/000085.log
									
									
									
									
									
										Normal file
									
								
							@@ -1 +1 @@
 | 
			
		||||
MANIFEST-000010
 | 
			
		||||
MANIFEST-000083
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,8 @@
 | 
			
		||||
2023/11/30-21:31:54.499558 7fef57fff6c0 Recovering log #8
 | 
			
		||||
2023/11/30-21:31:54.511084 7fef57fff6c0 Delete type=3 #6
 | 
			
		||||
2023/11/30-21:31:54.511195 7fef57fff6c0 Delete type=0 #8
 | 
			
		||||
2023/11/30-21:35:03.416000 7fef56ffd6c0 Level-0 table #13: started
 | 
			
		||||
2023/11/30-21:35:03.416366 7fef56ffd6c0 Level-0 table #13: 0 bytes OK
 | 
			
		||||
2023/11/30-21:35:03.458142 7fef56ffd6c0 Delete type=0 #11
 | 
			
		||||
2023/11/30-21:35:03.492620 7fef56ffd6c0 Manual compaction at level-0 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:35:03.492692 7fef56ffd6c0 Manual compaction at level-1 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:58:00.144154 7fc5b3fff6c0 Recovering log #80
 | 
			
		||||
2024/01/06-13:58:00.155203 7fc5b3fff6c0 Delete type=3 #78
 | 
			
		||||
2024/01/06-13:58:00.155323 7fc5b3fff6c0 Delete type=0 #80
 | 
			
		||||
2024/01/06-14:00:23.150396 7fc331fef6c0 Level-0 table #86: started
 | 
			
		||||
2024/01/06-14:00:23.150420 7fc331fef6c0 Level-0 table #86: 0 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.157750 7fc331fef6c0 Delete type=0 #84
 | 
			
		||||
2024/01/06-14:00:23.157903 7fc331fef6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-14:00:23.157926 7fc331fef6c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,15 @@
 | 
			
		||||
2023/11/30-21:15:46.128616 7ff1ecbfe6c0 Recovering log #4
 | 
			
		||||
2023/11/30-21:15:46.180837 7ff1ecbfe6c0 Delete type=3 #2
 | 
			
		||||
2023/11/30-21:15:46.180979 7ff1ecbfe6c0 Delete type=0 #4
 | 
			
		||||
2023/11/30-21:27:11.853503 7fef56ffd6c0 Level-0 table #9: started
 | 
			
		||||
2023/11/30-21:27:11.853566 7fef56ffd6c0 Level-0 table #9: 0 bytes OK
 | 
			
		||||
2023/11/30-21:27:11.860090 7fef56ffd6c0 Delete type=0 #7
 | 
			
		||||
2023/11/30-21:27:11.874816 7fef56ffd6c0 Manual compaction at level-0 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:27:11.874899 7fef56ffd6c0 Manual compaction at level-1 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:46:03.451443 7fc5b37fe6c0 Recovering log #76
 | 
			
		||||
2024/01/06-13:46:03.461935 7fc5b37fe6c0 Delete type=3 #74
 | 
			
		||||
2024/01/06-13:46:03.462025 7fc5b37fe6c0 Delete type=0 #76
 | 
			
		||||
2024/01/06-13:55:37.065270 7fc331fef6c0 Level-0 table #81: started
 | 
			
		||||
2024/01/06-13:55:37.068793 7fc331fef6c0 Level-0 table #81: 5144 bytes OK
 | 
			
		||||
2024/01/06-13:55:37.075347 7fc331fef6c0 Delete type=0 #79
 | 
			
		||||
2024/01/06-13:55:37.085875 7fc331fef6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:55:37.096512 7fc331fef6c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at '!items!qAmsD4MHgywYj6XV' @ 256 : 1
 | 
			
		||||
2024/01/06-13:55:37.096520 7fc331fef6c0 Compacting 1@1 + 1@2 files
 | 
			
		||||
2024/01/06-13:55:37.100708 7fc331fef6c0 Generated table #82@1: 157 keys, 104494 bytes
 | 
			
		||||
2024/01/06-13:55:37.100720 7fc331fef6c0 Compacted 1@1 + 1@2 files => 104494 bytes
 | 
			
		||||
2024/01/06-13:55:37.107323 7fc331fef6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
 | 
			
		||||
2024/01/06-13:55:37.107430 7fc331fef6c0 Delete type=2 #51
 | 
			
		||||
2024/01/06-13:55:37.107563 7fc331fef6c0 Delete type=2 #81
 | 
			
		||||
2024/01/06-13:55:37.128309 7fc331fef6c0 Manual compaction at level-1 from '!items!qAmsD4MHgywYj6XV' @ 256 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/pouvoirs/MANIFEST-000083
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/pouvoirs/MANIFEST-000083
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/protection/000201.ldb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/protection/000201.ldb
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										0
									
								
								packs/protection/000204.log
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								packs/protection/000204.log
									
									
									
									
									
										Normal file
									
								
							@@ -1 +1 @@
 | 
			
		||||
MANIFEST-000131
 | 
			
		||||
MANIFEST-000202
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,8 @@
 | 
			
		||||
2023/11/30-21:31:54.584717 7ff1ed3ff6c0 Recovering log #129
 | 
			
		||||
2023/11/30-21:31:54.596333 7ff1ed3ff6c0 Delete type=3 #127
 | 
			
		||||
2023/11/30-21:31:54.596463 7ff1ed3ff6c0 Delete type=0 #129
 | 
			
		||||
2023/11/30-21:35:03.554215 7fef56ffd6c0 Level-0 table #134: started
 | 
			
		||||
2023/11/30-21:35:03.554263 7fef56ffd6c0 Level-0 table #134: 0 bytes OK
 | 
			
		||||
2023/11/30-21:35:03.596152 7fef56ffd6c0 Delete type=0 #132
 | 
			
		||||
2023/11/30-21:35:03.651902 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
 | 
			
		||||
2023/11/30-21:35:03.651987 7fef56ffd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-13:58:00.223871 7fc5b27fc6c0 Recovering log #199
 | 
			
		||||
2024/01/06-13:58:00.234618 7fc5b27fc6c0 Delete type=3 #197
 | 
			
		||||
2024/01/06-13:58:00.234679 7fc5b27fc6c0 Delete type=0 #199
 | 
			
		||||
2024/01/06-14:00:23.184598 7fc331fef6c0 Level-0 table #205: started
 | 
			
		||||
2024/01/06-14:00:23.184626 7fc331fef6c0 Level-0 table #205: 0 bytes OK
 | 
			
		||||
2024/01/06-14:00:23.191695 7fc331fef6c0 Delete type=0 #203
 | 
			
		||||
2024/01/06-14:00:23.218426 7fc331fef6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
 | 
			
		||||
2024/01/06-14:00:23.218478 7fc331fef6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
 | 
			
		||||
 
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user