Compare commits

..

5 Commits

Author SHA1 Message Date
20ab9a17a4 Update metrics data 2024-02-07 22:11:32 +01:00
5de40d4998 Ajout du xplog 2024-01-12 18:42:12 +01:00
c7c26c0033 Ajout macro roll 2024-01-02 23:34:38 +01:00
5c4c6d73ee Add new translations 2023-12-05 10:23:55 +01:00
1a0049a3f5 Add new translations 2023-12-05 10:23:39 +01:00
160 changed files with 568 additions and 405 deletions

View File

@ -24,6 +24,7 @@ Les livres du jeu sont nécessaires pour jouer, et sont disponibles ici : http:/
Barbarians of Lemuria, Mythic edition, est un jeu de Simon Washbourne
Auteur : Simon Washbourne.
## Crédits de la version française
Barbarians of Lemuria, le jeu de rôle de Sword & Sorcery, est une publication des éditions Ludospherik, tous droits réservés.

View File

@ -17,11 +17,11 @@ Changes :
- Correction sur l'encaissement sans armure
- Ajout d'une note d'explication sur l'initiative
# v11.0.8
- Correction sur les malus de bouclier (blocage)
- Corrrection sur le malus d'init des boucliers qui était mal affiché dans la fiche d'item
# v10.4.0
- Ajout de la gestion d'effets

View File

@ -139,6 +139,12 @@
"BOL.ui.registerInit": "Enregistrer comme Init. de combat",
"BOL.ui.initMalus": "Malus d'initiative",
"BOL.ui.magicnewrules": "Règles supplémentaires (cf. supplément fan-made Sorcellerie!)",
"BOL.ui.other":"Autre",
"BOL.ui.career":"Carrière",
"BOL.ui.boon":"Avantage",
"BOL.ui.flaw":"Désanvatage",
"BOL.ui.cost":"Cout XP",
"BOL.ui.date":"Date",
"BOL.ui.isSorcerer": "Carrière de Sorcier ?",
"BOL.ui.isAlchemist": "Carrière d'Alchimiste ?",
@ -251,6 +257,7 @@
"BOL.featureSubtypes.effects": "Effets",
"BOL.featureSubtypes.boleffect": "Effet",
"BOL.featureSubtypes.horoscope": "Horoscope",
"BOL.featureSubtypes.xplog": "Log d'XP",
"BOL.fightOptionTypes.armor": "Attaque au défaut d'armure",
"BOL.fightOptionTypes.intrepid": "Attaque intrépide",
@ -581,6 +588,8 @@
"BOL.ui.biosigns": "Signes distinctifs",
"BOL.ui.biodescription": "Description",
"BOL.ui.bionotes": "Notes",
"BOL.ui.xplog":"Journal d'XP",
"BOL.ui.value":"Valeur",
"BOL.chat.welcome1": "Bienvenue dans Barbarians of Lemuria (Ludospherik version)",
"BOL.chat.welcome2": "Les livres nécessaires pour jouer sont disponibles sur le site de <a href='http://www.ludospherik.fr/content/14-barbarians-of-lemuria'>l'éditeur Ludospherik.</a>",
@ -589,6 +598,10 @@
"BOL.chat.welcome5": "Consulter l'aide en ligne pour plus d'informations : @UUID[Compendium.bol.aides-de-jeu.97rugQOtiwt8zPfQ]{Aide du Jeu}.",
"BOL.chat.welcome6": "Bon jeu en Lemurie !",
"BOL.chat.nodamage": "Ne pas appliquer les dommages",
"BOL.chat.pcwarning": "Attention ! Aucun personnage n'est relié au joueur !",
"BOL.chat.pcwarningmsg": "<b>ATTENTION</b> Le joueur n'est relié à aucun personnage !",
"BOL.chat.pcnotlinked": "Le token du personnage joueur n'est pas relié à l'acteur",
"BOL.chat.pcnotlinkedmsg": "<b>ATTENTION</b> Le token du personnage joueur n'est pas relié à l'acteur !",
"BOL.settings.rollArmor": "Effectuer des jets pour les armures",
"BOL.settings.rollArmorTooltip": "Effectue un jet de dés pour les armures (valeur fixe si désactivé)",

View File

@ -27,7 +27,7 @@ export class BoLActorSheet extends ActorSheet {
function onLoad() {
let logoSheet = BoLUtility.getLogoActorSheet()
$(".bol-actor-form").css("backgroundImage",`url(${logoSheet})`)
$(".bol-actor-form").css("backgroundImage", `url(${logoSheet})`)
}
// Setup everything onload
$(function () { onLoad(); });
@ -147,6 +147,7 @@ export class BoLActorSheet extends ActorSheet {
formData.fightoptions = this.actor.fightoptions
formData.ammos = this.actor.ammos
formData.misc = this.actor.misc
formData.xplog = this.actor.xplog
formData.combat = this.actor.buildCombat()
formData.initiativeRank = this.actor.getInitiativeRank()
//formData.combatCreature = this.actor.buildCombatCreature()
@ -155,12 +156,12 @@ export class BoLActorSheet extends ActorSheet {
formData.options = this.options
formData.owner = this.document.isOwner
formData.editScore = this.options.editScore
formData.useBougette = (this.actor.type == "character" && BoLUtility.getUseBougette()) || false
formData.useBougette = (this.actor.type == "character" && BoLUtility.getUseBougette()) || false
formData.bougette = this.actor.getBougette()
formData.charType = this.actor.getCharType()
formData.villainy = this.actor.getVillainy()
formData.biography = await TextEditor.enrichHTML(this.object.system.details?.biography || "", {async: true})
formData.notes = await TextEditor.enrichHTML(this.object.system.details.notes || "", {async: true})
formData.villainy = this.actor.getVillainy()
formData.biography = await TextEditor.enrichHTML(this.object.system.details?.biography || "", { async: true })
formData.notes = await TextEditor.enrichHTML(this.object.system.details.notes || "", { async: true })
formData.isSorcerer = this.actor.isSorcerer()
formData.isAlchemist = this.actor.isAlchemist()
formData.isAstrologer = this.actor.isAstrologer()
@ -248,22 +249,22 @@ export class BoLActorSheet extends ActorSheet {
case "attributexp":
this.actor.incAttributeXP(dataset.key)
break;
case "bougette":
this.actor.rollBougette()
break;
case "careerxp":
this.actor.incCareerXP( li.data("item-id"))
this.actor.incCareerXP(li.data("item-id"))
break;
case "horoscope-minor":
BoLRoll.horoscopeCheck(this.actor, event, "minor")
break
case "horoscope-major":
BoLRoll.horoscopeCheck(this.actor, event, "major")
break
break
case "horoscope-major-group":
BoLRoll.horoscopeCheck(this.actor, event, "majorgroup")
break
break
case "bougette":
this.actor.rollBougette()
break;
default: break;
}
}

View File

@ -204,6 +204,24 @@ export class BoLActor extends Actor {
return undefined
}
/* -------------------------------------------- */
addXPLog(type, name, cost, value) {
let xplog = {
name: "XP : "+game.i18n.localize(type), type: "feature",
img: "icons/magic/symbols/chevron-elipse-circle-blue.webp",
system: {
subtype: "xplog", properties: {
xptype: type,
xpdate: new Date().toLocaleDateString(),
xpname: name,
xpcost: cost,
xpvalue: value
}
}
}
this.createEmbeddedDocuments('Item', [xplog])
}
/* -------------------------------------------- */
incAttributeXP(key) {
let attr = duplicate(this.system.attributes[key])
@ -214,6 +232,7 @@ export class BoLActor extends Actor {
attr.value += 1
xp.spent += nextXP
this.update({ [`system.attributes.${key}`]: attr, [`system.xp`]: xp })
this.addXPLog("attribute", key, nextXP, attr.value)
} else {
ui.notifications.warn("Pas assez de points d'expérience !")
}
@ -230,6 +249,7 @@ export class BoLActor extends Actor {
apt.value += 1
xp.spent += nextXP
this.update({ [`system.aptitudes.${key}`]: apt, [`system.xp`]: xp })
this.addXPLog("aptitude", key, nextXP, apt.value)
} else {
ui.notifications.warn("Pas assez de points d'expérience !")
}
@ -246,6 +266,7 @@ export class BoLActor extends Actor {
xp.spent += nextXP
this.update({ [`system.xp`]: xp })
this.updateEmbeddedDocuments('Item', [{ _id: career._id, 'system.rank': career.system.rank + 1 }])
this.addXPLog("career", career.name, nextXP, career.system.rank+1)
} else {
ui.notifications.warn("Pas assez de points d'expérience !")
}
@ -298,6 +319,9 @@ export class BoLActor extends Actor {
get boleffects() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "boleffect")
}
get xplog() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "xplog")
}
get horoscopes() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "horoscope")
}

View File

@ -15,8 +15,10 @@ import { BoLCombatManager } from "./system/bol-combat.js"
import { BoLTokenHud } from "./system/bol-action-hud.js"
import { BoLHotbar } from "./system/bol-hotbar.js"
import { BoLAdventureGenerator } from "./system/bol-adventure-generator.js"
import { BoLCommands} from "./system/bol-commands.js"
import { BoLCharacterSummary} from "./system/bol-character-summary.js"
import { BoLCommands } from "./system/bol-commands.js"
import { BoLCharacterSummary } from "./system/bol-character-summary.js"
import { BoLRoll } from "./controllers/bol-rolls.js"
import { ClassCounter} from "https://www.uberwald.me/fvtt_appcount/count-class-ready.js"
/* -------------------------------------------- */
Hooks.once('init', async function () {
@ -25,10 +27,11 @@ Hooks.once('init', async function () {
BoLActor,
BoLItem,
BoLHotbar,
BoLRoll,
macros: Macros,
config: BOL
};
// Game socket
game.socket.on("system.bol", sockmsg => {
BoLUtility.onSocketMessage(sockmsg);
@ -75,31 +78,6 @@ Hooks.once('init', async function () {
});
/* -------------------------------------------- */
// Register world usage statistics
function registerUsageCount( registerKey ) {
if ( game.user.isGM ) {
game.settings.register(registerKey, "world-key", {
name: "Unique world key",
scope: "world",
config: false,
default: "",
type: String
});
let worldKey = game.settings.get(registerKey, "world-key")
if ( worldKey == undefined || worldKey == "" ) {
worldKey = randomID(32)
game.settings.set(registerKey, "world-key", worldKey )
}
// Simple API counter
let regURL = `https://www.uberwald.me/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.version}"`
//$.ajaxSetup({
//headers: { 'Access-Control-Allow-Origin': '*' }
//})
$.ajax(regURL)
}
}
/* -------------------------------------------- */
function welcomeMessage() {
@ -108,24 +86,40 @@ function welcomeMessage() {
whisper: [game.user.id],
content: `<div id="welcome-message-pegasus"><span class="rdd-roll-part">
<strong>` + game.i18n.localize("BOL.chat.welcome1") + `</strong><p>` +
game.i18n.localize("BOL.chat.welcome2") + "<p>" +
game.i18n.localize("BOL.chat.welcome3") + "<p>" +
game.i18n.localize("BOL.chat.welcome4") + "</p>" +
game.i18n.localize("BOL.chat.welcome5") + "<br>" +
game.i18n.localize("BOL.chat.welcome6")
} )
game.i18n.localize("BOL.chat.welcome2") + "<p>" +
game.i18n.localize("BOL.chat.welcome3") + "<p>" +
game.i18n.localize("BOL.chat.welcome4") + "</p>" +
game.i18n.localize("BOL.chat.welcome5") + "<br>" +
game.i18n.localize("BOL.chat.welcome6")
})
}
/* -------------------------------------------- */
Hooks.once('ready', async function () {
BoLUtility.ready()
BoLCharacterSummary.ready()
registerUsageCount(game.system.id)
BoLCharacterSummary.ready()
ClassCounter.registerUsageCount()
welcomeMessage()
// User warning
if (!game.user.isGM && game.user.character == undefined) {
ui.notifications.info(game.i18n.localize("BOL.chat.pcwarning"));
ChatMessage.create({
content: game.i18n.localize("BOL.chat.pcwarningmsg") + game.user.name,
user: game.user._id
});
}
if (!game.user.isGM && game.user.character && !game.user.character.prototypeToken.actorLink) {
ui.notifications.info(game.i18n.localize("BOL.chat.pcnotlinked"));
ChatMessage.create({
content: game.i18n.localize("BOL.chat.pcnotlinkedmsg") + game.user.name,
user: game.user._id
});
}
})

View File

@ -65,7 +65,6 @@ export class BoLRoll {
adv: "0",
mod: 0,
modRanged: 0,
aptValue: 0,
bolEffects: actor.boleffects,
horoscopeGroupList: this.buildHoroscopeGroupList()
}
@ -78,7 +77,7 @@ export class BoLRoll {
}
/* -------------------------------------------- */
static attributeCheck(actor, key, event, combatData) {
static attributeCheck(actor, key="vigor", event=undefined, combatData=undefined) {
let attribute = eval(`actor.system.attributes.${key}`)
@ -91,7 +90,7 @@ export class BoLRoll {
}
/* -------------------------------------------- */
static aptitudeCheck(actor, key, event, combatData) {
static aptitudeCheck(actor, key="init", event=undefined, combatData=undefined) {
let aptitude = eval(`actor.system.aptitudes.${key}`)
let attrKey = this.getDefaultAttribute(key)

View File

@ -28,7 +28,9 @@ export class BoLItemSheet extends ItemSheet {
data.isGM = game.user.isGM;
data.itemProperties = this.item.itemProperties;
data.description = await TextEditor.enrichHTML(this.object.system.description, { async: true })
if (data.document.actor) {
data.careers = data.document.actor.careers
}
// Dynamic default data fix/adapt
if (itemData.type == "item") {
if (!itemData.system.category) {

View File

@ -31,6 +31,15 @@ BOL.damageMultiplier = {
"8": "x8"
}
BOL.listTypes = {
"attribute": "BOL.ui.attribute",
"aptitude": "BOL.ui.aptitude",
"career": "BOL.ui.career",
"boon": "BOL.ui.boon",
"flaw": "BOL.ui.flaw",
"other": "BOL.ui.other"
}
BOL.spellType = {
"0": "BOL.spellItem.charm",
"1": "BOL.spellItem.circle1",
@ -271,6 +280,7 @@ BOL.featureSubtypes = {
"fightoption" : "BOL.featureSubtypes.fightOption",
"boleffect": "BOL.featureSubtypes.effect",
"horoscope": "BOL.featureSubtypes.horoscope",
"xplog": "BOL.featureSubtypes.xplog",
}
BOL.fightOptionTypes = {
@ -286,7 +296,7 @@ BOL.fightOptionTypes = {
BOL.itemIcons = {
"item": "icons/containers/chest/chest-worn-oak-tan.webp",
"capacity": "icons/sundries/scrolls/scroll-plain-tan-red.webp",
"feature": "icons/sundries/scrolls/scroll-plain-tan-red.webp",
"species": "icons/environment/people/group.webp",
"profile": "icons/sundries/documents/blueprint-axe.webp",
"path": "icons/sundries/books/book-embossed-gold-red.webp"

View File

@ -43,6 +43,7 @@ export const preloadHandlebarsTemplates = async function () {
"systems/bol/templates/item/parts/properties/feature/fightoption-properties.hbs",
"systems/bol/templates/item/parts/properties/item/weapon-vehicle-properties.hbs",
"systems/bol/templates/item/parts/properties/feature/horoscope-properties.hbs",
"systems/bol/templates/item/parts/properties/feature/xplog-properties.hbs",
// DIALOGS
"systems/bol/templates/chat/rolls/attack-damage-card.hbs",

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000107
MANIFEST-000176

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.430277 7f84f7fff6c0 Recovering log #105
2023/12/04-21:16:34.440834 7f84f7fff6c0 Delete type=3 #103
2023/12/04-21:16:34.440885 7f84f7fff6c0 Delete type=0 #105
2023/12/04-21:29:36.294789 7f84f5ffb6c0 Level-0 table #110: started
2023/12/04-21:29:36.294815 7f84f5ffb6c0 Level-0 table #110: 0 bytes OK
2023/12/04-21:29:36.301173 7f84f5ffb6c0 Delete type=0 #108
2023/12/04-21:29:36.301317 7f84f5ffb6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.301343 7f84f5ffb6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.693613 7fdbf74006c0 Recovering log #174
2024/02/07-19:56:06.751088 7fdbf74006c0 Delete type=3 #172
2024/02/07-19:56:06.751212 7fdbf74006c0 Delete type=0 #174
2024/02/07-21:59:09.854143 7fdbf4c006c0 Level-0 table #179: started
2024/02/07-21:59:09.854177 7fdbf4c006c0 Level-0 table #179: 0 bytes OK
2024/02/07-21:59:09.860969 7fdbf4c006c0 Delete type=0 #177
2024/02/07-21:59:09.880931 7fdbf4c006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.881016 7fdbf4c006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.144165 7f5610ff96c0 Recovering log #101
2023/10/28-18:46:58.154293 7f5610ff96c0 Delete type=3 #99
2023/10/28-18:46:58.154395 7f5610ff96c0 Delete type=0 #101
2023/10/28-18:47:32.356263 7f56037fe6c0 Level-0 table #106: started
2023/10/28-18:47:32.356293 7f56037fe6c0 Level-0 table #106: 0 bytes OK
2023/10/28-18:47:32.362824 7f56037fe6c0 Delete type=0 #104
2023/10/28-18:47:32.375967 7f56037fe6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.376034 7f56037fe6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.877361 7ff634c006c0 Recovering log #170
2024/02/04-23:08:12.887700 7ff634c006c0 Delete type=3 #168
2024/02/04-23:08:12.887788 7ff634c006c0 Delete type=0 #170
2024/02/05-07:38:07.233915 7ff62e6006c0 Level-0 table #175: started
2024/02/05-07:38:07.233990 7ff62e6006c0 Level-0 table #175: 0 bytes OK
2024/02/05-07:38:07.240361 7ff62e6006c0 Delete type=0 #173
2024/02/05-07:38:07.261065 7ff62e6006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.261109 7ff62e6006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000014
MANIFEST-000082

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.402100 7f84f6ffd6c0 Recovering log #12
2023/12/04-21:16:34.413052 7f84f6ffd6c0 Delete type=3 #10
2023/12/04-21:16:34.413101 7f84f6ffd6c0 Delete type=0 #12
2023/12/04-21:29:36.274254 7f84f5ffb6c0 Level-0 table #17: started
2023/12/04-21:29:36.274306 7f84f5ffb6c0 Level-0 table #17: 0 bytes OK
2023/12/04-21:29:36.281091 7f84f5ffb6c0 Delete type=0 #15
2023/12/04-21:29:36.301284 7f84f5ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.301326 7f84f5ffb6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.556852 7fdbf56006c0 Recovering log #80
2024/02/07-19:56:06.618130 7fdbf56006c0 Delete type=3 #78
2024/02/07-19:56:06.618241 7fdbf56006c0 Delete type=0 #80
2024/02/07-21:59:09.861092 7fdbf4c006c0 Level-0 table #85: started
2024/02/07-21:59:09.861122 7fdbf4c006c0 Level-0 table #85: 0 bytes OK
2024/02/07-21:59:09.867886 7fdbf4c006c0 Delete type=0 #83
2024/02/07-21:59:09.880948 7fdbf4c006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.881007 7fdbf4c006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.118619 7f5603fff6c0 Recovering log #8
2023/10/28-18:46:58.129553 7f5603fff6c0 Delete type=3 #6
2023/10/28-18:46:58.129618 7f5603fff6c0 Delete type=0 #8
2023/10/28-18:47:32.323904 7f56037fe6c0 Level-0 table #13: started
2023/10/28-18:47:32.323933 7f56037fe6c0 Level-0 table #13: 0 bytes OK
2023/10/28-18:47:32.329984 7f56037fe6c0 Delete type=0 #11
2023/10/28-18:47:32.349515 7f56037fe6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.349581 7f56037fe6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.851523 7ff62fe006c0 Recovering log #76
2024/02/04-23:08:12.862496 7ff62fe006c0 Delete type=3 #74
2024/02/04-23:08:12.862563 7ff62fe006c0 Delete type=0 #76
2024/02/05-07:38:07.219273 7ff62e6006c0 Level-0 table #81: started
2024/02/05-07:38:07.219306 7ff62e6006c0 Level-0 table #81: 0 bytes OK
2024/02/05-07:38:07.225772 7ff62e6006c0 Delete type=0 #79
2024/02/05-07:38:07.233682 7ff62e6006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.233734 7ff62e6006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/boons/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000175

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.244782 7f84f6ffd6c0 Recovering log #104
2023/12/04-21:16:34.255803 7f84f6ffd6c0 Delete type=3 #102
2023/12/04-21:16:34.255859 7f84f6ffd6c0 Delete type=0 #104
2023/12/04-21:29:36.227120 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.227155 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.233490 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.247612 7f84f5ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.247638 7f84f5ffb6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.002947 7fdbf56006c0 Recovering log #173
2024/02/07-19:56:06.064045 7fdbf56006c0 Delete type=3 #171
2024/02/07-19:56:06.064169 7fdbf56006c0 Delete type=0 #173
2024/02/07-21:59:09.806013 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.806054 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.812540 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.826360 7fdbf4c006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.826391 7fdbf4c006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.021346 7f5603fff6c0 Recovering log #100
2023/10/28-18:46:58.032316 7f5603fff6c0 Delete type=3 #98
2023/10/28-18:46:58.032370 7f5603fff6c0 Delete type=0 #100
2023/10/28-18:47:32.275625 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.275699 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.281755 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.288117 7f56037fe6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.298397 7f56037fe6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.748926 7ff62fe006c0 Recovering log #169
2024/02/04-23:08:12.759343 7ff62fe006c0 Delete type=3 #167
2024/02/04-23:08:12.759408 7ff62fe006c0 Delete type=0 #169
2024/02/05-07:38:07.153586 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.153624 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.161240 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.168014 7ff62e6006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.168060 7ff62e6006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/boons/MANIFEST-000175 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000175

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.258787 7f84f77fe6c0 Recovering log #104
2023/12/04-21:16:34.268652 7f84f77fe6c0 Delete type=3 #102
2023/12/04-21:16:34.268705 7f84f77fe6c0 Delete type=0 #104
2023/12/04-21:29:36.233597 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.233621 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.239701 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.247623 7f84f5ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.247651 7f84f5ffb6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.072445 7fdbf6a006c0 Recovering log #173
2024/02/07-19:56:06.125880 7fdbf6a006c0 Delete type=3 #171
2024/02/07-19:56:06.126018 7fdbf6a006c0 Delete type=0 #173
2024/02/07-21:59:09.812699 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.812748 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.819081 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.826371 7fdbf4c006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.826400 7fdbf4c006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.033991 7f5611ffb6c0 Recovering log #100
2023/10/28-18:46:58.043491 7f5611ffb6c0 Delete type=3 #98
2023/10/28-18:46:58.043553 7f5611ffb6c0 Delete type=0 #100
2023/10/28-18:47:32.281934 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.281973 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.287993 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.298372 7f56037fe6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.298448 7f56037fe6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.762192 7ff62f4006c0 Recovering log #169
2024/02/04-23:08:12.772428 7ff62f4006c0 Delete type=3 #167
2024/02/04-23:08:12.772511 7ff62f4006c0 Delete type=0 #169
2024/02/05-07:38:07.161374 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.161410 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.167670 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.168027 7ff62e6006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.178641 7ff62e6006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/careers/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000175

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.285844 7f84f67fc6c0 Recovering log #104
2023/12/04-21:16:34.295915 7f84f67fc6c0 Delete type=3 #102
2023/12/04-21:16:34.295974 7f84f67fc6c0 Delete type=0 #104
2023/12/04-21:29:36.267733 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.267761 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.273875 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.274078 7f84f5ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.274142 7f84f5ffb6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.194138 7fdbf60006c0 Recovering log #173
2024/02/07-19:56:06.250241 7fdbf60006c0 Delete type=3 #171
2024/02/07-19:56:06.250339 7fdbf60006c0 Delete type=0 #173
2024/02/07-21:59:09.833968 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.834000 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.840070 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.853853 7fdbf4c006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.853958 7fdbf4c006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.057967 7f56117fa6c0 Recovering log #100
2023/10/28-18:46:58.068576 7f56117fa6c0 Delete type=3 #98
2023/10/28-18:46:58.068630 7f56117fa6c0 Delete type=0 #100
2023/10/28-18:47:32.298557 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.298612 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.304559 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.323741 7f56037fe6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.323783 7f56037fe6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.787685 7ff6356006c0 Recovering log #169
2024/02/04-23:08:12.797161 7ff6356006c0 Delete type=3 #167
2024/02/04-23:08:12.797226 7ff6356006c0 Delete type=0 #169
2024/02/05-07:38:07.185466 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.185514 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.192356 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.199331 7ff62e6006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.205700 7ff62e6006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/cartes/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000175

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.444268 7f84f67fc6c0 Recovering log #104
2023/12/04-21:16:34.454337 7f84f67fc6c0 Delete type=3 #102
2023/12/04-21:16:34.454390 7f84f67fc6c0 Delete type=0 #104
2023/12/04-21:29:36.307716 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.307782 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.314556 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.327965 7f84f5ffb6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.328032 7f84f5ffb6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.759932 7fdbf60006c0 Recovering log #173
2024/02/07-19:56:06.817453 7fdbf60006c0 Delete type=3 #171
2024/02/07-19:56:06.817555 7fdbf60006c0 Delete type=0 #173
2024/02/07-21:59:09.881125 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.881171 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.887471 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.909277 7fdbf4c006c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.909331 7fdbf4c006c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.157567 7f56117fa6c0 Recovering log #100
2023/10/28-18:46:58.168362 7f56117fa6c0 Delete type=3 #98
2023/10/28-18:46:58.168445 7f56117fa6c0 Delete type=0 #100
2023/10/28-18:47:32.362933 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.362962 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.369115 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.375986 7f56037fe6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.376049 7f56037fe6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.891083 7ff6356006c0 Recovering log #169
2024/02/04-23:08:12.902039 7ff6356006c0 Delete type=3 #167
2024/02/04-23:08:12.902105 7ff6356006c0 Delete type=0 #169
2024/02/05-07:38:07.240480 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.240513 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.247590 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.261083 7ff62e6006c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.261132 7ff62e6006c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/creatures/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000175

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.555441 7f84f77fe6c0 Recovering log #104
2023/12/04-21:16:34.566877 7f84f77fe6c0 Delete type=3 #102
2023/12/04-21:16:34.566941 7f84f77fe6c0 Delete type=0 #104
2023/12/04-21:29:36.355366 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.355392 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.362705 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.362912 7f84f5ffb6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.362955 7f84f5ffb6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/07-19:56:07.294359 7fdbf6a006c0 Recovering log #173
2024/02/07-19:56:07.381216 7fdbf6a006c0 Delete type=3 #171
2024/02/07-19:56:07.381357 7fdbf6a006c0 Delete type=0 #173
2024/02/07-21:59:09.936176 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.936206 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.943450 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.950178 7fdbf4c006c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.950219 7fdbf4c006c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.256101 7f5611ffb6c0 Recovering log #100
2023/10/28-18:46:58.266925 7f5611ffb6c0 Delete type=3 #98
2023/10/28-18:46:58.267031 7f5611ffb6c0 Delete type=0 #100
2023/10/28-18:47:32.403078 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.403107 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.410392 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.416800 7f56037fe6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.416838 7f56037fe6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.998444 7ff6356006c0 Recovering log #169
2024/02/04-23:08:13.009585 7ff6356006c0 Delete type=3 #167
2024/02/04-23:08:13.009705 7ff6356006c0 Delete type=0 #169
2024/02/05-07:38:07.294572 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.294605 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.301078 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.307727 7ff62e6006c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.307802 7ff62e6006c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000174

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.543411 7f84f6ffd6c0 Recovering log #104
2023/12/04-21:16:34.553517 7f84f6ffd6c0 Delete type=3 #102
2023/12/04-21:16:34.553574 7f84f6ffd6c0 Delete type=0 #104
2023/12/04-21:29:36.348547 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.348582 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.355093 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.355262 7f84f5ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.355296 7f84f5ffb6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/07-19:56:07.228488 7fdbf56006c0 Recovering log #172
2024/02/07-19:56:07.291311 7fdbf56006c0 Delete type=3 #170
2024/02/07-19:56:07.291491 7fdbf56006c0 Delete type=0 #172
2024/02/07-21:59:09.929699 7fdbf4c006c0 Level-0 table #177: started
2024/02/07-21:59:09.929724 7fdbf4c006c0 Level-0 table #177: 0 bytes OK
2024/02/07-21:59:09.935882 7fdbf4c006c0 Delete type=0 #175
2024/02/07-21:59:09.936049 7fdbf4c006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.936080 7fdbf4c006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.244978 7f5603fff6c0 Recovering log #100
2023/10/28-18:46:58.254318 7f5603fff6c0 Delete type=3 #98
2023/10/28-18:46:58.254370 7f5603fff6c0 Delete type=0 #100
2023/10/28-18:47:32.410495 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.410517 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.416657 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.416814 7f56037fe6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.416846 7f56037fe6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.985708 7ff62fe006c0 Recovering log #168
2024/02/04-23:08:12.996379 7ff62fe006c0 Delete type=3 #166
2024/02/04-23:08:12.996440 7ff62fe006c0 Delete type=0 #168
2024/02/05-07:38:07.287274 7ff62e6006c0 Level-0 table #173: started
2024/02/05-07:38:07.287318 7ff62e6006c0 Level-0 table #173: 0 bytes OK
2024/02/05-07:38:07.294431 7ff62e6006c0 Delete type=0 #171
2024/02/05-07:38:07.307711 7ff62e6006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.307750 7ff62e6006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000108
MANIFEST-000176

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.326886 7f84f7fff6c0 Recovering log #106
2023/12/04-21:16:34.337231 7f84f7fff6c0 Delete type=3 #104
2023/12/04-21:16:34.337341 7f84f7fff6c0 Delete type=0 #106
2023/12/04-21:29:36.247774 7f84f5ffb6c0 Level-0 table #111: started
2023/12/04-21:29:36.247806 7f84f5ffb6c0 Level-0 table #111: 0 bytes OK
2023/12/04-21:29:36.253805 7f84f5ffb6c0 Delete type=0 #109
2023/12/04-21:29:36.274024 7f84f5ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.274096 7f84f5ffb6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.385989 7fdbf74006c0 Recovering log #174
2024/02/07-19:56:06.446283 7fdbf74006c0 Delete type=3 #172
2024/02/07-19:56:06.446441 7fdbf74006c0 Delete type=0 #174
2024/02/07-21:59:09.840202 7fdbf4c006c0 Level-0 table #179: started
2024/02/07-21:59:09.840243 7fdbf4c006c0 Level-0 table #179: 0 bytes OK
2024/02/07-21:59:09.846953 7fdbf4c006c0 Delete type=0 #177
2024/02/07-21:59:09.853881 7fdbf4c006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.853983 7fdbf4c006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.094686 7f5610ff96c0 Recovering log #102
2023/10/28-18:46:58.104878 7f5610ff96c0 Delete type=3 #100
2023/10/28-18:46:58.104944 7f5610ff96c0 Delete type=0 #102
2023/10/28-18:47:32.336166 7f56037fe6c0 Level-0 table #107: started
2023/10/28-18:47:32.336197 7f56037fe6c0 Level-0 table #107: 0 bytes OK
2023/10/28-18:47:32.342982 7f56037fe6c0 Delete type=0 #105
2023/10/28-18:47:32.349554 7f56037fe6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.349606 7f56037fe6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.826307 7ff634c006c0 Recovering log #170
2024/02/04-23:08:12.836127 7ff634c006c0 Delete type=3 #168
2024/02/04-23:08:12.836208 7ff634c006c0 Delete type=0 #170
2024/02/05-07:38:07.225889 7ff62e6006c0 Level-0 table #175: started
2024/02/05-07:38:07.225925 7ff62e6006c0 Level-0 table #175: 0 bytes OK
2024/02/05-07:38:07.233435 7ff62e6006c0 Delete type=0 #173
2024/02/05-07:38:07.233700 7ff62e6006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.233772 7ff62e6006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000174

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.503638 7f84f77fe6c0 Recovering log #104
2023/12/04-21:16:34.513495 7f84f77fe6c0 Delete type=3 #102
2023/12/04-21:16:34.513540 7f84f77fe6c0 Delete type=0 #104
2023/12/04-21:29:36.328177 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.328221 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.334799 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.355226 7f84f5ffb6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.355270 7f84f5ffb6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/07-19:56:07.032095 7fdbf6a006c0 Recovering log #172
2024/02/07-19:56:07.084279 7fdbf6a006c0 Delete type=3 #170
2024/02/07-19:56:07.084371 7fdbf6a006c0 Delete type=0 #172
2024/02/07-21:59:09.909453 7fdbf4c006c0 Level-0 table #177: started
2024/02/07-21:59:09.909480 7fdbf4c006c0 Level-0 table #177: 0 bytes OK
2024/02/07-21:59:09.915719 7fdbf4c006c0 Delete type=0 #175
2024/02/07-21:59:09.936008 7fdbf4c006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.936058 7fdbf4c006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.208291 7f5611ffb6c0 Recovering log #100
2023/10/28-18:46:58.217629 7f5611ffb6c0 Delete type=3 #98
2023/10/28-18:46:58.217715 7f5611ffb6c0 Delete type=0 #100
2023/10/28-18:47:32.376126 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.376155 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.382230 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.402910 7f56037fe6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.402958 7f56037fe6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.946606 7ff6356006c0 Recovering log #168
2024/02/04-23:08:12.956492 7ff6356006c0 Delete type=3 #166
2024/02/04-23:08:12.956547 7ff6356006c0 Delete type=0 #168
2024/02/05-07:38:07.274090 7ff62e6006c0 Level-0 table #173: started
2024/02/05-07:38:07.274125 7ff62e6006c0 Level-0 table #173: 0 bytes OK
2024/02/05-07:38:07.280636 7ff62e6006c0 Delete type=0 #171
2024/02/05-07:38:07.287141 7ff62e6006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.287195 7ff62e6006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/flaws/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000175

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.270727 7f84f7fff6c0 Recovering log #104
2023/12/04-21:16:34.281382 7f84f7fff6c0 Delete type=3 #102
2023/12/04-21:16:34.281438 7f84f7fff6c0 Delete type=0 #104
2023/12/04-21:29:36.239869 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.239936 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.247503 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.247631 7f84f5ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.247645 7f84f5ffb6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.133028 7fdbf74006c0 Recovering log #173
2024/02/07-19:56:06.187192 7fdbf74006c0 Delete type=3 #171
2024/02/07-19:56:06.187312 7fdbf74006c0 Delete type=0 #173
2024/02/07-21:59:09.819499 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.819554 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.826213 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.826382 7fdbf4c006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.826407 7fdbf4c006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.045402 7f5610ff96c0 Recovering log #100
2023/10/28-18:46:58.055825 7f5610ff96c0 Delete type=3 #98
2023/10/28-18:46:58.055884 7f5610ff96c0 Delete type=0 #100
2023/10/28-18:47:32.304647 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.304672 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.310534 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.323755 7f56037fe6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.323793 7f56037fe6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.774567 7ff634c006c0 Recovering log #169
2024/02/04-23:08:12.785474 7ff634c006c0 Delete type=3 #167
2024/02/04-23:08:12.785530 7ff634c006c0 Delete type=0 #169
2024/02/05-07:38:07.178656 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.178701 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.185285 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.199317 7ff62e6006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.205720 7ff62e6006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/flaws/MANIFEST-000175 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/godsfaith/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000175

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.491249 7f84f6ffd6c0 Recovering log #104
2023/12/04-21:16:34.501377 7f84f6ffd6c0 Delete type=3 #102
2023/12/04-21:16:34.501432 7f84f6ffd6c0 Delete type=0 #104
2023/12/04-21:29:36.314691 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.314743 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.320934 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.327985 7f84f5ffb6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.328049 7f84f5ffb6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.975438 7fdbf56006c0 Recovering log #173
2024/02/07-19:56:07.024128 7fdbf56006c0 Delete type=3 #171
2024/02/07-19:56:07.024279 7fdbf56006c0 Delete type=0 #173
2024/02/07-21:59:09.901624 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.901661 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.909134 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.909321 7fdbf4c006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.909356 7fdbf4c006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.196427 7f5603fff6c0 Recovering log #100
2023/10/28-18:46:58.206941 7f5603fff6c0 Delete type=3 #98
2023/10/28-18:46:58.206995 7f5603fff6c0 Delete type=0 #100
2023/10/28-18:47:32.382372 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.382414 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.388955 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.402925 7f56037fe6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.402968 7f56037fe6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/04-23:08:12.933553 7ff62fe006c0 Recovering log #169
2024/02/04-23:08:12.944160 7ff62fe006c0 Delete type=3 #167
2024/02/04-23:08:12.944259 7ff62fe006c0 Delete type=0 #169
2024/02/05-07:38:07.261324 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.261377 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.267607 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.287113 7ff62e6006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.287154 7ff62e6006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000107
MANIFEST-000175

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.463477 7f84f7fff6c0 Recovering log #105
2023/12/04-21:16:34.473557 7f84f7fff6c0 Delete type=3 #103
2023/12/04-21:16:34.473612 7f84f7fff6c0 Delete type=0 #105
2023/12/04-21:29:36.301429 7f84f5ffb6c0 Level-0 table #110: started
2023/12/04-21:29:36.301456 7f84f5ffb6c0 Level-0 table #110: 0 bytes OK
2023/12/04-21:29:36.307489 7f84f5ffb6c0 Delete type=0 #108
2023/12/04-21:29:36.327942 7f84f5ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.328016 7f84f5ffb6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/02/07-19:56:06.840392 7fdbf74006c0 Recovering log #173
2024/02/07-19:56:06.895148 7fdbf74006c0 Delete type=3 #171
2024/02/07-19:56:06.895305 7fdbf74006c0 Delete type=0 #173
2024/02/07-21:59:09.895090 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.895124 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.901489 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.909309 7fdbf4c006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.909348 7fdbf4c006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

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