Compare commits

...

9 Commits

113 changed files with 532 additions and 262 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 807 KiB

View File

@ -67,6 +67,10 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */
prepareArme(arme) {
if (this.type == "cellule") {
return arme
}
arme = foundry.utils.duplicate(arme)
let combat = this.getCombatValues()
if (arme.system.typearme == "contact" || arme.system.typearme == "contactjet") {
@ -202,6 +206,20 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */
getCombatValues() {
if (this.type == "cellule") {
return {
initBase: 0,
initTotal: 0,
bonusDegats: 0,
bonusDegatsTotal: 0,
vitesseBase: 0,
vitesseTotal: 0,
defenseBase: 0,
protection: 0,
defenseTotal: 0
}
}
let combat = {
initBase: this.system.attributs.adr.value,
initTotal: this.system.attributs.adr.value + this.system.combat.initbonus,
@ -525,6 +543,23 @@ export class HawkmoonActor extends Actor {
return init || -1
}
/* -------------------------------------------- */
getBestAttackValue() {
let attackList = this.items.filter(item => (item.type == "arme" || item.type == "talent") && item.system.equipped)
let maxOff = 0
let bestArme
for (let arme of attackList) {
if (arme.type == "arme") {
arme = this.prepareArme(arme)
}
if (arme.system.totalOffensif > maxOff) {
maxOff = arme.system.totalOffensif
bestArme = foundry.utils.duplicate(arme)
}
}
return bestArme
}
/* -------------------------------------------- */
getBestDefenseValue() {
let defenseList = this.items.filter(item => (item.type == "arme") && item.system.equipped)

View File

@ -7,7 +7,7 @@ import { HawkmoonUtility } from "./hawkmoon-utility.js";
import { HawkmoonAutomation } from "./hawkmoon-automation.js";
/* -------------------------------------------- */
const __ALLOWED_ITEM_CELLULE = { "talent": 1, "ressource": 1, "contact": 1}
const __ALLOWED_ITEM_CELLULE = { "talent": 1, "ressource": 1, "contact": 1, "equipement": 1, "protection": 1, "artefact": 1, "arme": 1, "monnaie": 1 }
/* -------------------------------------------- */
export class HawkmoonCelluleSheet extends ActorSheet {
@ -45,6 +45,13 @@ export class HawkmoonCelluleSheet extends ActorSheet {
ressources: foundry.utils.duplicate(this.actor.getRessources()),
contacts: foundry.utils.duplicate(this.actor.getContacts()),
members: this.getMembers(),
equipements: foundry.utils.duplicate(this.actor.getEquipments()),
artefacts: foundry.utils.duplicate(this.actor.getArtefacts()),
armes: foundry.utils.duplicate(this.actor.getWeapons()),
monnaies: foundry.utils.duplicate(this.actor.getMonnaies()),
protections: foundry.utils.duplicate(this.actor.getArmors()),
richesse: this.actor.computeRichesse(),
valeurEquipement: this.actor.computeValeurEquipement(),
description: await TextEditor.enrichHTML(this.object.system.description, { async: true }),
options: this.options,
owner: this.document.isOwner,
@ -110,15 +117,15 @@ export class HawkmoonCelluleSheet extends ActorSheet {
let value = ev.currentTarget.value
this.actor.editItemField(itemId, itemType, itemField, dataType, value)
})
html.find('.quantity-minus').click(event => {
const li = $(event.currentTarget).parents(".item");
this.actor.incDecQuantity(li.data("item-id"), -1);
});
html.find('.quantity-plus').click(event => {
const li = $(event.currentTarget).parents(".item");
this.actor.incDecQuantity(li.data("item-id"), +1);
});
html.find('.quantity-modify').click(event => {
const li = $(event.currentTarget).parents(".item")
const value = Number($(event.currentTarget).data("quantite-value"))
this.actor.incDecQuantity( li.data("item-id"), value );
})
html.find('.item-add').click((event) => {
const itemType = $(event.currentTarget).data("type")
this.actor.createEmbeddedDocuments('Item', [{ name: `Nouveau ${itemType}`, type: itemType }], { renderSheet: true })
})
html.find('.lock-unlock-sheet').click((event) => {
this.options.editScore = !this.options.editScore;
@ -149,7 +156,7 @@ export class HawkmoonCelluleSheet extends ActorSheet {
super._onDropItem(event, dragData)
return
}
ui.notifications("Ce type d'item n'est pas autorisé sur une Cellule.")
ui.notification.info("Ce type d'item n'est pas autorisé sur une Cellule.")
}

View File

@ -3,10 +3,30 @@ export const HAWKMOON_CONFIG = {
optionsDifficulte: [
{ key: "0", label: "Aucune/Inconnue" },
{ key: "5", label: "Facile (5)" },
{ key: "6", label: "(6)" },
{ key: "7", label: "(7)" },
{ key: "8", label: "(8)" },
{ key: "9", label: "(9)" },
{ key: "10", label: "Moyenne (10)" },
{ key: "11", label: "(11)" },
{ key: "12", label: "(12)" },
{ key: "13", label: "(13)" },
{ key: "14", label: "(14)" },
{ key: "15", label: "Ardue (15)" },
{ key: "16", label: "(16)" },
{ key: "17", label: "(17)" },
{ key: "18", label: "(18)" },
{ key: "19", label: "(19)" },
{ key: "20", label: "Hasardeuse (20)" },
{ key: "21", label: "(21)" },
{ key: "22", label: "(22)" },
{ key: "23", label: "(23)" },
{ key: "24", label: "(24)" },
{ key: "25", label: "Insensée (25)" },
{ key: "26", label: "(26)" },
{ key: "27", label: "(27)" },
{ key: "28", label: "(28)" },
{ key: "29", label: "(29)" },
{ key: "30", label: "Pure Folie (30)" }
],
optionsDistanceTir: [
@ -15,6 +35,12 @@ export const HAWKMOON_CONFIG = {
{ key: "porteelongue", label: "Longue ({protectionDefenseur}+14)" }
],
optionsBonusMalus: [
{ key: "-10", label: "-10" },
{ key: "-9", label: "-9" },
{ key: "-8", label: "-8" },
{ key: "-7", label: "-7" },
{ key: "-6", label: "-6" },
{ key: "-5", label: "-5" },
{ key: "-4", label: "-4" },
{ key: "-3", label: "-3" },
{ key: "-2", label: "-2" },
@ -23,7 +49,13 @@ export const HAWKMOON_CONFIG = {
{ key: "1", label: "+1" },
{ key: "2", label: "+2" },
{ key: "3", label: "+3" },
{ key: "4", label: "+4" }
{ key: "4", label: "+4" },
{ key: "5", label: "+5" },
{ key: "6", label: "+6" },
{ key: "7", label: "+7" },
{ key: "8", label: "+8" },
{ key: "9", label: "+9" },
{ key: "10", label: "+10" }
],
optionsTailleCible: [
{ key: "normal", label: "Normal (SD+0)" },

View File

@ -315,10 +315,10 @@ export class HawkmoonUtility {
switch (rollMode) {
case "blindroll": //GM only
blind = true;
case "gmroll": //GM + rolling player
case "gmroll": // GM + rolling player
whisper = this.getUsers(user => user.isGM);
break;
case "roll": //everybody
case "roll": // everybody
whisper = this.getUsers(user => user.active);
break;
case "selfroll":
@ -432,10 +432,10 @@ export class HawkmoonUtility {
rollData.diceFormula += `+3`
}
if (rollData.hasAmbidextre) {
if ( rollData.attaqueAmbidextre1) {
if ( rollData.ambidextre1) {
rollData.diceFormula += `-3`
} else if ( rollData.attaqueAmbidextre2) {
rollData.diceFormula += `-5`
} else if ( rollData.ambidextre2) {
rollData.diceFormula += `-6`
}
}
if (rollData.defenseurAuSol) {
@ -514,16 +514,16 @@ export class HawkmoonUtility {
/* -------------------------------------------- */
static getCombativiteList(nbActivite) {
let list = [ { value: 0, label: "Combatif"}]
let list = [ { value: String(0), label: "Combatif"}]
for (let i = 1; i < nbActivite-2; i++) {
list.push({ value: i, label:"Eprouvé " + i} )
list.push({ value: String(i), label:"Eprouvé " + i} )
}
list[nbActivite-2] = { value: nbActivite-2, label:"Affaibli"}
list[nbActivite-1] = { value: nbActivite-1, label:"Très Affaibli"}
list[nbActivite] = { value: nbActivite, label:"Vaincu"}
list[nbActivite-2] = { value: String(nbActivite-2), label:"Affaibli"}
list[nbActivite-1] = { value: String(nbActivite-1), label:"Très Affaibli"}
list[nbActivite] = { value: String(nbActivite), label:"Vaincu"}
return list
}
/* -------------------------------------------- */
static async bonusRollHawkmoon(rollData) {
rollData.bonusFormula = rollData.addedBonus
@ -663,6 +663,7 @@ export class HawkmoonUtility {
rollData.defenderTokenId = target.id
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
rollData.armeDefense = defender.getBestDefenseValue()
rollData.armeAttaqueDefenseur = defender.getBestAttackValue()
rollData.targetVigueur = defender.getVigueur()
rollData.protectionDefenseur = defender.getProtection()
if (rollData.immobiliser || rollData.repousser) {
@ -673,6 +674,8 @@ export class HawkmoonUtility {
rollData.difficulte = combatValues.defenseTotal
}else if ( rollData.assomer) {
rollData.difficulte = 3 + (defender.system.attributs.tre.value * 2)
} else if (rollData.desengager) {
rollData.difficulte = rollData.armeAttaqueDefenseur?.system?.totalOffensif || 0;
} else if (rollData.armeDefense) {
rollData.difficulte = rollData.armeDefense.system.totalDefensif
if ( !rollData.desengager && !rollData.arme.system.armenaturelle && !rollData.arme.system.armefortune ){

View File

@ -1 +1 @@
MANIFEST-000209
MANIFEST-000268

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.991898 7f18090006c0 Recovering log #207
2024/05/31-23:16:46.046753 7f18090006c0 Delete type=3 #205
2024/05/31-23:16:46.046809 7f18090006c0 Delete type=0 #207
2024/05/31-23:25:37.384266 7f18020006c0 Level-0 table #212: started
2024/05/31-23:25:37.384313 7f18020006c0 Level-0 table #212: 0 bytes OK
2024/05/31-23:25:37.390630 7f18020006c0 Delete type=0 #210
2024/05/31-23:25:37.403867 7f18020006c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.403898 7f18020006c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.240513 7f9cf5ffb6c0 Recovering log #266
2025/03/28-18:06:54.252115 7f9cf5ffb6c0 Delete type=3 #264
2025/03/28-18:06:54.252178 7f9cf5ffb6c0 Delete type=0 #266
2025/03/28-18:09:08.872875 7f9cf4ff96c0 Level-0 table #271: started
2025/03/28-18:09:08.872910 7f9cf4ff96c0 Level-0 table #271: 0 bytes OK
2025/03/28-18:09:08.879279 7f9cf4ff96c0 Delete type=0 #269
2025/03/28-18:09:08.892832 7f9cf4ff96c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.903986 7f9cf4ff96c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.635913 7f1802a006c0 Recovering log #203
2024/05/31-23:10:39.653531 7f1802a006c0 Delete type=3 #201
2024/05/31-23:10:39.653591 7f1802a006c0 Delete type=0 #203
2024/05/31-23:15:03.413506 7f18020006c0 Level-0 table #208: started
2024/05/31-23:15:03.413557 7f18020006c0 Level-0 table #208: 0 bytes OK
2024/05/31-23:15:03.419986 7f18020006c0 Delete type=0 #206
2024/05/31-23:15:03.426574 7f18020006c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.426633 7f18020006c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.414284 7f9cf5ffb6c0 Recovering log #261
2025/03/28-14:48:51.424277 7f9cf5ffb6c0 Delete type=3 #259
2025/03/28-14:48:51.424333 7f9cf5ffb6c0 Delete type=0 #261
2025/03/28-14:56:17.706645 7f9cf4ff96c0 Level-0 table #267: started
2025/03/28-14:56:17.706686 7f9cf4ff96c0 Level-0 table #267: 0 bytes OK
2025/03/28-14:56:17.715753 7f9cf4ff96c0 Delete type=0 #265
2025/03/28-14:56:17.747853 7f9cf4ff96c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.747898 7f9cf4ff96c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/armes/000262.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000209
MANIFEST-000267

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.511332 7f1803e006c0 Recovering log #207
2024/05/31-23:16:45.571770 7f1803e006c0 Delete type=3 #205
2024/05/31-23:16:45.571914 7f1803e006c0 Delete type=0 #207
2024/05/31-23:25:37.338949 7f18020006c0 Level-0 table #212: started
2024/05/31-23:25:37.338972 7f18020006c0 Level-0 table #212: 0 bytes OK
2024/05/31-23:25:37.345723 7f18020006c0 Delete type=0 #210
2024/05/31-23:25:37.358156 7f18020006c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.358188 7f18020006c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.129546 7f9cf57fa6c0 Recovering log #265
2025/03/28-18:06:54.140296 7f9cf57fa6c0 Delete type=3 #263
2025/03/28-18:06:54.140354 7f9cf57fa6c0 Delete type=0 #265
2025/03/28-18:09:08.799681 7f9cf4ff96c0 Level-0 table #270: started
2025/03/28-18:09:08.799712 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
2025/03/28-18:09:08.806126 7f9cf4ff96c0 Delete type=0 #268
2025/03/28-18:09:08.806364 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.806424 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.536966 7f18034006c0 Recovering log #203
2024/05/31-23:10:39.546676 7f18034006c0 Delete type=3 #201
2024/05/31-23:10:39.546734 7f18034006c0 Delete type=0 #203
2024/05/31-23:15:03.342618 7f18020006c0 Level-0 table #208: started
2024/05/31-23:15:03.342657 7f18020006c0 Level-0 table #208: 0 bytes OK
2024/05/31-23:15:03.348734 7f18020006c0 Delete type=0 #206
2024/05/31-23:15:03.348859 7f18020006c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.348880 7f18020006c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.294919 7f9cf67fc6c0 Recovering log #260
2025/03/28-14:48:51.304807 7f9cf67fc6c0 Delete type=3 #258
2025/03/28-14:48:51.304864 7f9cf67fc6c0 Delete type=0 #260
2025/03/28-14:56:17.643826 7f9cf4ff96c0 Level-0 table #266: started
2025/03/28-14:56:17.643859 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
2025/03/28-14:56:17.653389 7f9cf4ff96c0 Delete type=0 #264
2025/03/28-14:56:17.664831 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.664877 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/armes/MANIFEST-000267 Normal file

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000209
MANIFEST-000267

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.399504 7f1803e006c0 Recovering log #207
2024/05/31-23:16:45.453251 7f1803e006c0 Delete type=3 #205
2024/05/31-23:16:45.453307 7f1803e006c0 Delete type=0 #207
2024/05/31-23:25:37.324970 7f18020006c0 Level-0 table #212: started
2024/05/31-23:25:37.324998 7f18020006c0 Level-0 table #212: 0 bytes OK
2024/05/31-23:25:37.332256 7f18020006c0 Delete type=0 #210
2024/05/31-23:25:37.332486 7f18020006c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.332520 7f18020006c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.103361 7f9cf5ffb6c0 Recovering log #265
2025/03/28-18:06:54.113349 7f9cf5ffb6c0 Delete type=3 #263
2025/03/28-18:06:54.113428 7f9cf5ffb6c0 Delete type=0 #265
2025/03/28-18:09:08.786685 7f9cf4ff96c0 Level-0 table #270: started
2025/03/28-18:09:08.786722 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
2025/03/28-18:09:08.793132 7f9cf4ff96c0 Delete type=0 #268
2025/03/28-18:09:08.806327 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.806394 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.513081 7f18034006c0 Recovering log #203
2024/05/31-23:10:39.522757 7f18034006c0 Delete type=3 #201
2024/05/31-23:10:39.522898 7f18034006c0 Delete type=0 #203
2024/05/31-23:15:03.336023 7f18020006c0 Level-0 table #208: started
2024/05/31-23:15:03.336054 7f18020006c0 Level-0 table #208: 0 bytes OK
2024/05/31-23:15:03.342475 7f18020006c0 Delete type=0 #206
2024/05/31-23:15:03.348851 7f18020006c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.348887 7f18020006c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.264974 7f9cf5ffb6c0 Recovering log #260
2025/03/28-14:48:51.275685 7f9cf5ffb6c0 Delete type=3 #258
2025/03/28-14:48:51.275752 7f9cf5ffb6c0 Delete type=0 #260
2025/03/28-14:56:17.599288 7f9cf4ff96c0 Level-0 table #266: started
2025/03/28-14:56:17.599333 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
2025/03/28-14:56:17.609691 7f9cf4ff96c0 Delete type=0 #264
2025/03/28-14:56:17.621022 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.621095 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000209
MANIFEST-000267

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.284662 7f1803e006c0 Recovering log #207
2024/05/31-23:16:45.346436 7f1803e006c0 Delete type=3 #205
2024/05/31-23:16:45.346487 7f1803e006c0 Delete type=0 #207
2024/05/31-23:25:37.311914 7f18020006c0 Level-0 table #212: started
2024/05/31-23:25:37.311964 7f18020006c0 Level-0 table #212: 0 bytes OK
2024/05/31-23:25:37.318352 7f18020006c0 Delete type=0 #210
2024/05/31-23:25:37.324962 7f18020006c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.332453 7f18020006c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.075285 7f9cf57fa6c0 Recovering log #265
2025/03/28-18:06:54.086230 7f9cf57fa6c0 Delete type=3 #263
2025/03/28-18:06:54.086300 7f9cf57fa6c0 Delete type=0 #265
2025/03/28-18:09:08.813600 7f9cf4ff96c0 Level-0 table #270: started
2025/03/28-18:09:08.813626 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
2025/03/28-18:09:08.819856 7f9cf4ff96c0 Delete type=0 #268
2025/03/28-18:09:08.833880 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.833915 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.488401 7f18034006c0 Recovering log #203
2024/05/31-23:10:39.498833 7f18034006c0 Delete type=3 #201
2024/05/31-23:10:39.498885 7f18034006c0 Delete type=0 #203
2024/05/31-23:15:03.315812 7f18020006c0 Level-0 table #208: started
2024/05/31-23:15:03.315848 7f18020006c0 Level-0 table #208: 0 bytes OK
2024/05/31-23:15:03.322917 7f18020006c0 Delete type=0 #206
2024/05/31-23:15:03.323092 7f18020006c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.323124 7f18020006c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.234537 7f9cf67fc6c0 Recovering log #260
2025/03/28-14:48:51.245515 7f9cf67fc6c0 Delete type=3 #258
2025/03/28-14:48:51.245574 7f9cf67fc6c0 Delete type=0 #260
2025/03/28-14:56:17.609952 7f9cf4ff96c0 Level-0 table #266: started
2025/03/28-14:56:17.609988 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
2025/03/28-14:56:17.620719 7f9cf4ff96c0 Delete type=0 #264
2025/03/28-14:56:17.621043 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.621110 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/equipement/000262.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000209
MANIFEST-000267

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.631063 7f1803e006c0 Recovering log #207
2024/05/31-23:16:45.684522 7f1803e006c0 Delete type=3 #205
2024/05/31-23:16:45.684659 7f1803e006c0 Delete type=0 #207
2024/05/31-23:25:37.351886 7f18020006c0 Level-0 table #212: started
2024/05/31-23:25:37.351907 7f18020006c0 Level-0 table #212: 0 bytes OK
2024/05/31-23:25:37.358042 7f18020006c0 Delete type=0 #210
2024/05/31-23:25:37.358174 7f18020006c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.358195 7f18020006c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.156515 7f9cf5ffb6c0 Recovering log #265
2025/03/28-18:06:54.167920 7f9cf5ffb6c0 Delete type=3 #263
2025/03/28-18:06:54.168006 7f9cf5ffb6c0 Delete type=0 #265
2025/03/28-18:09:08.806529 7f9cf4ff96c0 Level-0 table #270: started
2025/03/28-18:09:08.806589 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
2025/03/28-18:09:08.813486 7f9cf4ff96c0 Delete type=0 #268
2025/03/28-18:09:08.833864 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.833923 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.560316 7f18034006c0 Recovering log #203
2024/05/31-23:10:39.570630 7f18034006c0 Delete type=3 #201
2024/05/31-23:10:39.570692 7f18034006c0 Delete type=0 #203
2024/05/31-23:15:03.361714 7f18020006c0 Level-0 table #208: started
2024/05/31-23:15:03.361742 7f18020006c0 Level-0 table #208: 0 bytes OK
2024/05/31-23:15:03.368749 7f18020006c0 Delete type=0 #206
2024/05/31-23:15:03.380194 7f18020006c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.380224 7f18020006c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.322258 7f9cf5ffb6c0 Recovering log #260
2025/03/28-14:48:51.332966 7f9cf5ffb6c0 Delete type=3 #258
2025/03/28-14:48:51.333025 7f9cf5ffb6c0 Delete type=0 #260
2025/03/28-14:56:17.653610 7f9cf4ff96c0 Level-0 table #266: started
2025/03/28-14:56:17.653676 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
2025/03/28-14:56:17.664679 7f9cf4ff96c0 Delete type=0 #264
2025/03/28-14:56:17.664840 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.664885 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000209
MANIFEST-000267

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.455012 7f18090006c0 Recovering log #207
2024/05/31-23:16:45.509581 7f18090006c0 Delete type=3 #205
2024/05/31-23:16:45.509640 7f18090006c0 Delete type=0 #207
2024/05/31-23:25:37.332626 7f18020006c0 Level-0 table #212: started
2024/05/31-23:25:37.332674 7f18020006c0 Level-0 table #212: 0 bytes OK
2024/05/31-23:25:37.338836 7f18020006c0 Delete type=0 #210
2024/05/31-23:25:37.358145 7f18020006c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.358181 7f18020006c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.116086 7f9cf67fc6c0 Recovering log #265
2025/03/28-18:06:54.126771 7f9cf67fc6c0 Delete type=3 #263
2025/03/28-18:06:54.126828 7f9cf67fc6c0 Delete type=0 #265
2025/03/28-18:09:08.793243 7f9cf4ff96c0 Level-0 table #270: started
2025/03/28-18:09:08.793267 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
2025/03/28-18:09:08.799520 7f9cf4ff96c0 Delete type=0 #268
2025/03/28-18:09:08.806348 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.806409 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.524828 7f1802a006c0 Recovering log #203
2024/05/31-23:10:39.535217 7f1802a006c0 Delete type=3 #201
2024/05/31-23:10:39.535288 7f1802a006c0 Delete type=0 #203
2024/05/31-23:15:03.329396 7f18020006c0 Level-0 table #208: started
2024/05/31-23:15:03.329429 7f18020006c0 Level-0 table #208: 0 bytes OK
2024/05/31-23:15:03.335841 7f18020006c0 Delete type=0 #206
2024/05/31-23:15:03.348840 7f18020006c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.348873 7f18020006c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.280283 7f9cf57fa6c0 Recovering log #260
2025/03/28-14:48:51.290774 7f9cf57fa6c0 Delete type=3 #258
2025/03/28-14:48:51.290830 7f9cf57fa6c0 Delete type=0 #260
2025/03/28-14:56:17.575147 7f9cf4ff96c0 Level-0 table #266: started
2025/03/28-14:56:17.575265 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
2025/03/28-14:56:17.588993 7f9cf4ff96c0 Delete type=0 #264
2025/03/28-14:56:17.620966 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.621063 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/mutations/000172.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000119
MANIFEST-000177

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.348077 7f18090006c0 Recovering log #117
2024/05/31-23:16:45.396965 7f18090006c0 Delete type=3 #115
2024/05/31-23:16:45.397017 7f18090006c0 Delete type=0 #117
2024/05/31-23:25:37.318478 7f18020006c0 Level-0 table #122: started
2024/05/31-23:25:37.318502 7f18020006c0 Level-0 table #122: 0 bytes OK
2024/05/31-23:25:37.324829 7f18020006c0 Delete type=0 #120
2024/05/31-23:25:37.332435 7f18020006c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.332503 7f18020006c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.089587 7f9cf6ffd6c0 Recovering log #175
2025/03/28-18:06:54.100163 7f9cf6ffd6c0 Delete type=3 #173
2025/03/28-18:06:54.100221 7f9cf6ffd6c0 Delete type=0 #175
2025/03/28-18:09:08.826965 7f9cf4ff96c0 Level-0 table #180: started
2025/03/28-18:09:08.826991 7f9cf4ff96c0 Level-0 table #180: 0 bytes OK
2025/03/28-18:09:08.833674 7f9cf4ff96c0 Delete type=0 #178
2025/03/28-18:09:08.833905 7f9cf4ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.833931 7f9cf4ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.500596 7f1802a006c0 Recovering log #113
2024/05/31-23:10:39.510853 7f1802a006c0 Delete type=3 #111
2024/05/31-23:10:39.510925 7f1802a006c0 Delete type=0 #113
2024/05/31-23:15:03.323199 7f18020006c0 Level-0 table #118: started
2024/05/31-23:15:03.323227 7f18020006c0 Level-0 table #118: 0 bytes OK
2024/05/31-23:15:03.329282 7f18020006c0 Delete type=0 #116
2024/05/31-23:15:03.348828 7f18020006c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.348866 7f18020006c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.249116 7f9cf6ffd6c0 Recovering log #170
2025/03/28-14:48:51.259201 7f9cf6ffd6c0 Delete type=3 #168
2025/03/28-14:48:51.259300 7f9cf6ffd6c0 Delete type=0 #170
2025/03/28-14:56:17.589172 7f9cf4ff96c0 Level-0 table #176: started
2025/03/28-14:56:17.589229 7f9cf4ff96c0 Level-0 table #176: 0 bytes OK
2025/03/28-14:56:17.599147 7f9cf4ff96c0 Delete type=0 #174
2025/03/28-14:56:17.621000 7f9cf4ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.621080 7f9cf4ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/profils/000262.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000209
MANIFEST-000267

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.686951 7f18090006c0 Recovering log #207
2024/05/31-23:16:45.748560 7f18090006c0 Delete type=3 #205
2024/05/31-23:16:45.748697 7f18090006c0 Delete type=0 #207
2024/05/31-23:25:37.358272 7f18020006c0 Level-0 table #212: started
2024/05/31-23:25:37.358380 7f18020006c0 Level-0 table #212: 0 bytes OK
2024/05/31-23:25:37.364928 7f18020006c0 Delete type=0 #210
2024/05/31-23:25:37.384137 7f18020006c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.384177 7f18020006c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.172273 7f9cf67fc6c0 Recovering log #265
2025/03/28-18:06:54.183178 7f9cf67fc6c0 Delete type=3 #263
2025/03/28-18:06:54.183275 7f9cf67fc6c0 Delete type=0 #265
2025/03/28-18:09:08.820046 7f9cf4ff96c0 Level-0 table #270: started
2025/03/28-18:09:08.820086 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
2025/03/28-18:09:08.826845 7f9cf4ff96c0 Delete type=0 #268
2025/03/28-18:09:08.833893 7f9cf4ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.833939 7f9cf4ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.573163 7f1802a006c0 Recovering log #203
2024/05/31-23:10:39.583089 7f1802a006c0 Delete type=3 #201
2024/05/31-23:10:39.583144 7f1802a006c0 Delete type=0 #203
2024/05/31-23:15:03.348953 7f18020006c0 Level-0 table #208: started
2024/05/31-23:15:03.348975 7f18020006c0 Level-0 table #208: 0 bytes OK
2024/05/31-23:15:03.355482 7f18020006c0 Delete type=0 #206
2024/05/31-23:15:03.380172 7f18020006c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.380211 7f18020006c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.338096 7f9cf57fa6c0 Recovering log #260
2025/03/28-14:48:51.348604 7f9cf57fa6c0 Delete type=3 #258
2025/03/28-14:48:51.348690 7f9cf57fa6c0 Delete type=0 #260
2025/03/28-14:56:17.632377 7f9cf4ff96c0 Level-0 table #266: started
2025/03/28-14:56:17.632408 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
2025/03/28-14:56:17.643709 7f9cf4ff96c0 Delete type=0 #264
2025/03/28-14:56:17.664820 7f9cf4ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.664869 7f9cf4ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000209
MANIFEST-000267

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.574393 7f18090006c0 Recovering log #207
2024/05/31-23:16:45.628695 7f18090006c0 Delete type=3 #205
2024/05/31-23:16:45.628831 7f18090006c0 Delete type=0 #207
2024/05/31-23:25:37.345824 7f18020006c0 Level-0 table #212: started
2024/05/31-23:25:37.345846 7f18020006c0 Level-0 table #212: 0 bytes OK
2024/05/31-23:25:37.351766 7f18020006c0 Delete type=0 #210
2024/05/31-23:25:37.358165 7f18020006c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.358202 7f18020006c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.142912 7f9cf6ffd6c0 Recovering log #265
2025/03/28-18:06:54.152918 7f9cf6ffd6c0 Delete type=3 #263
2025/03/28-18:06:54.153055 7f9cf6ffd6c0 Delete type=0 #265
2025/03/28-18:09:08.779338 7f9cf4ff96c0 Level-0 table #270: started
2025/03/28-18:09:08.779431 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
2025/03/28-18:09:08.786537 7f9cf4ff96c0 Delete type=0 #268
2025/03/28-18:09:08.806298 7f9cf4ff96c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.806379 7f9cf4ff96c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.548612 7f1802a006c0 Recovering log #203
2024/05/31-23:10:39.558607 7f1802a006c0 Delete type=3 #201
2024/05/31-23:10:39.558658 7f1802a006c0 Delete type=0 #203
2024/05/31-23:15:03.355577 7f18020006c0 Level-0 table #208: started
2024/05/31-23:15:03.355598 7f18020006c0 Level-0 table #208: 0 bytes OK
2024/05/31-23:15:03.361624 7f18020006c0 Delete type=0 #206
2024/05/31-23:15:03.380185 7f18020006c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.380217 7f18020006c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.307945 7f9cf6ffd6c0 Recovering log #260
2025/03/28-14:48:51.319172 7f9cf6ffd6c0 Delete type=3 #258
2025/03/28-14:48:51.319256 7f9cf6ffd6c0 Delete type=0 #260
2025/03/28-14:56:17.621210 7f9cf4ff96c0 Level-0 table #266: started
2025/03/28-14:56:17.621292 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
2025/03/28-14:56:17.632240 7f9cf4ff96c0 Delete type=0 #264
2025/03/28-14:56:17.664806 7f9cf4ff96c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.664849 7f9cf4ff96c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/scenes/000101.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000045
MANIFEST-000106

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.930564 7f18090006c0 Recovering log #43
2024/05/31-23:16:45.989362 7f18090006c0 Delete type=3 #41
2024/05/31-23:16:45.989419 7f18090006c0 Delete type=0 #43
2024/05/31-23:25:37.390761 7f18020006c0 Level-0 table #48: started
2024/05/31-23:25:37.390789 7f18020006c0 Level-0 table #48: 0 bytes OK
2024/05/31-23:25:37.397622 7f18020006c0 Delete type=0 #46
2024/05/31-23:25:37.403881 7f18020006c0 Manual compaction at level-0 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.403914 7f18020006c0 Manual compaction at level-1 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.226942 7f9cf67fc6c0 Recovering log #104
2025/03/28-18:06:54.236785 7f9cf67fc6c0 Delete type=3 #102
2025/03/28-18:06:54.236844 7f9cf67fc6c0 Delete type=0 #104
2025/03/28-18:09:08.854204 7f9cf4ff96c0 Level-0 table #109: started
2025/03/28-18:09:08.854246 7f9cf4ff96c0 Level-0 table #109: 0 bytes OK
2025/03/28-18:09:08.861935 7f9cf4ff96c0 Delete type=0 #107
2025/03/28-18:09:08.862106 7f9cf4ff96c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.862134 7f9cf4ff96c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.622521 7f1802a006c0 Recovering log #39
2024/05/31-23:10:39.632431 7f1802a006c0 Delete type=3 #37
2024/05/31-23:10:39.632512 7f1802a006c0 Delete type=0 #39
2024/05/31-23:15:03.406375 7f18020006c0 Level-0 table #44: started
2024/05/31-23:15:03.406414 7f18020006c0 Level-0 table #44: 0 bytes OK
2024/05/31-23:15:03.413058 7f18020006c0 Delete type=0 #42
2024/05/31-23:15:03.413318 7f18020006c0 Manual compaction at level-0 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.413376 7f18020006c0 Manual compaction at level-1 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.398097 7f9cf57fa6c0 Recovering log #99
2025/03/28-14:48:51.409374 7f9cf57fa6c0 Delete type=3 #97
2025/03/28-14:48:51.409433 7f9cf57fa6c0 Delete type=0 #99
2025/03/28-14:56:17.695479 7f9cf4ff96c0 Level-0 table #105: started
2025/03/28-14:56:17.695512 7f9cf4ff96c0 Level-0 table #105: 0 bytes OK
2025/03/28-14:56:17.706325 7f9cf4ff96c0 Delete type=0 #103
2025/03/28-14:56:17.706520 7f9cf4ff96c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.706557 7f9cf4ff96c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000208
MANIFEST-000264

View File

@ -1,7 +1,7 @@
2024/05/31-23:16:45.866029 7f1803e006c0 Recovering log #206
2024/05/31-23:16:45.927421 7f1803e006c0 Delete type=3 #204
2024/05/31-23:16:45.927530 7f1803e006c0 Delete type=0 #206
2024/05/31-23:25:37.371152 7f18020006c0 Level-0 table #211: started
2024/05/31-23:25:37.371175 7f18020006c0 Level-0 table #211: 0 bytes OK
2024/05/31-23:25:37.377827 7f18020006c0 Delete type=0 #209
2024/05/31-23:25:37.384161 7f18020006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.214203 7f9cf5ffb6c0 Recovering log #262
2025/03/28-18:06:54.224626 7f9cf5ffb6c0 Delete type=3 #260
2025/03/28-18:06:54.224678 7f9cf5ffb6c0 Delete type=0 #262
2025/03/28-18:09:08.847807 7f9cf4ff96c0 Level-0 table #267: started
2025/03/28-18:09:08.847847 7f9cf4ff96c0 Level-0 table #267: 0 bytes OK
2025/03/28-18:09:08.854019 7f9cf4ff96c0 Delete type=0 #265
2025/03/28-18:09:08.862095 7f9cf4ff96c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/05/31-23:10:39.610395 7f18034006c0 Recovering log #202
2024/05/31-23:10:39.620290 7f18034006c0 Delete type=3 #200
2024/05/31-23:10:39.620347 7f18034006c0 Delete type=0 #202
2024/05/31-23:15:03.400156 7f18020006c0 Level-0 table #207: started
2024/05/31-23:15:03.400203 7f18020006c0 Level-0 table #207: 0 bytes OK
2024/05/31-23:15:03.406248 7f18020006c0 Delete type=0 #205
2024/05/31-23:15:03.413300 7f18020006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.384307 7f9cf5ffb6c0 Recovering log #258
2025/03/28-14:48:51.394425 7f9cf5ffb6c0 Delete type=3 #256
2025/03/28-14:48:51.394516 7f9cf5ffb6c0 Delete type=0 #258
2025/03/28-14:56:17.664999 7f9cf4ff96c0 Level-0 table #263: started
2025/03/28-14:56:17.665030 7f9cf4ff96c0 Level-0 table #263: 0 bytes OK
2025/03/28-14:56:17.674846 7f9cf4ff96c0 Delete type=0 #261
2025/03/28-14:56:17.706469 7f9cf4ff96c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000209
MANIFEST-000267

View File

@ -1,8 +1,8 @@
2024/05/31-23:16:45.810970 7f18090006c0 Recovering log #207
2024/05/31-23:16:45.864448 7f18090006c0 Delete type=3 #205
2024/05/31-23:16:45.864504 7f18090006c0 Delete type=0 #207
2024/05/31-23:25:37.377981 7f18020006c0 Level-0 table #212: started
2024/05/31-23:25:37.378019 7f18020006c0 Level-0 table #212: 0 bytes OK
2024/05/31-23:25:37.384026 7f18020006c0 Delete type=0 #210
2024/05/31-23:25:37.384170 7f18020006c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2024/05/31-23:25:37.384183 7f18020006c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2025/03/28-18:06:54.200895 7f9cf6ffd6c0 Recovering log #265
2025/03/28-18:06:54.211375 7f9cf6ffd6c0 Delete type=3 #263
2025/03/28-18:06:54.211438 7f9cf6ffd6c0 Delete type=0 #265
2025/03/28-18:09:08.840568 7f9cf4ff96c0 Level-0 table #270: started
2025/03/28-18:09:08.840595 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
2025/03/28-18:09:08.847609 7f9cf4ff96c0 Delete type=0 #268
2025/03/28-18:09:08.862082 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2025/03/28-18:09:08.862116 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/05/31-23:10:39.597772 7f1802a006c0 Recovering log #203
2024/05/31-23:10:39.607823 7f1802a006c0 Delete type=3 #201
2024/05/31-23:10:39.607881 7f1802a006c0 Delete type=0 #203
2024/05/31-23:15:03.391835 7f18020006c0 Level-0 table #208: started
2024/05/31-23:15:03.391877 7f18020006c0 Level-0 table #208: 0 bytes OK
2024/05/31-23:15:03.399899 7f18020006c0 Delete type=0 #206
2024/05/31-23:15:03.413284 7f18020006c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2024/05/31-23:15:03.413353 7f18020006c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2025/03/28-14:48:51.369259 7f9cf6ffd6c0 Recovering log #260
2025/03/28-14:48:51.380348 7f9cf6ffd6c0 Delete type=3 #258
2025/03/28-14:48:51.380457 7f9cf6ffd6c0 Delete type=0 #260
2025/03/28-14:56:17.674984 7f9cf4ff96c0 Level-0 table #266: started
2025/03/28-14:56:17.675014 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
2025/03/28-14:56:17.684396 7f9cf4ff96c0 Delete type=0 #264
2025/03/28-14:56:17.706491 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2025/03/28-14:56:17.706530 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/talents/000263.ldb Normal file

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More